diff --git a/grammar.js b/grammar.js index e58f360..a19199c 100644 --- a/grammar.js +++ b/grammar.js @@ -180,21 +180,6 @@ module.exports = grammar({ $._statement )), - bracket_command: $ => { - const contents = repeat1(choice( - $._expression, - seq('=~', choice( - $.regex, - $._expression - )) - )) - - return choice( - seq('[', contents, ']'), - seq('[[', contents, ']]') - ) - }, - // Commands command: $ => prec.left(seq( @@ -203,7 +188,13 @@ module.exports = grammar({ $.file_redirect )), $.command_name, - repeat($._expression), + repeat(choice( + $._expression, + seq('=~', choice( + $.regex, + $._expression + )) + )), repeat(choice( $.file_redirect, $.heredoc_redirect, @@ -213,6 +204,28 @@ module.exports = grammar({ command_name: $ => $._expression, + bracket_command: $ => { + const args = repeat1(choice( + $._expression, + seq('=~', choice( + $.regex, + $._expression + )) + )) + + return seq( + choice( + seq('[', args, ']'), + seq('[[', args, ']]') + ), + repeat(choice( + $.file_redirect, + $.heredoc_redirect, + $.herestring_redirect + )) + ) + }, + variable_assignment: $ => seq( choice( $.variable_name, diff --git a/src/grammar.json b/src/grammar.json index ea7513f..c9c3e7f 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -601,105 +601,6 @@ ] } }, - "bracket_command": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=~" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "regex" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - } - ] - } - ] - } - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[[" - }, - { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=~" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "regex" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - } - ] - } - ] - } - }, - { - "type": "STRING", - "value": "]]" - } - ] - } - ] - }, "command": { "type": "PREC_LEFT", "value": 0, @@ -729,8 +630,35 @@ { "type": "REPEAT", "content": { - "type": "SYMBOL", - "name": "_expression" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=~" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "regex" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + ] + } + ] } }, { @@ -760,6 +688,130 @@ "type": "SYMBOL", "name": "_expression" }, + "bracket_command": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=~" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "regex" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + ] + } + ] + } + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[[" + }, + { + "type": "REPEAT1", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expression" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=~" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "regex" + }, + { + "type": "SYMBOL", + "name": "_expression" + } + ] + } + ] + } + ] + } + }, + { + "type": "STRING", + "value": "]]" + } + ] + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "file_redirect" + }, + { + "type": "SYMBOL", + "name": "heredoc_redirect" + }, + { + "type": "SYMBOL", + "name": "herestring_redirect" + } + ] + } + } + ] + }, "variable_assignment": { "type": "SEQ", "members": [ @@ -1451,6 +1503,39 @@ } ] }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "STRING", + "value": "/" + } + } + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "regex_without_right_brace" + }, + "named": true, + "value": "regex" + } + ] + }, + { + "type": "BLANK" + } + ] + }, { "type": "REPEAT", "content": { @@ -1480,10 +1565,6 @@ "type": "STRING", "value": "%" }, - { - "type": "STRING", - "value": "/" - }, { "type": "STRING", "value": "-" @@ -1662,7 +1743,11 @@ }, "regex": { "type": "PATTERN", - "value": "\\S+" + "value": "([^\\s]|\\\\.)+" + }, + "regex_without_right_brace": { + "type": "PATTERN", + "value": "([^\\s}]|\\\\.)+" }, "_terminator": { "type": "CHOICE", diff --git a/src/parser.c b/src/parser.c index f6b8058..9081edc 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,10 +6,10 @@ #endif #define LANGUAGE_VERSION 5 -#define STATE_COUNT 2847 -#define SYMBOL_COUNT 134 -#define ALIAS_COUNT 4 -#define TOKEN_COUNT 84 +#define STATE_COUNT 3955 +#define SYMBOL_COUNT 135 +#define ALIAS_COUNT 5 +#define TOKEN_COUNT 85 #define EXTERNAL_TOKEN_COUNT 11 #define MAX_ALIAS_SEQUENCE_LENGTH 8 @@ -44,8 +44,8 @@ enum { anon_sym_PIPE_AMP = 28, anon_sym_AMP_AMP = 29, anon_sym_PIPE_PIPE = 30, - anon_sym_LBRACK = 31, - anon_sym_EQ_TILDE = 32, + anon_sym_EQ_TILDE = 31, + anon_sym_LBRACK = 32, anon_sym_RBRACK = 33, anon_sym_LBRACK_LBRACK = 34, anon_sym_RBRACK_RBRACK = 35, @@ -75,11 +75,11 @@ enum { sym_raw_string = 59, anon_sym_POUND = 60, anon_sym_DOLLAR_LBRACE = 61, - anon_sym_COLON = 62, - anon_sym_COLON_QMARK = 63, - anon_sym_COLON_DASH = 64, - anon_sym_PERCENT = 65, - anon_sym_SLASH = 66, + aux_sym_SLASH = 62, + anon_sym_COLON = 63, + anon_sym_COLON_QMARK = 64, + anon_sym_COLON_DASH = 65, + anon_sym_PERCENT = 66, anon_sym_DASH = 67, anon_sym_DOLLAR_LPAREN = 68, anon_sym_BQUOTE = 69, @@ -94,63 +94,65 @@ enum { anon_sym__ = 78, sym_word = 79, sym_regex = 80, - anon_sym_SEMI = 81, - anon_sym_LF = 82, - anon_sym_AMP = 83, - sym_program = 84, - sym__terminated_statement = 85, - sym_for_statement = 86, - sym_while_statement = 87, - sym_do_group = 88, - sym_if_statement = 89, - sym_elif_clause = 90, - sym_else_clause = 91, - sym_case_statement = 92, - sym_case_item = 93, - sym_last_case_item = 94, - sym_function_definition = 95, - sym_compound_statement = 96, - sym_subshell = 97, - sym_pipeline = 98, - sym_list = 99, - sym_bracket_command = 100, + sym_regex_without_right_brace = 81, + anon_sym_SEMI = 82, + anon_sym_LF = 83, + anon_sym_AMP = 84, + sym_program = 85, + sym__terminated_statement = 86, + sym_for_statement = 87, + sym_while_statement = 88, + sym_do_group = 89, + sym_if_statement = 90, + sym_elif_clause = 91, + sym_else_clause = 92, + sym_case_statement = 93, + sym_case_item = 94, + sym_last_case_item = 95, + sym_function_definition = 96, + sym_compound_statement = 97, + sym_subshell = 98, + sym_pipeline = 99, + sym_list = 100, sym_command = 101, sym_command_name = 102, - sym_variable_assignment = 103, - sym_declaration_command = 104, - sym_unset_command = 105, - sym__assignment = 106, - sym_subscript = 107, - sym_file_redirect = 108, - sym_heredoc_redirect = 109, - sym_heredoc = 110, - sym_herestring_redirect = 111, - sym_concatenation = 112, - sym_string = 113, - sym_array = 114, - sym_simple_expansion = 115, - sym_string_expansion = 116, - sym_expansion = 117, - sym_command_substitution = 118, - sym_process_substitution = 119, - aux_sym_program_repeat1 = 120, - aux_sym_for_statement_repeat1 = 121, - aux_sym_while_statement_repeat1 = 122, - aux_sym_if_statement_repeat1 = 123, - aux_sym_case_statement_repeat1 = 124, - aux_sym_case_item_repeat1 = 125, - aux_sym_bracket_command_repeat1 = 126, + sym_bracket_command = 103, + sym_variable_assignment = 104, + sym_declaration_command = 105, + sym_unset_command = 106, + sym__assignment = 107, + sym_subscript = 108, + sym_file_redirect = 109, + sym_heredoc_redirect = 110, + sym_heredoc = 111, + sym_herestring_redirect = 112, + sym_concatenation = 113, + sym_string = 114, + sym_array = 115, + sym_simple_expansion = 116, + sym_string_expansion = 117, + sym_expansion = 118, + sym_command_substitution = 119, + sym_process_substitution = 120, + aux_sym_program_repeat1 = 121, + aux_sym_for_statement_repeat1 = 122, + aux_sym_while_statement_repeat1 = 123, + aux_sym_if_statement_repeat1 = 124, + aux_sym_case_statement_repeat1 = 125, + aux_sym_case_item_repeat1 = 126, aux_sym_command_repeat1 = 127, - aux_sym_declaration_command_repeat1 = 128, - aux_sym_unset_command_repeat1 = 129, - aux_sym_heredoc_repeat1 = 130, - aux_sym_concatenation_repeat1 = 131, - aux_sym_string_repeat1 = 132, - aux_sym_expansion_repeat1 = 133, - alias_sym_case_item = 134, - alias_sym_special_variable_name = 135, - alias_sym_variable_name = 136, - alias_sym_word = 137, + aux_sym_command_repeat2 = 128, + aux_sym_declaration_command_repeat1 = 129, + aux_sym_unset_command_repeat1 = 130, + aux_sym_heredoc_repeat1 = 131, + aux_sym_concatenation_repeat1 = 132, + aux_sym_string_repeat1 = 133, + aux_sym_expansion_repeat1 = 134, + alias_sym_case_item = 135, + alias_sym_regex = 136, + alias_sym_special_variable_name = 137, + alias_sym_variable_name = 138, + alias_sym_word = 139, }; static const char *ts_symbol_names[] = { @@ -185,8 +187,8 @@ static const char *ts_symbol_names[] = { [anon_sym_PIPE_AMP] = "|&", [anon_sym_AMP_AMP] = "&&", [anon_sym_PIPE_PIPE] = "||", - [anon_sym_LBRACK] = "[", [anon_sym_EQ_TILDE] = "=~", + [anon_sym_LBRACK] = "[", [anon_sym_RBRACK] = "]", [anon_sym_LBRACK_LBRACK] = "[[", [anon_sym_RBRACK_RBRACK] = "]]", @@ -216,11 +218,11 @@ static const char *ts_symbol_names[] = { [sym_raw_string] = "raw_string", [anon_sym_POUND] = "#", [anon_sym_DOLLAR_LBRACE] = "${", + [aux_sym_SLASH] = "/", [anon_sym_COLON] = ":", [anon_sym_COLON_QMARK] = ":?", [anon_sym_COLON_DASH] = ":-", [anon_sym_PERCENT] = "%", - [anon_sym_SLASH] = "/", [anon_sym_DASH] = "-", [anon_sym_DOLLAR_LPAREN] = "$(", [anon_sym_BQUOTE] = "`", @@ -235,6 +237,7 @@ static const char *ts_symbol_names[] = { [anon_sym__] = "_", [sym_word] = "word", [sym_regex] = "regex", + [sym_regex_without_right_brace] = "regex_without_right_brace", [anon_sym_SEMI] = ";", [anon_sym_LF] = "\n", [anon_sym_AMP] = "&", @@ -254,9 +257,9 @@ static const char *ts_symbol_names[] = { [sym_subshell] = "subshell", [sym_pipeline] = "pipeline", [sym_list] = "list", - [sym_bracket_command] = "bracket_command", [sym_command] = "command", [sym_command_name] = "command_name", + [sym_bracket_command] = "bracket_command", [sym_variable_assignment] = "variable_assignment", [sym_declaration_command] = "declaration_command", [sym_unset_command] = "unset_command", @@ -280,8 +283,8 @@ static const char *ts_symbol_names[] = { [aux_sym_if_statement_repeat1] = "if_statement_repeat1", [aux_sym_case_statement_repeat1] = "case_statement_repeat1", [aux_sym_case_item_repeat1] = "case_item_repeat1", - [aux_sym_bracket_command_repeat1] = "bracket_command_repeat1", [aux_sym_command_repeat1] = "command_repeat1", + [aux_sym_command_repeat2] = "command_repeat2", [aux_sym_declaration_command_repeat1] = "declaration_command_repeat1", [aux_sym_unset_command_repeat1] = "unset_command_repeat1", [aux_sym_heredoc_repeat1] = "heredoc_repeat1", @@ -289,6 +292,7 @@ static const char *ts_symbol_names[] = { [aux_sym_string_repeat1] = "string_repeat1", [aux_sym_expansion_repeat1] = "expansion_repeat1", [alias_sym_case_item] = "case_item", + [alias_sym_regex] = "regex", [alias_sym_special_variable_name] = "special_variable_name", [alias_sym_variable_name] = "variable_name", [alias_sym_word] = "word", @@ -419,11 +423,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_LBRACK] = { + [anon_sym_EQ_TILDE] = { .visible = true, .named = false, }, - [anon_sym_EQ_TILDE] = { + [anon_sym_LBRACK] = { .visible = true, .named = false, }, @@ -543,6 +547,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_SLASH] = { + .visible = false, + .named = false, + }, [anon_sym_COLON] = { .visible = true, .named = false, @@ -559,10 +567,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_SLASH] = { - .visible = true, - .named = false, - }, [anon_sym_DASH] = { .visible = true, .named = false, @@ -619,6 +623,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_regex_without_right_brace] = { + .visible = true, + .named = true, + }, [anon_sym_SEMI] = { .visible = true, .named = false, @@ -695,10 +703,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_bracket_command] = { - .visible = true, - .named = true, - }, [sym_command] = { .visible = true, .named = true, @@ -707,6 +711,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_bracket_command] = { + .visible = true, + .named = true, + }, [sym_variable_assignment] = { .visible = true, .named = true, @@ -799,11 +807,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_bracket_command_repeat1] = { + [aux_sym_command_repeat1] = { .visible = false, .named = false, }, - [aux_sym_command_repeat1] = { + [aux_sym_command_repeat2] = { .visible = false, .named = false, }, @@ -835,6 +843,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [alias_sym_regex] = { + .visible = true, + .named = true, + }, [alias_sym_special_variable_name] = { .visible = true, .named = true, @@ -849,7 +861,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { }, }; -static TSSymbol ts_alias_sequences[17][MAX_ALIAS_SEQUENCE_LENGTH] = { +static TSSymbol ts_alias_sequences[23][MAX_ALIAS_SEQUENCE_LENGTH] = { [1] = { [0] = alias_sym_word, }, @@ -878,27 +890,49 @@ static TSSymbol ts_alias_sequences[17][MAX_ALIAS_SEQUENCE_LENGTH] = { [3] = alias_sym_word, }, [10] = { - [1] = alias_sym_word, - [4] = alias_sym_case_item, + [1] = alias_sym_special_variable_name, + [3] = alias_sym_regex, }, [11] = { - [4] = alias_sym_case_item, + [1] = alias_sym_variable_name, + [3] = alias_sym_regex, }, [12] = { - [4] = alias_sym_word, + [3] = alias_sym_regex, }, [13] = { [1] = alias_sym_word, - [5] = alias_sym_case_item, + [4] = alias_sym_case_item, }, [14] = { - [5] = alias_sym_case_item, + [4] = alias_sym_case_item, }, [15] = { + [4] = alias_sym_word, + }, + [16] = { + [2] = alias_sym_special_variable_name, + [4] = alias_sym_regex, + }, + [17] = { + [2] = alias_sym_variable_name, + [4] = alias_sym_regex, + }, + [18] = { + [4] = alias_sym_regex, + }, + [19] = { + [1] = alias_sym_word, + [5] = alias_sym_case_item, + }, + [20] = { + [5] = alias_sym_case_item, + }, + [21] = { [1] = alias_sym_word, [6] = alias_sym_case_item, }, - [16] = { + [22] = { [6] = alias_sym_case_item, }, }; @@ -2826,24 +2860,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(21); if (lookahead == '$') ADVANCE(4); + if (lookahead == '&') + ADVANCE(144); if (lookahead == '\'') ADVANCE(25); + if (lookahead == ')') + ADVANCE(106); if (lookahead == '<') - ADVANCE(144); - if (lookahead == '=') ADVANCE(145); + if (lookahead == '=') + ADVANCE(149); if (lookahead == '>') - ADVANCE(147); + ADVANCE(31); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(148); + ADVANCE(151); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') ADVANCE(19); if (lookahead == '{') ADVANCE(40); + if (lookahead == '|') + ADVANCE(133); if (lookahead == '}') ADVANCE(40); if (lookahead == '\t' || @@ -2853,20 +2893,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(143); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && - (lookahead < ';' || lookahead > '>') && - (lookahead < '{' || lookahead > '}')) + (lookahead < ';' || lookahead > '>')) ADVANCE(38); END_STATE(); case 144: - if (lookahead == '(') - ADVANCE(30); + if (lookahead == '&') + ADVANCE(105); + if (lookahead == '>') + ADVANCE(23); END_STATE(); case 145: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') + ADVANCE(29); + if (lookahead == '(') + ADVANCE(30); + if (lookahead == '<') + ADVANCE(146); + END_STATE(); + case 146: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '-') + ADVANCE(147); + if (lookahead == '<') + ADVANCE(148); + END_STATE(); + case 147: + ACCEPT_TOKEN(anon_sym_LT_LT_DASH); + END_STATE(); + case 148: + ACCEPT_TOKEN(anon_sym_LT_LT_LT); + END_STATE(); + case 149: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(39); if (lookahead == '~') - ADVANCE(146); + ADVANCE(150); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2882,7 +2945,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '~')) ADVANCE(38); END_STATE(); - case 146: + case 150: ACCEPT_TOKEN(anon_sym_EQ_TILDE); if (lookahead == '\\') ADVANCE(39); @@ -2901,11 +2964,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 147: - if (lookahead == '(') - ADVANCE(33); - END_STATE(); - case 148: + case 151: if (lookahead == '\n') SKIP(143); if (lookahead != 0 && @@ -2915,9 +2974,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 149: + case 152: if (lookahead == '\n') - ADVANCE(150); + ADVANCE(153); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -2925,19 +2984,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(151); + ADVANCE(154); if (lookahead == '\'') ADVANCE(25); if (lookahead == ';') - ADVANCE(152); + ADVANCE(155); if (lookahead == '<') - ADVANCE(144); + ADVANCE(157); if (lookahead == '>') - ADVANCE(147); + ADVANCE(158); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(154); + ADVANCE(159); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -2951,34 +3010,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(149); + SKIP(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(155); + ADVANCE(160); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(38); END_STATE(); - case 150: + case 153: ACCEPT_TOKEN(anon_sym_LF); END_STATE(); - case 151: + case 154: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '&') ADVANCE(105); END_STATE(); - case 152: + case 155: ACCEPT_TOKEN(anon_sym_SEMI); if (lookahead == ';') - ADVANCE(153); + ADVANCE(156); END_STATE(); - case 153: + case 156: ACCEPT_TOKEN(anon_sym_SEMI_SEMI); END_STATE(); - case 154: + case 157: + if (lookahead == '(') + ADVANCE(30); + END_STATE(); + case 158: + if (lookahead == '(') + ADVANCE(33); + END_STATE(); + case 159: if (lookahead == '\n') - SKIP(149); + SKIP(152); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2986,7 +3053,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 155: + case 160: ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); if (lookahead == '\\') ADVANCE(39); @@ -2994,7 +3061,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(155); + ADVANCE(160); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3009,9 +3076,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 156: + case 161: if (lookahead == '\n') - ADVANCE(150); + ADVANCE(153); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -3019,19 +3086,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(157); + ADVANCE(162); if (lookahead == '\'') ADVANCE(25); if (lookahead == ';') - ADVANCE(152); + ADVANCE(155); if (lookahead == '<') - ADVANCE(158); + ADVANCE(145); + if (lookahead == '=') + ADVANCE(149); if (lookahead == '>') ADVANCE(31); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(162); + ADVANCE(163); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -3045,43 +3114,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(156); + SKIP(161); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(38); END_STATE(); - case 157: + case 162: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '&') ADVANCE(105); if (lookahead == '>') ADVANCE(23); END_STATE(); - case 158: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') - ADVANCE(29); - if (lookahead == '(') - ADVANCE(30); - if (lookahead == '<') - ADVANCE(159); - END_STATE(); - case 159: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') - ADVANCE(160); - if (lookahead == '<') - ADVANCE(161); - END_STATE(); - case 160: - ACCEPT_TOKEN(anon_sym_LT_LT_DASH); - END_STATE(); - case 161: - ACCEPT_TOKEN(anon_sym_LT_LT_LT); - END_STATE(); - case 162: + case 163: if (lookahead == '\n') - SKIP(156); + SKIP(161); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3089,54 +3136,54 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 163: + case 164: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') - ADVANCE(164); + ADVANCE(165); if (lookahead == '$') ADVANCE(4); if (lookahead == '\\') - ADVANCE(166); + ADVANCE(167); if (lookahead == '`') ADVANCE(19); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(167); + ADVANCE(168); if (lookahead != 0) ADVANCE(15); END_STATE(); - case 164: - ACCEPT_TOKEN(sym__string_content); - if (lookahead == '\n') - ADVANCE(15); - if (lookahead == '\\') - ADVANCE(165); - if (lookahead != 0 && - lookahead != '\"' && - lookahead != '$' && - lookahead != '`') - ADVANCE(164); - END_STATE(); case 165: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') ADVANCE(15); if (lookahead == '\\') + ADVANCE(166); + if (lookahead != 0 && + lookahead != '\"' && + lookahead != '$' && + lookahead != '`') ADVANCE(165); - if (lookahead == '\"' || - lookahead == '$' || - lookahead == '`') - ADVANCE(164); - if (lookahead != 0) - ADVANCE(164); END_STATE(); case 166: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') - ADVANCE(167); + ADVANCE(15); + if (lookahead == '\\') + ADVANCE(166); + if (lookahead == '\"' || + lookahead == '$' || + lookahead == '`') + ADVANCE(165); + if (lookahead != 0) + ADVANCE(165); + END_STATE(); + case 167: + ACCEPT_TOKEN(sym__string_content); + if (lookahead == '\n') + ADVANCE(168); if (lookahead == '\\') ADVANCE(14); if (lookahead == '\"' || @@ -3146,57 +3193,57 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(15); END_STATE(); - case 167: + case 168: ACCEPT_TOKEN(sym__string_content); if (lookahead == '#') - ADVANCE(164); + ADVANCE(165); if (lookahead == '\\') - ADVANCE(166); + ADVANCE(167); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(167); + ADVANCE(168); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && lookahead != '`') ADVANCE(15); END_STATE(); - case 168: + case 169: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') ADVANCE(3); if (lookahead == '$') - ADVANCE(169); + ADVANCE(170); if (lookahead == '*') ADVANCE(7); if (lookahead == '-') ADVANCE(8); if (lookahead == '0') - ADVANCE(170); + ADVANCE(171); if (lookahead == '?') ADVANCE(11); if (lookahead == '@') ADVANCE(12); if (lookahead == '\\') - SKIP(171); + SKIP(172); if (lookahead == '_') - ADVANCE(172); + ADVANCE(173); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(168); + SKIP(169); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(140); END_STATE(); - case 169: + case 170: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 170: + case 171: ACCEPT_TOKEN(anon_sym_0); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -3204,11 +3251,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(140); END_STATE(); - case 171: - if (lookahead == '\n') - SKIP(168); - END_STATE(); case 172: + if (lookahead == '\n') + SKIP(169); + END_STATE(); + case 173: ACCEPT_TOKEN(anon_sym__); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || @@ -3216,42 +3263,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(140); END_STATE(); - case 173: + case 174: if (lookahead == '#') ADVANCE(3); if (lookahead == '$') - ADVANCE(169); + ADVANCE(170); if (lookahead == '*') ADVANCE(7); if (lookahead == '-') ADVANCE(8); if (lookahead == '0') - ADVANCE(170); + ADVANCE(171); if (lookahead == '?') ADVANCE(11); if (lookahead == '@') ADVANCE(12); if (lookahead == '\\') - SKIP(174); + SKIP(175); if (lookahead == '_') - ADVANCE(172); + ADVANCE(173); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(173); + SKIP(174); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(140); END_STATE(); - case 174: - if (lookahead == '\n') - SKIP(173); - END_STATE(); case 175: if (lookahead == '\n') - ADVANCE(150); + SKIP(174); + END_STATE(); + case 176: + if (lookahead == '\n') + ADVANCE(153); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -3259,21 +3306,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(157); + ADVANCE(162); if (lookahead == '\'') ADVANCE(25); if (lookahead == '(') ADVANCE(27); if (lookahead == ';') - ADVANCE(152); + ADVANCE(155); if (lookahead == '<') - ADVANCE(158); + ADVANCE(145); + if (lookahead == '=') + ADVANCE(149); if (lookahead == '>') ADVANCE(31); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(176); + ADVANCE(177); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -3287,14 +3336,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(175); + SKIP(176); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(38); END_STATE(); - case 176: + case 177: if (lookahead == '\n') - SKIP(175); + SKIP(176); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3302,7 +3351,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 177: + case 178: if (lookahead == 0) ADVANCE(1); if (lookahead == '\"') @@ -3318,7 +3367,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(27); if (lookahead == ';') - ADVANCE(178); + ADVANCE(179); if (lookahead == '<') ADVANCE(28); if (lookahead == '>') @@ -3326,7 +3375,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(35); if (lookahead == '\\') - ADVANCE(179); + ADVANCE(180); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -3359,18 +3408,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(177); + SKIP(178); if ((lookahead < '&' || lookahead > ')') && (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 178: - if (lookahead == ';') - ADVANCE(153); - END_STATE(); case 179: + if (lookahead == ';') + ADVANCE(156); + END_STATE(); + case 180: if (lookahead == '\n') - SKIP(177); + SKIP(178); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3378,9 +3427,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 180: + case 181: if (lookahead == '\n') - ADVANCE(150); + ADVANCE(153); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -3388,11 +3437,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(157); + ADVANCE(162); if (lookahead == '\'') ADVANCE(25); if (lookahead == ';') - ADVANCE(152); + ADVANCE(155); if (lookahead == '<') ADVANCE(28); if (lookahead == '>') @@ -3400,7 +3449,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(181); + ADVANCE(182); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -3414,14 +3463,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(180); + SKIP(181); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(38); END_STATE(); - case 181: + case 182: if (lookahead == '\n') - SKIP(180); + SKIP(181); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3429,9 +3478,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 182: + case 183: if (lookahead == '\n') - ADVANCE(150); + ADVANCE(153); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -3439,21 +3488,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(157); + ADVANCE(162); if (lookahead == '\'') ADVANCE(25); if (lookahead == ')') ADVANCE(106); if (lookahead == ';') - ADVANCE(152); + ADVANCE(155); if (lookahead == '<') - ADVANCE(158); + ADVANCE(145); + if (lookahead == '=') + ADVANCE(149); if (lookahead == '>') ADVANCE(31); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(183); + ADVANCE(184); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -3467,14 +3518,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(182); + SKIP(183); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(38); END_STATE(); - case 183: + case 184: if (lookahead == '\n') - SKIP(182); + SKIP(183); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3482,7 +3533,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 184: + case 185: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -3494,13 +3545,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(27); if (lookahead == '<') - ADVANCE(144); + ADVANCE(157); if (lookahead == '>') - ADVANCE(147); + ADVANCE(158); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(185); + ADVANCE(186); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -3513,7 +3564,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(184); + SKIP(185); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -3521,9 +3572,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 185: + case 186: if (lookahead == '\n') - SKIP(184); + SKIP(185); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3531,9 +3582,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 186: + case 187: if (lookahead == '\n') - ADVANCE(150); + ADVANCE(153); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -3541,13 +3592,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(157); + ADVANCE(162); if (lookahead == '\'') ADVANCE(25); if (lookahead == ')') ADVANCE(106); if (lookahead == ';') - ADVANCE(152); + ADVANCE(155); if (lookahead == '<') ADVANCE(28); if (lookahead == '>') @@ -3555,7 +3606,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(187); + ADVANCE(188); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -3569,14 +3620,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(186); + SKIP(187); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(38); END_STATE(); - case 187: + case 188: if (lookahead == '\n') - SKIP(186); + SKIP(187); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3584,34 +3635,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 188: + case 189: if (lookahead == '\n') - ADVANCE(150); + ADVANCE(153); if (lookahead == '#') ADVANCE(21); if (lookahead == '&') - ADVANCE(189); + ADVANCE(190); if (lookahead == ';') - ADVANCE(152); + ADVANCE(155); if (lookahead == '\\') - SKIP(190); + SKIP(191); if (lookahead == 'i') ADVANCE(126); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(188); - END_STATE(); - case 189: - ACCEPT_TOKEN(anon_sym_AMP); + SKIP(189); END_STATE(); case 190: - if (lookahead == '\n') - SKIP(188); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 191: if (lookahead == '\n') - ADVANCE(150); + SKIP(189); + END_STATE(); + case 192: + if (lookahead == '\n') + ADVANCE(153); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -3619,21 +3670,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(151); + ADVANCE(154); if (lookahead == '\'') ADVANCE(25); if (lookahead == ')') ADVANCE(106); if (lookahead == ';') - ADVANCE(152); + ADVANCE(155); if (lookahead == '<') - ADVANCE(144); + ADVANCE(157); if (lookahead == '>') - ADVANCE(147); + ADVANCE(158); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(192); + ADVANCE(193); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -3647,18 +3698,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(191); + SKIP(192); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(155); + ADVANCE(160); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(38); END_STATE(); - case 192: + case 193: if (lookahead == '\n') - SKIP(191); + SKIP(192); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3666,9 +3717,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 193: + case 194: if (lookahead == '\n') - ADVANCE(150); + ADVANCE(153); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -3676,7 +3727,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(157); + ADVANCE(162); if (lookahead == '\'') ADVANCE(25); if (lookahead == '(') @@ -3684,15 +3735,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(106); if (lookahead == ';') - ADVANCE(152); + ADVANCE(155); if (lookahead == '<') - ADVANCE(158); + ADVANCE(145); + if (lookahead == '=') + ADVANCE(149); if (lookahead == '>') ADVANCE(31); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(194); + ADVANCE(195); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -3706,13 +3759,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(193); + SKIP(194); if (lookahead != 0) ADVANCE(38); END_STATE(); - case 194: + case 195: if (lookahead == '\n') - SKIP(193); + SKIP(194); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3720,192 +3773,267 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 195: + case 196: if (lookahead == '\"') - ADVANCE(196); + ADVANCE(197); if (lookahead == '#') - ADVANCE(198); + ADVANCE(200); if (lookahead == '$') - ADVANCE(199); - if (lookahead == '\'') ADVANCE(202); + if (lookahead == '\'') + ADVANCE(205); if (lookahead == '<') - ADVANCE(204); + ADVANCE(208); if (lookahead == '>') - ADVANCE(206); + ADVANCE(210); if (lookahead == '[') - ADVANCE(208); + ADVANCE(212); if (lookahead == '\\') - ADVANCE(209); + ADVANCE(213); if (lookahead == ']') - ADVANCE(208); + ADVANCE(212); if (lookahead == '`') - ADVANCE(211); + ADVANCE(216); if (lookahead == '{') - ADVANCE(208); + ADVANCE(212); if (lookahead == '}') - ADVANCE(208); + ADVANCE(212); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(195); + SKIP(196); if (('&' <= lookahead && lookahead <= ')') || lookahead == ';' || lookahead == '|') - ADVANCE(197); + ADVANCE(199); if (lookahead != 0) - ADVANCE(210); - END_STATE(); - case 196: - ACCEPT_TOKEN(anon_sym_DQUOTE); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(197); + ADVANCE(215); END_STATE(); case 197: - ACCEPT_TOKEN(sym_regex); + ACCEPT_TOKEN(anon_sym_DQUOTE); + if (lookahead == '\\') + ADVANCE(198); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(197); + ADVANCE(199); END_STATE(); case 198: ACCEPT_TOKEN(sym_regex); + if (lookahead == '\\') + ADVANCE(198); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(199); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(199); + END_STATE(); + case 199: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '\\') + ADVANCE(198); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(198); + ADVANCE(199); END_STATE(); - case 199: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') - ADVANCE(200); - if (lookahead == '{') + case 200: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '\\') ADVANCE(201); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(197); - END_STATE(); - case 200: - ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(197); + ADVANCE(200); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + ACCEPT_TOKEN(sym_regex); + if (lookahead == '\\') + ADVANCE(201); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(200); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(200); + END_STATE(); + case 202: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '(') + ADVANCE(203); + if (lookahead == '\\') + ADVANCE(198); + if (lookahead == '{') + ADVANCE(204); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(197); + ADVANCE(199); END_STATE(); - case 202: + case 203: + ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); + if (lookahead == '\\') + ADVANCE(198); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(199); + END_STATE(); + case 204: + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + if (lookahead == '\\') + ADVANCE(198); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(199); + END_STATE(); + case 205: ACCEPT_TOKEN(sym_regex); if (lookahead == '\'') - ADVANCE(203); + ADVANCE(206); + if (lookahead == '\\') + ADVANCE(207); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(25); if (lookahead != 0) - ADVANCE(202); - END_STATE(); - case 203: - ACCEPT_TOKEN(sym_raw_string); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(197); - END_STATE(); - case 204: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '(') ADVANCE(205); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(197); - END_STATE(); - case 205: - ACCEPT_TOKEN(anon_sym_LT_LPAREN); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(197); END_STATE(); case 206: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '(') - ADVANCE(207); + ACCEPT_TOKEN(sym_raw_string); + if (lookahead == '\\') + ADVANCE(198); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(197); + ADVANCE(199); END_STATE(); case 207: - ACCEPT_TOKEN(anon_sym_GT_LPAREN); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(197); + ACCEPT_TOKEN(sym_regex); + if (lookahead == '\n') + ADVANCE(25); + if (lookahead == '\'') + ADVANCE(206); + if (lookahead == '\\') + ADVANCE(207); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(205); + if (lookahead != 0) + ADVANCE(205); END_STATE(); case 208: ACCEPT_TOKEN(sym_regex); - if (lookahead == '[') - ADVANCE(208); - if (lookahead == ']') - ADVANCE(208); - if (lookahead == '{') - ADVANCE(208); - if (lookahead == '}') - ADVANCE(208); + if (lookahead == '(') + ADVANCE(209); + if (lookahead == '\\') + ADVANCE(198); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(197); + ADVANCE(199); END_STATE(); case 209: - ACCEPT_TOKEN(sym_regex); + ACCEPT_TOKEN(anon_sym_LT_LPAREN); + if (lookahead == '\\') + ADVANCE(198); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(210); + ADVANCE(199); END_STATE(); case 210: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '(') + ADVANCE(211); + if (lookahead == '\\') + ADVANCE(198); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(199); + END_STATE(); + case 211: + ACCEPT_TOKEN(anon_sym_GT_LPAREN); + if (lookahead == '\\') + ADVANCE(198); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(199); + END_STATE(); + case 212: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '[') + ADVANCE(212); + if (lookahead == '\\') + ADVANCE(198); + if (lookahead == ']') + ADVANCE(212); + if (lookahead == '{') + ADVANCE(212); + if (lookahead == '}') + ADVANCE(212); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(199); + END_STATE(); + case 213: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '\\') + ADVANCE(214); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(199); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(215); + END_STATE(); + case 214: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') - ADVANCE(209); + ADVANCE(213); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(199); if (('\"' <= lookahead && lookahead <= '$') || ('&' <= lookahead && lookahead <= ')') || lookahead == ';' || @@ -3914,24 +4042,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('[' <= lookahead && lookahead <= ']') || lookahead == '`' || ('{' <= lookahead && lookahead <= '}')) - ADVANCE(197); + ADVANCE(199); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(215); + END_STATE(); + case 215: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(213); + if (('\"' <= lookahead && lookahead <= '$') || + ('&' <= lookahead && lookahead <= ')') || + lookahead == ';' || + lookahead == '<' || + lookahead == '>' || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= '}')) + ADVANCE(199); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(210); + ADVANCE(215); END_STATE(); - case 211: + case 216: ACCEPT_TOKEN(anon_sym_BQUOTE); + if (lookahead == '\\') + ADVANCE(198); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(197); + ADVANCE(199); END_STATE(); - case 212: + case 217: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -3941,15 +4089,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(25); if (lookahead == '<') - ADVANCE(144); + ADVANCE(157); if (lookahead == '=') - ADVANCE(145); + ADVANCE(149); if (lookahead == '>') - ADVANCE(147); + ADVANCE(158); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(213); + ADVANCE(218); if (lookahead == ']') ADVANCE(112); if (lookahead == '`') @@ -3962,16 +4110,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(212); + SKIP(217); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && (lookahead < ';' || lookahead > '>') && (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 213: + case 218: if (lookahead == '\n') - SKIP(212); + SKIP(217); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3979,7 +4127,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 214: + case 219: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -3989,17 +4137,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(25); if (lookahead == '<') - ADVANCE(144); + ADVANCE(157); if (lookahead == '=') - ADVANCE(145); + ADVANCE(149); if (lookahead == '>') - ADVANCE(147); + ADVANCE(158); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(215); + ADVANCE(220); if (lookahead == ']') - ADVANCE(216); + ADVANCE(221); if (lookahead == '`') ADVANCE(19); if (lookahead == '{') @@ -4010,16 +4158,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(214); + SKIP(219); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && (lookahead < ';' || lookahead > '>') && (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 215: + case 220: if (lookahead == '\n') - SKIP(214); + SKIP(219); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4027,25 +4175,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 216: + case 221: ACCEPT_TOKEN(sym__special_characters); if (lookahead == '[') ADVANCE(40); if (lookahead == ']') - ADVANCE(217); + ADVANCE(222); if (lookahead == '{') ADVANCE(40); if (lookahead == '}') ADVANCE(40); END_STATE(); - case 217: + case 222: ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); - case 218: + case 223: if (lookahead == '#') ADVANCE(3); if (lookahead == '$') - ADVANCE(169); + ADVANCE(170); if (lookahead == '*') ADVANCE(7); if (lookahead == '-') @@ -4057,14 +4205,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '@') ADVANCE(12); if (lookahead == '\\') - ADVANCE(219); + ADVANCE(224); if (lookahead == '_') ADVANCE(18); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(220); + ADVANCE(225); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) @@ -4074,10 +4222,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > 'z')) ADVANCE(15); END_STATE(); - case 219: + case 224: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') - ADVANCE(220); + ADVANCE(225); if (lookahead == '\\') ADVANCE(14); if (lookahead == '\"' || @@ -4087,7 +4235,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(15); END_STATE(); - case 220: + case 225: ACCEPT_TOKEN(sym__string_content); if (lookahead == '#') ADVANCE(3); @@ -4102,14 +4250,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '@') ADVANCE(12); if (lookahead == '\\') - ADVANCE(219); + ADVANCE(224); if (lookahead == '_') ADVANCE(18); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(220); + ADVANCE(225); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) @@ -4119,7 +4267,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '_' || lookahead > 'z')) ADVANCE(15); END_STATE(); - case 221: + case 226: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -4127,25 +4275,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '%') - ADVANCE(222); + ADVANCE(227); if (lookahead == '\'') ADVANCE(25); if (lookahead == '-') - ADVANCE(223); - if (lookahead == '/') - ADVANCE(224); - if (lookahead == ':') - ADVANCE(225); - if (lookahead == '<') - ADVANCE(144); - if (lookahead == '=') ADVANCE(228); + if (lookahead == '/') + ADVANCE(229); + if (lookahead == ':') + ADVANCE(230); + if (lookahead == '<') + ADVANCE(157); + if (lookahead == '=') + ADVANCE(233); if (lookahead == '>') - ADVANCE(147); + ADVANCE(158); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(229); + ADVANCE(234); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -4158,14 +4306,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(221); + SKIP(226); if (lookahead != 0 && (lookahead < '\"' || lookahead > ')') && (lookahead < ':' || lookahead > '>') && (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 222: + case 227: ACCEPT_TOKEN(anon_sym_PERCENT); if (lookahead == '\\') ADVANCE(39); @@ -4184,7 +4332,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 223: + case 228: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '\\') ADVANCE(39); @@ -4203,31 +4351,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 224: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); + case 229: + ACCEPT_TOKEN(aux_sym_SLASH); END_STATE(); - case 225: + case 230: ACCEPT_TOKEN(anon_sym_COLON); if (lookahead == '-') - ADVANCE(226); + ADVANCE(231); if (lookahead == '?') - ADVANCE(227); + ADVANCE(232); if (lookahead == '\\') ADVANCE(39); if (lookahead != 0 && @@ -4246,7 +4378,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 226: + case 231: ACCEPT_TOKEN(anon_sym_COLON_DASH); if (lookahead == '\\') ADVANCE(39); @@ -4265,7 +4397,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 227: + case 232: ACCEPT_TOKEN(anon_sym_COLON_QMARK); if (lookahead == '\\') ADVANCE(39); @@ -4284,7 +4416,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 228: + case 233: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '\\') ADVANCE(39); @@ -4303,9 +4435,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 229: + case 234: if (lookahead == '\n') - SKIP(221); + SKIP(226); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4313,40 +4445,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 230: + case 235: if (lookahead == '#') ADVANCE(21); if (lookahead == '$') - ADVANCE(169); + ADVANCE(170); if (lookahead == '*') ADVANCE(7); if (lookahead == '-') ADVANCE(8); if (lookahead == '0') - ADVANCE(170); + ADVANCE(171); if (lookahead == '?') ADVANCE(11); if (lookahead == '@') ADVANCE(12); if (lookahead == '\\') - SKIP(231); + SKIP(236); if (lookahead == '_') - ADVANCE(172); + ADVANCE(173); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(230); + SKIP(235); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(140); END_STATE(); - case 231: + case 236: if (lookahead == '\n') - SKIP(230); + SKIP(235); END_STATE(); - case 232: + case 237: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -4360,125 +4492,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(106); if (lookahead == '<') - ADVANCE(144); + ADVANCE(157); if (lookahead == '>') - ADVANCE(147); - if (lookahead == '[') - ADVANCE(40); - if (lookahead == '\\') - ADVANCE(233); - if (lookahead == ']') - ADVANCE(40); - if (lookahead == '`') - ADVANCE(19); - if (lookahead == '{') - ADVANCE(40); - if (lookahead == '|') - ADVANCE(133); - if (lookahead == '}') - ADVANCE(40); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(232); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(155); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<') - ADVANCE(38); - END_STATE(); - case 233: - if (lookahead == '\n') - SKIP(232); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(38); - END_STATE(); - case 234: - if (lookahead == '\"') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(21); - if (lookahead == '$') - ADVANCE(4); - if (lookahead == '&') - ADVANCE(235); - if (lookahead == '\'') - ADVANCE(25); - if (lookahead == ')') - ADVANCE(106); - if (lookahead == '<') ADVANCE(158); - if (lookahead == '>') - ADVANCE(31); - if (lookahead == '[') - ADVANCE(40); - if (lookahead == '\\') - ADVANCE(236); - if (lookahead == ']') - ADVANCE(40); - if (lookahead == '`') - ADVANCE(19); - if (lookahead == '{') - ADVANCE(40); - if (lookahead == '|') - ADVANCE(133); - if (lookahead == '}') - ADVANCE(40); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(234); - if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<') - ADVANCE(38); - END_STATE(); - case 235: - if (lookahead == '&') - ADVANCE(105); - if (lookahead == '>') - ADVANCE(23); - END_STATE(); - case 236: - if (lookahead == '\n') - SKIP(234); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(38); - END_STATE(); - case 237: - if (lookahead == '\"') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(21); - if (lookahead == '$') - ADVANCE(4); - if (lookahead == '&') - ADVANCE(235); - if (lookahead == '\'') - ADVANCE(25); - if (lookahead == '(') - ADVANCE(27); - if (lookahead == ')') - ADVANCE(106); - if (lookahead == '<') - ADVANCE(158); - if (lookahead == '>') - ADVANCE(31); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') @@ -4498,7 +4514,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(237); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(160); if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<') ADVANCE(38); @@ -4521,13 +4542,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(235); + ADVANCE(144); if (lookahead == '\'') ADVANCE(25); + if (lookahead == '(') + ADVANCE(27); if (lookahead == ')') ADVANCE(106); if (lookahead == '<') - ADVANCE(28); + ADVANCE(145); + if (lookahead == '=') + ADVANCE(149); if (lookahead == '>') ADVANCE(31); if (lookahead == '[') @@ -4550,9 +4575,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(239); if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<') + (lookahead < ';' || lookahead > '>')) ADVANCE(38); END_STATE(); case 240: @@ -4573,13 +4596,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(104); + ADVANCE(144); if (lookahead == '\'') ADVANCE(25); + if (lookahead == ')') + ADVANCE(106); if (lookahead == '<') - ADVANCE(144); + ADVANCE(28); if (lookahead == '>') - ADVANCE(147); + ADVANCE(31); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') @@ -4599,10 +4624,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(241); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) - ADVANCE(155); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -4627,13 +4648,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(235); + ADVANCE(104); if (lookahead == '\'') ADVANCE(25); if (lookahead == '<') - ADVANCE(158); + ADVANCE(157); if (lookahead == '>') - ADVANCE(31); + ADVANCE(158); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') @@ -4653,6 +4674,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ') SKIP(243); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) + ADVANCE(160); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -4677,13 +4702,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(235); + ADVANCE(144); if (lookahead == '\'') ADVANCE(25); - if (lookahead == '(') - ADVANCE(27); if (lookahead == '<') - ADVANCE(158); + ADVANCE(145); + if (lookahead == '=') + ADVANCE(149); if (lookahead == '>') ADVANCE(31); if (lookahead == '[') @@ -4707,8 +4732,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(245); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<') + (lookahead < ';' || lookahead > '>')) ADVANCE(38); END_STATE(); case 246: @@ -4729,11 +4753,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(235); + ADVANCE(144); if (lookahead == '\'') ADVANCE(25); + if (lookahead == '(') + ADVANCE(27); if (lookahead == '<') - ADVANCE(28); + ADVANCE(145); + if (lookahead == '=') + ADVANCE(149); if (lookahead == '>') ADVANCE(31); if (lookahead == '[') @@ -4757,8 +4785,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(247); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<') + (lookahead < ';' || lookahead > '>')) ADVANCE(38); END_STATE(); case 248: @@ -4772,75 +4799,85 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(38); END_STATE(); case 249: + if (lookahead == '\"') + ADVANCE(2); if (lookahead == '#') ADVANCE(21); + if (lookahead == '$') + ADVANCE(4); + if (lookahead == '&') + ADVANCE(144); + if (lookahead == '\'') + ADVANCE(25); + if (lookahead == '<') + ADVANCE(28); + if (lookahead == '>') + ADVANCE(31); + if (lookahead == '[') + ADVANCE(40); if (lookahead == '\\') - SKIP(250); + ADVANCE(250); + if (lookahead == ']') + ADVANCE(40); + if (lookahead == '`') + ADVANCE(19); + if (lookahead == '{') + ADVANCE(40); + if (lookahead == '|') + ADVANCE(133); + if (lookahead == '}') + ADVANCE(40); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(249); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<') + ADVANCE(38); END_STATE(); case 250: if (lookahead == '\n') SKIP(249); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(38); END_STATE(); case 251: - if (lookahead == '\n') - ADVANCE(150); if (lookahead == '#') ADVANCE(21); - if (lookahead == '&') - ADVANCE(157); - if (lookahead == ')') - ADVANCE(106); - if (lookahead == ';') - ADVANCE(152); - if (lookahead == '<') - ADVANCE(252); - if (lookahead == '>') - ADVANCE(253); if (lookahead == '\\') - SKIP(254); - if (lookahead == '|') - ADVANCE(133); + SKIP(252); if (lookahead == '\t' || + lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(251); END_STATE(); case 252: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') - ADVANCE(29); - if (lookahead == '<') - ADVANCE(159); - END_STATE(); - case 253: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') - ADVANCE(32); - if (lookahead == '>') - ADVANCE(34); - END_STATE(); - case 254: if (lookahead == '\n') SKIP(251); END_STATE(); - case 255: + case 253: if (lookahead == '\n') - ADVANCE(150); + ADVANCE(153); if (lookahead == '#') ADVANCE(21); if (lookahead == '&') - ADVANCE(157); + ADVANCE(162); + if (lookahead == ')') + ADVANCE(106); if (lookahead == ';') - ADVANCE(152); + ADVANCE(155); if (lookahead == '<') - ADVANCE(252); + ADVANCE(254); if (lookahead == '>') - ADVANCE(253); + ADVANCE(255); if (lookahead == '\\') SKIP(256); if (lookahead == '|') @@ -4848,21 +4885,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(255); + SKIP(253); + END_STATE(); + case 254: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') + ADVANCE(29); + if (lookahead == '<') + ADVANCE(146); + END_STATE(); + case 255: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '&') + ADVANCE(32); + if (lookahead == '>') + ADVANCE(34); END_STATE(); case 256: if (lookahead == '\n') - SKIP(255); + SKIP(253); END_STATE(); case 257: + if (lookahead == '\n') + ADVANCE(153); if (lookahead == '#') ADVANCE(21); + if (lookahead == '&') + ADVANCE(162); + if (lookahead == ';') + ADVANCE(155); + if (lookahead == '<') + ADVANCE(254); + if (lookahead == '>') + ADVANCE(255); if (lookahead == '\\') SKIP(258); - if (lookahead == ']') - ADVANCE(112); + if (lookahead == '|') + ADVANCE(133); if (lookahead == '\t' || - lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(257); @@ -4872,6 +4932,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { SKIP(257); END_STATE(); case 259: + if (lookahead == '#') + ADVANCE(21); + if (lookahead == '\\') + SKIP(260); + if (lookahead == ']') + ADVANCE(112); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(259); + END_STATE(); + case 260: + if (lookahead == '\n') + SKIP(259); + END_STATE(); + case 261: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -4891,7 +4968,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(35); if (lookahead == '\\') - ADVANCE(260); + ADVANCE(262); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -4899,7 +4976,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'c') ADVANCE(41); if (lookahead == 'd') - ADVANCE(261); + ADVANCE(263); if (lookahead == 'e') ADVANCE(52); if (lookahead == 'f') @@ -4924,7 +5001,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(259); + SKIP(261); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -4932,9 +5009,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 260: + case 262: if (lookahead == '\n') - SKIP(259); + SKIP(261); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4942,55 +5019,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 261: + case 263: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(39); if (lookahead == 'e') ADVANCE(46); if (lookahead == 'o') - ADVANCE(262); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); - END_STATE(); - case 262: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'n') - ADVANCE(263); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); - END_STATE(); - case 263: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'e') ADVANCE(264); if (lookahead != 0 && lookahead != '\t' && @@ -5008,6 +5043,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(38); END_STATE(); case 264: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(39); + if (lookahead == 'n') + ADVANCE(265); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(38); + END_STATE(); + case 265: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(39); + if (lookahead == 'e') + ADVANCE(266); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(38); + END_STATE(); + case 266: ACCEPT_TOKEN(anon_sym_done); if (lookahead == '\\') ADVANCE(39); @@ -5026,7 +5103,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 265: + case 267: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -5046,7 +5123,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(35); if (lookahead == '\\') - ADVANCE(266); + ADVANCE(268); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -5056,9 +5133,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'd') ADVANCE(45); if (lookahead == 'e') - ADVANCE(267); + ADVANCE(269); if (lookahead == 'f') - ADVANCE(273); + ADVANCE(275); if (lookahead == 'i') ADVANCE(68); if (lookahead == 'l') @@ -5079,7 +5156,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(265); + SKIP(267); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -5087,9 +5164,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 266: + case 268: if (lookahead == '\n') - SKIP(265); + SKIP(267); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5097,12 +5174,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 267: + case 269: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(39); if (lookahead == 'l') - ADVANCE(268); + ADVANCE(270); if (lookahead == 'x') ADVANCE(53); if (lookahead != 0 && @@ -5120,54 +5197,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 268: + case 270: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(39); if (lookahead == 'i') - ADVANCE(269); - if (lookahead == 's') ADVANCE(271); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); - END_STATE(); - case 269: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(39); - if (lookahead == 'f') - ADVANCE(270); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - (lookahead < '\"' || lookahead > '$') && - (lookahead < '&' || lookahead > ')') && - lookahead != ';' && - lookahead != '<' && - lookahead != '>' && - (lookahead < '[' || lookahead > ']') && - lookahead != '`' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); - END_STATE(); - case 270: - ACCEPT_TOKEN(anon_sym_elif); - if (lookahead == '\\') - ADVANCE(39); + if (lookahead == 's') + ADVANCE(273); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5187,7 +5224,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(39); - if (lookahead == 'e') + if (lookahead == 'f') ADVANCE(272); if (lookahead != 0 && lookahead != '\t' && @@ -5205,7 +5242,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(38); END_STATE(); case 272: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_elif); if (lookahead == '\\') ADVANCE(39); if (lookahead != 0 && @@ -5227,8 +5264,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(39); - if (lookahead == 'i') + if (lookahead == 'e') ADVANCE(274); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(38); + END_STATE(); + case 274: + ACCEPT_TOKEN(anon_sym_else); + if (lookahead == '\\') + ADVANCE(39); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + (lookahead < '\"' || lookahead > '$') && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + lookahead != '>' && + (lookahead < '[' || lookahead > ']') && + lookahead != '`' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(38); + END_STATE(); + case 275: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(39); + if (lookahead == 'i') + ADVANCE(276); if (lookahead == 'o') ADVANCE(59); if (lookahead == 'u') @@ -5248,7 +5325,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 274: + case 276: ACCEPT_TOKEN(anon_sym_fi); if (lookahead == '\\') ADVANCE(39); @@ -5267,7 +5344,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 275: + case 277: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -5287,7 +5364,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(35); if (lookahead == '\\') - ADVANCE(276); + ADVANCE(278); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -5320,7 +5397,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(275); + SKIP(277); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -5328,9 +5405,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 276: + case 278: if (lookahead == '\n') - SKIP(275); + SKIP(277); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5338,38 +5415,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 277: + case 279: if (lookahead == '\n') - ADVANCE(150); + ADVANCE(153); if (lookahead == '#') ADVANCE(21); if (lookahead == '&') - ADVANCE(157); + ADVANCE(162); if (lookahead == ';') - ADVANCE(152); + ADVANCE(155); if (lookahead == '<') - ADVANCE(278); + ADVANCE(280); if (lookahead == '>') - ADVANCE(253); + ADVANCE(255); if (lookahead == '\\') - SKIP(279); + SKIP(281); if (lookahead == '|') ADVANCE(133); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(277); + SKIP(279); END_STATE(); - case 278: + case 280: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') ADVANCE(29); END_STATE(); - case 279: + case 281: if (lookahead == '\n') - SKIP(277); + SKIP(279); END_STATE(); - case 280: + case 282: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -5391,7 +5468,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(35); if (lookahead == '\\') - ADVANCE(281); + ADVANCE(283); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -5420,59 +5497,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(40); if (lookahead == '}') ADVANCE(40); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(280); - if (lookahead != 0 && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || lookahead > '}')) - ADVANCE(38); - END_STATE(); - case 281: - if (lookahead == '\n') - SKIP(280); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(38); - END_STATE(); - case 282: - if (lookahead == '\"') - ADVANCE(2); - if (lookahead == '#') - ADVANCE(21); - if (lookahead == '$') - ADVANCE(4); - if (lookahead == '\'') - ADVANCE(25); - if (lookahead == '<') - ADVANCE(144); - if (lookahead == '>') - ADVANCE(147); - if (lookahead == '[') - ADVANCE(40); - if (lookahead == '\\') - ADVANCE(283); - if (lookahead == ']') - ADVANCE(40); - if (lookahead == '`') - ADVANCE(19); - if (lookahead == '{') - ADVANCE(40); - if (lookahead == '}') - ADVANCE(136); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(282); if (lookahead != 0 && - (lookahead < '&' || lookahead > ')') && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) @@ -5489,105 +5519,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(38); END_STATE(); case 284: - if (lookahead == '#') - ADVANCE(21); - if (lookahead == '&') - ADVANCE(235); - if (lookahead == ')') - ADVANCE(106); - if (lookahead == '<') - ADVANCE(252); - if (lookahead == '>') - ADVANCE(253); - if (lookahead == '\\') - SKIP(285); - if (lookahead == '`') - ADVANCE(19); - if (lookahead == '|') - ADVANCE(133); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(284); - END_STATE(); - case 285: - if (lookahead == '\n') - SKIP(284); - END_STATE(); - case 286: - if (lookahead == '#') - ADVANCE(21); - if (lookahead == '&') - ADVANCE(235); - if (lookahead == ')') - ADVANCE(106); - if (lookahead == '<') - ADVANCE(252); - if (lookahead == '>') - ADVANCE(253); - if (lookahead == '\\') - SKIP(287); - if (lookahead == '|') - ADVANCE(133); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(286); - END_STATE(); - case 287: - if (lookahead == '\n') - SKIP(286); - END_STATE(); - case 288: - if (lookahead == '#') - ADVANCE(21); - if (lookahead == '&') - ADVANCE(235); - if (lookahead == '<') - ADVANCE(252); - if (lookahead == '>') - ADVANCE(253); - if (lookahead == '\\') - SKIP(289); - if (lookahead == '`') - ADVANCE(19); - if (lookahead == '|') - ADVANCE(133); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(288); - END_STATE(); - case 289: - if (lookahead == '\n') - SKIP(288); - END_STATE(); - case 290: - if (lookahead == '#') - ADVANCE(21); - if (lookahead == '$') - ADVANCE(291); - if (lookahead == '\\') - SKIP(292); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(290); - END_STATE(); - case 291: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '{') - ADVANCE(6); - END_STATE(); - case 292: - if (lookahead == '\n') - SKIP(290); - END_STATE(); - case 293: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -5597,13 +5528,279 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(25); if (lookahead == '<') - ADVANCE(144); + ADVANCE(157); if (lookahead == '>') - ADVANCE(147); + ADVANCE(158); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(294); + ADVANCE(285); + if (lookahead == ']') + ADVANCE(40); + if (lookahead == '`') + ADVANCE(19); + if (lookahead == '{') + ADVANCE(40); + if (lookahead == '}') + ADVANCE(136); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(284); + if (lookahead != 0 && + (lookahead < '&' || lookahead > ')') && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || lookahead > '}')) + ADVANCE(38); + END_STATE(); + case 285: + if (lookahead == '\n') + SKIP(284); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(38); + END_STATE(); + case 286: + if (lookahead == '\"') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(3); + if (lookahead == '$') + ADVANCE(4); + if (lookahead == '%') + ADVANCE(227); + if (lookahead == '\'') + ADVANCE(25); + if (lookahead == '-') + ADVANCE(228); + if (lookahead == ':') + ADVANCE(230); + if (lookahead == '<') + ADVANCE(157); + if (lookahead == '=') + ADVANCE(233); + if (lookahead == '>') + ADVANCE(158); + if (lookahead == '[') + ADVANCE(40); + if (lookahead == '\\') + ADVANCE(287); + if (lookahead == ']') + ADVANCE(40); + if (lookahead == '`') + ADVANCE(19); + if (lookahead == '{') + ADVANCE(40); + if (lookahead == '}') + ADVANCE(136); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(286); + if (lookahead != 0 && + (lookahead < '\"' || lookahead > ')') && + (lookahead < ':' || lookahead > '>') && + (lookahead < '{' || lookahead > '}')) + ADVANCE(38); + END_STATE(); + case 287: + if (lookahead == '\n') + SKIP(286); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(38); + END_STATE(); + case 288: + if (lookahead == '#') + ADVANCE(289); + if (lookahead == '\\') + ADVANCE(291); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(288); + if (lookahead != 0 && + lookahead != '}') + ADVANCE(292); + END_STATE(); + case 289: + ACCEPT_TOKEN(sym_regex_without_right_brace); + if (lookahead == '\\') + ADVANCE(290); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '}') + ADVANCE(289); + END_STATE(); + case 290: + ACCEPT_TOKEN(sym_regex_without_right_brace); + if (lookahead == '\\') + ADVANCE(290); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == '}') + ADVANCE(289); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(289); + END_STATE(); + case 291: + ACCEPT_TOKEN(sym_regex_without_right_brace); + if (lookahead == '\\') + ADVANCE(291); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == '}') + ADVANCE(292); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(292); + END_STATE(); + case 292: + ACCEPT_TOKEN(sym_regex_without_right_brace); + if (lookahead == '\\') + ADVANCE(291); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '}') + ADVANCE(292); + END_STATE(); + case 293: + if (lookahead == '#') + ADVANCE(21); + if (lookahead == '&') + ADVANCE(144); + if (lookahead == ')') + ADVANCE(106); + if (lookahead == '<') + ADVANCE(254); + if (lookahead == '>') + ADVANCE(255); + if (lookahead == '\\') + SKIP(294); + if (lookahead == '`') + ADVANCE(19); + if (lookahead == '|') + ADVANCE(133); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(293); + END_STATE(); + case 294: + if (lookahead == '\n') + SKIP(293); + END_STATE(); + case 295: + if (lookahead == '#') + ADVANCE(21); + if (lookahead == '&') + ADVANCE(144); + if (lookahead == ')') + ADVANCE(106); + if (lookahead == '<') + ADVANCE(254); + if (lookahead == '>') + ADVANCE(255); + if (lookahead == '\\') + SKIP(296); + if (lookahead == '|') + ADVANCE(133); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(295); + END_STATE(); + case 296: + if (lookahead == '\n') + SKIP(295); + END_STATE(); + case 297: + if (lookahead == '#') + ADVANCE(21); + if (lookahead == '&') + ADVANCE(144); + if (lookahead == '<') + ADVANCE(254); + if (lookahead == '>') + ADVANCE(255); + if (lookahead == '\\') + SKIP(298); + if (lookahead == '`') + ADVANCE(19); + if (lookahead == '|') + ADVANCE(133); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(297); + END_STATE(); + case 298: + if (lookahead == '\n') + SKIP(297); + END_STATE(); + case 299: + if (lookahead == '#') + ADVANCE(21); + if (lookahead == '$') + ADVANCE(300); + if (lookahead == '\\') + SKIP(301); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(299); + END_STATE(); + case 300: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '{') + ADVANCE(6); + END_STATE(); + case 301: + if (lookahead == '\n') + SKIP(299); + END_STATE(); + case 302: + if (lookahead == '\"') + ADVANCE(2); + if (lookahead == '#') + ADVANCE(21); + if (lookahead == '$') + ADVANCE(4); + if (lookahead == '\'') + ADVANCE(25); + if (lookahead == '<') + ADVANCE(157); + if (lookahead == '>') + ADVANCE(158); + if (lookahead == '[') + ADVANCE(40); + if (lookahead == '\\') + ADVANCE(303); if (lookahead == ']') ADVANCE(112); if (lookahead == '`') @@ -5616,7 +5813,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(293); + SKIP(302); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -5624,9 +5821,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 294: + case 303: if (lookahead == '\n') - SKIP(293); + SKIP(302); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5634,7 +5831,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 295: + case 304: if (lookahead == '#') ADVANCE(21); if (lookahead == '+') @@ -5642,18 +5839,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(109); if (lookahead == '\\') - SKIP(296); + SKIP(305); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(295); + SKIP(304); END_STATE(); - case 296: + case 305: if (lookahead == '\n') - SKIP(295); + SKIP(304); END_STATE(); - case 297: + case 306: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -5665,13 +5862,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(106); if (lookahead == '<') - ADVANCE(144); + ADVANCE(157); if (lookahead == '>') - ADVANCE(147); + ADVANCE(158); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(298); + ADVANCE(307); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -5684,7 +5881,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(297); + SKIP(306); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -5692,9 +5889,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 298: + case 307: if (lookahead == '\n') - SKIP(297); + SKIP(306); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5702,9 +5899,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 299: + case 308: if (lookahead == '\n') - ADVANCE(150); + ADVANCE(153); if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -5712,19 +5909,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(4); if (lookahead == '&') - ADVANCE(189); + ADVANCE(190); if (lookahead == '\'') ADVANCE(25); if (lookahead == ';') - ADVANCE(152); + ADVANCE(155); if (lookahead == '<') - ADVANCE(144); + ADVANCE(157); if (lookahead == '>') - ADVANCE(147); + ADVANCE(158); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(300); + ADVANCE(309); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -5736,15 +5933,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(299); + SKIP(308); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 300: + case 309: if (lookahead == '\n') - SKIP(299); + SKIP(308); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5752,7 +5949,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 301: + case 310: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -5772,7 +5969,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(35); if (lookahead == '\\') - ADVANCE(302); + ADVANCE(311); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -5784,7 +5981,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(52); if (lookahead == 'f') - ADVANCE(273); + ADVANCE(275); if (lookahead == 'i') ADVANCE(68); if (lookahead == 'l') @@ -5805,7 +6002,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(301); + SKIP(310); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -5813,9 +6010,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 302: + case 311: if (lookahead == '\n') - SKIP(301); + SKIP(310); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5823,7 +6020,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 303: + case 312: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -5833,19 +6030,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(25); if (lookahead == '<') - ADVANCE(144); + ADVANCE(157); if (lookahead == '>') - ADVANCE(147); + ADVANCE(158); if (lookahead == '[') ADVANCE(40); if (lookahead == '\\') - ADVANCE(304); + ADVANCE(313); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') ADVANCE(19); if (lookahead == 'e') - ADVANCE(305); + ADVANCE(314); if (lookahead == '{') ADVANCE(40); if (lookahead == '}') @@ -5854,7 +6051,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(303); + SKIP(312); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -5862,9 +6059,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 304: + case 313: if (lookahead == '\n') - SKIP(303); + SKIP(312); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5872,12 +6069,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 305: + case 314: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(39); if (lookahead == 's') - ADVANCE(306); + ADVANCE(315); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5893,12 +6090,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 306: + case 315: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(39); if (lookahead == 'a') - ADVANCE(307); + ADVANCE(316); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5915,12 +6112,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 307: + case 316: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(39); if (lookahead == 'c') - ADVANCE(308); + ADVANCE(317); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5936,7 +6133,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 308: + case 317: ACCEPT_TOKEN(anon_sym_esac); if (lookahead == '\\') ADVANCE(39); @@ -5955,87 +6152,87 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 309: + case 318: if (lookahead == '\n') - ADVANCE(150); + ADVANCE(153); if (lookahead == '#') ADVANCE(21); if (lookahead == '&') - ADVANCE(157); + ADVANCE(162); if (lookahead == ')') ADVANCE(106); if (lookahead == ';') - ADVANCE(152); + ADVANCE(155); if (lookahead == '<') - ADVANCE(278); + ADVANCE(280); if (lookahead == '>') - ADVANCE(253); + ADVANCE(255); if (lookahead == '\\') - SKIP(310); + SKIP(319); if (lookahead == '|') ADVANCE(133); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(309); + SKIP(318); END_STATE(); - case 310: + case 319: if (lookahead == '\n') - SKIP(309); + SKIP(318); END_STATE(); - case 311: + case 320: if (lookahead == '#') ADVANCE(21); if (lookahead == '\\') - SKIP(312); + SKIP(321); if (lookahead == '}') ADVANCE(136); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(311); + SKIP(320); END_STATE(); - case 312: + case 321: if (lookahead == '\n') - SKIP(311); + SKIP(320); END_STATE(); - case 313: + case 322: if (lookahead == '#') ADVANCE(21); if (lookahead == '&') - ADVANCE(235); + ADVANCE(144); if (lookahead == ')') ADVANCE(106); if (lookahead == '<') - ADVANCE(278); + ADVANCE(280); if (lookahead == '>') - ADVANCE(253); + ADVANCE(255); if (lookahead == '\\') - SKIP(314); + SKIP(323); if (lookahead == '|') ADVANCE(133); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(313); + SKIP(322); END_STATE(); - case 314: + case 323: if (lookahead == '\n') - SKIP(313); + SKIP(322); END_STATE(); - case 315: + case 324: if (lookahead == '#') ADVANCE(21); if (lookahead == '&') - ADVANCE(235); + ADVANCE(144); if (lookahead == '<') - ADVANCE(278); + ADVANCE(280); if (lookahead == '>') - ADVANCE(253); + ADVANCE(255); if (lookahead == '\\') - SKIP(316); + SKIP(325); if (lookahead == '`') ADVANCE(19); if (lookahead == '|') @@ -6044,66 +6241,66 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(315); + SKIP(324); END_STATE(); - case 316: + case 325: if (lookahead == '\n') - SKIP(315); + SKIP(324); END_STATE(); - case 317: + case 326: if (lookahead == '#') ADVANCE(21); if (lookahead == ')') ADVANCE(106); if (lookahead == '\\') - SKIP(318); + SKIP(327); if (lookahead == '|') ADVANCE(139); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(317); + SKIP(326); END_STATE(); - case 318: + case 327: if (lookahead == '\n') - SKIP(317); + SKIP(326); END_STATE(); - case 319: + case 328: if (lookahead == '\n') - ADVANCE(150); + ADVANCE(153); if (lookahead == '#') ADVANCE(21); if (lookahead == '&') - ADVANCE(151); + ADVANCE(154); if (lookahead == ';') - ADVANCE(152); + ADVANCE(155); if (lookahead == '\\') - SKIP(320); + SKIP(329); if (lookahead == '|') ADVANCE(133); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(319); + SKIP(328); END_STATE(); - case 320: + case 329: if (lookahead == '\n') - SKIP(319); + SKIP(328); END_STATE(); - case 321: + case 330: if (lookahead == '#') ADVANCE(21); if (lookahead == '&') - ADVANCE(235); + ADVANCE(144); if (lookahead == ')') ADVANCE(106); if (lookahead == '<') - ADVANCE(278); + ADVANCE(280); if (lookahead == '>') - ADVANCE(253); + ADVANCE(255); if (lookahead == '\\') - SKIP(322); + SKIP(331); if (lookahead == '`') ADVANCE(19); if (lookahead == '|') @@ -6112,13 +6309,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(321); + SKIP(330); END_STATE(); - case 322: + case 331: if (lookahead == '\n') - SKIP(321); + SKIP(330); END_STATE(); - case 323: + case 332: if (lookahead == '\"') ADVANCE(2); if (lookahead == '#') @@ -6132,7 +6329,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(27); if (lookahead == ';') - ADVANCE(178); + ADVANCE(179); if (lookahead == '<') ADVANCE(28); if (lookahead == '>') @@ -6140,7 +6337,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(35); if (lookahead == '\\') - ADVANCE(324); + ADVANCE(333); if (lookahead == ']') ADVANCE(40); if (lookahead == '`') @@ -6150,7 +6347,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'd') ADVANCE(45); if (lookahead == 'e') - ADVANCE(325); + ADVANCE(334); if (lookahead == 'f') ADVANCE(58); if (lookahead == 'i') @@ -6173,15 +6370,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(323); + SKIP(332); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 324: + case 333: if (lookahead == '\n') - SKIP(323); + SKIP(332); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -6189,12 +6386,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(38); END_STATE(); - case 325: + case 334: ACCEPT_TOKEN(sym_word); if (lookahead == '\\') ADVANCE(39); if (lookahead == 's') - ADVANCE(306); + ADVANCE(315); if (lookahead == 'x') ADVANCE(53); if (lookahead != 0 && @@ -6212,31 +6409,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(38); END_STATE(); - case 326: + case 335: if (lookahead == '\n') - ADVANCE(150); + ADVANCE(153); if (lookahead == '#') ADVANCE(21); if (lookahead == '&') - ADVANCE(151); + ADVANCE(154); if (lookahead == ')') ADVANCE(106); if (lookahead == ';') - ADVANCE(152); + ADVANCE(155); if (lookahead == '\\') - SKIP(327); + SKIP(336); if (lookahead == '|') ADVANCE(133); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(326); + SKIP(335); END_STATE(); - case 327: + case 336: if (lookahead == '\n') - SKIP(326); + SKIP(335); END_STATE(); - case 328: + case 337: if (lookahead == '#') ADVANCE(21); if (lookahead == '&') @@ -6244,26 +6441,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(106); if (lookahead == '\\') - SKIP(329); + SKIP(338); if (lookahead == '|') ADVANCE(133); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(328); + SKIP(337); END_STATE(); - case 329: + case 338: if (lookahead == '\n') - SKIP(328); + SKIP(337); END_STATE(); - case 330: + case 339: if (lookahead == '#') ADVANCE(21); if (lookahead == '&') ADVANCE(104); if (lookahead == '\\') - SKIP(331); + SKIP(340); if (lookahead == '`') ADVANCE(19); if (lookahead == '|') @@ -6272,11 +6469,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(330); + SKIP(339); END_STATE(); - case 331: + case 340: if (lookahead == '\n') - SKIP(330); + SKIP(339); END_STATE(); default: return false; @@ -6296,2841 +6493,3949 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [9] = {.lex_state = 20, .external_lex_state = 2}, [10] = {.lex_state = 143}, [11] = {.lex_state = 143}, - [12] = {.lex_state = 149, .external_lex_state = 3}, - [13] = {.lex_state = 149, .external_lex_state = 4}, + [12] = {.lex_state = 152, .external_lex_state = 3}, + [13] = {.lex_state = 152, .external_lex_state = 4}, [14] = {.lex_state = 141}, - [15] = {.lex_state = 156, .external_lex_state = 5}, - [16] = {.lex_state = 163}, - [17] = {.lex_state = 168}, - [18] = {.lex_state = 156, .external_lex_state = 5}, - [19] = {.lex_state = 173, .external_lex_state = 6}, + [15] = {.lex_state = 161, .external_lex_state = 5}, + [16] = {.lex_state = 164}, + [17] = {.lex_state = 169}, + [18] = {.lex_state = 161, .external_lex_state = 5}, + [19] = {.lex_state = 174, .external_lex_state = 6}, [20] = {.lex_state = 20, .external_lex_state = 2}, [21] = {.lex_state = 20, .external_lex_state = 2}, [22] = {.lex_state = 20, .external_lex_state = 2}, - [23] = {.lex_state = 175, .external_lex_state = 5}, + [23] = {.lex_state = 176, .external_lex_state = 5}, [24] = {.lex_state = 20}, - [25] = {.lex_state = 177, .external_lex_state = 2}, - [26] = {.lex_state = 149, .external_lex_state = 4}, - [27] = {.lex_state = 156, .external_lex_state = 7}, - [28] = {.lex_state = 180, .external_lex_state = 8}, + [25] = {.lex_state = 178, .external_lex_state = 2}, + [26] = {.lex_state = 152, .external_lex_state = 4}, + [27] = {.lex_state = 161, .external_lex_state = 7}, + [28] = {.lex_state = 181, .external_lex_state = 8}, [29] = {.lex_state = 103}, [30] = {.lex_state = 141, .external_lex_state = 2}, - [31] = {.lex_state = 182, .external_lex_state = 7}, + [31] = {.lex_state = 183, .external_lex_state = 7}, [32] = {.lex_state = 20, .external_lex_state = 2}, [33] = {.lex_state = 141, .external_lex_state = 2}, [34] = {.lex_state = 141}, [35] = {.lex_state = 141}, - [36] = {.lex_state = 184, .external_lex_state = 9}, - [37] = {.lex_state = 186, .external_lex_state = 8}, + [36] = {.lex_state = 185, .external_lex_state = 9}, + [37] = {.lex_state = 187, .external_lex_state = 8}, [38] = {.lex_state = 103}, [39] = {.lex_state = 103}, - [40] = {.lex_state = 149, .external_lex_state = 4}, - [41] = {.lex_state = 180, .external_lex_state = 8}, + [40] = {.lex_state = 152, .external_lex_state = 4}, + [41] = {.lex_state = 181, .external_lex_state = 8}, [42] = {.lex_state = 103}, - [43] = {.lex_state = 188, .external_lex_state = 10}, - [44] = {.lex_state = 163}, - [45] = {.lex_state = 168}, - [46] = {.lex_state = 188, .external_lex_state = 10}, - [47] = {.lex_state = 173, .external_lex_state = 6}, + [43] = {.lex_state = 189, .external_lex_state = 10}, + [44] = {.lex_state = 164}, + [45] = {.lex_state = 169}, + [46] = {.lex_state = 189, .external_lex_state = 10}, + [47] = {.lex_state = 174, .external_lex_state = 6}, [48] = {.lex_state = 20, .external_lex_state = 2}, [49] = {.lex_state = 20, .external_lex_state = 2}, [50] = {.lex_state = 20, .external_lex_state = 2}, - [51] = {.lex_state = 188, .external_lex_state = 4}, + [51] = {.lex_state = 189, .external_lex_state = 4}, [52] = {.lex_state = 103}, [53] = {.lex_state = 103}, [54] = {.lex_state = 20, .external_lex_state = 2}, [55] = {.lex_state = 141}, - [56] = {.lex_state = 191, .external_lex_state = 3}, - [57] = {.lex_state = 191, .external_lex_state = 4}, - [58] = {.lex_state = 182, .external_lex_state = 5}, - [59] = {.lex_state = 163}, - [60] = {.lex_state = 168}, - [61] = {.lex_state = 182, .external_lex_state = 5}, - [62] = {.lex_state = 173, .external_lex_state = 6}, - [63] = {.lex_state = 20, .external_lex_state = 2}, - [64] = {.lex_state = 20, .external_lex_state = 2}, + [56] = {.lex_state = 143}, + [57] = {.lex_state = 143}, + [58] = {.lex_state = 192, .external_lex_state = 3}, + [59] = {.lex_state = 192, .external_lex_state = 4}, + [60] = {.lex_state = 183, .external_lex_state = 5}, + [61] = {.lex_state = 164}, + [62] = {.lex_state = 169}, + [63] = {.lex_state = 183, .external_lex_state = 5}, + [64] = {.lex_state = 174, .external_lex_state = 6}, [65] = {.lex_state = 20, .external_lex_state = 2}, - [66] = {.lex_state = 193, .external_lex_state = 5}, - [67] = {.lex_state = 191, .external_lex_state = 4}, - [68] = {.lex_state = 182, .external_lex_state = 7}, - [69] = {.lex_state = 186, .external_lex_state = 8}, - [70] = {.lex_state = 103}, - [71] = {.lex_state = 20, .external_lex_state = 2}, - [72] = {.lex_state = 141, .external_lex_state = 2}, - [73] = {.lex_state = 195}, - [74] = {.lex_state = 212, .external_lex_state = 11}, - [75] = {.lex_state = 163}, - [76] = {.lex_state = 168}, - [77] = {.lex_state = 212, .external_lex_state = 11}, - [78] = {.lex_state = 173, .external_lex_state = 6}, - [79] = {.lex_state = 20, .external_lex_state = 2}, - [80] = {.lex_state = 20, .external_lex_state = 2}, + [66] = {.lex_state = 20, .external_lex_state = 2}, + [67] = {.lex_state = 20, .external_lex_state = 2}, + [68] = {.lex_state = 194, .external_lex_state = 5}, + [69] = {.lex_state = 192, .external_lex_state = 4}, + [70] = {.lex_state = 183, .external_lex_state = 7}, + [71] = {.lex_state = 187, .external_lex_state = 8}, + [72] = {.lex_state = 103}, + [73] = {.lex_state = 20, .external_lex_state = 2}, + [74] = {.lex_state = 141, .external_lex_state = 2}, + [75] = {.lex_state = 196}, + [76] = {.lex_state = 217, .external_lex_state = 11}, + [77] = {.lex_state = 164}, + [78] = {.lex_state = 169}, + [79] = {.lex_state = 217, .external_lex_state = 11}, + [80] = {.lex_state = 174, .external_lex_state = 6}, [81] = {.lex_state = 20, .external_lex_state = 2}, - [82] = {.lex_state = 212, .external_lex_state = 12}, - [83] = {.lex_state = 212, .external_lex_state = 12}, - [84] = {.lex_state = 195}, - [85] = {.lex_state = 214, .external_lex_state = 13}, - [86] = {.lex_state = 163}, - [87] = {.lex_state = 168}, - [88] = {.lex_state = 214, .external_lex_state = 13}, - [89] = {.lex_state = 173, .external_lex_state = 6}, - [90] = {.lex_state = 20, .external_lex_state = 2}, - [91] = {.lex_state = 20, .external_lex_state = 2}, + [82] = {.lex_state = 20, .external_lex_state = 2}, + [83] = {.lex_state = 20, .external_lex_state = 2}, + [84] = {.lex_state = 217, .external_lex_state = 12}, + [85] = {.lex_state = 217, .external_lex_state = 12}, + [86] = {.lex_state = 196}, + [87] = {.lex_state = 219, .external_lex_state = 13}, + [88] = {.lex_state = 164}, + [89] = {.lex_state = 169}, + [90] = {.lex_state = 219, .external_lex_state = 13}, + [91] = {.lex_state = 174, .external_lex_state = 6}, [92] = {.lex_state = 20, .external_lex_state = 2}, - [93] = {.lex_state = 214}, - [94] = {.lex_state = 214}, - [95] = {.lex_state = 103}, - [96] = {.lex_state = 149, .external_lex_state = 14}, - [97] = {.lex_state = 163}, - [98] = {.lex_state = 168}, - [99] = {.lex_state = 149, .external_lex_state = 14}, - [100] = {.lex_state = 173, .external_lex_state = 6}, - [101] = {.lex_state = 20, .external_lex_state = 2}, - [102] = {.lex_state = 20, .external_lex_state = 2}, + [93] = {.lex_state = 20, .external_lex_state = 2}, + [94] = {.lex_state = 20, .external_lex_state = 2}, + [95] = {.lex_state = 219}, + [96] = {.lex_state = 219}, + [97] = {.lex_state = 103}, + [98] = {.lex_state = 152, .external_lex_state = 14}, + [99] = {.lex_state = 164}, + [100] = {.lex_state = 169}, + [101] = {.lex_state = 152, .external_lex_state = 14}, + [102] = {.lex_state = 174, .external_lex_state = 6}, [103] = {.lex_state = 20, .external_lex_state = 2}, - [104] = {.lex_state = 191, .external_lex_state = 3}, - [105] = {.lex_state = 191, .external_lex_state = 3}, - [106] = {.lex_state = 103}, - [107] = {.lex_state = 149, .external_lex_state = 3}, - [108] = {.lex_state = 149, .external_lex_state = 10}, - [109] = {.lex_state = 163}, - [110] = {.lex_state = 168}, - [111] = {.lex_state = 149, .external_lex_state = 10}, - [112] = {.lex_state = 173, .external_lex_state = 6}, - [113] = {.lex_state = 20, .external_lex_state = 2}, - [114] = {.lex_state = 20, .external_lex_state = 2}, + [104] = {.lex_state = 20, .external_lex_state = 2}, + [105] = {.lex_state = 20, .external_lex_state = 2}, + [106] = {.lex_state = 192, .external_lex_state = 3}, + [107] = {.lex_state = 192, .external_lex_state = 3}, + [108] = {.lex_state = 103}, + [109] = {.lex_state = 152, .external_lex_state = 3}, + [110] = {.lex_state = 152, .external_lex_state = 10}, + [111] = {.lex_state = 164}, + [112] = {.lex_state = 169}, + [113] = {.lex_state = 152, .external_lex_state = 10}, + [114] = {.lex_state = 174, .external_lex_state = 6}, [115] = {.lex_state = 20, .external_lex_state = 2}, - [116] = {.lex_state = 191, .external_lex_state = 4}, - [117] = {.lex_state = 191, .external_lex_state = 4}, - [118] = {.lex_state = 149, .external_lex_state = 4}, - [119] = {.lex_state = 141, .external_lex_state = 15}, - [120] = {.lex_state = 163}, - [121] = {.lex_state = 168}, - [122] = {.lex_state = 141, .external_lex_state = 15}, - [123] = {.lex_state = 173, .external_lex_state = 6}, - [124] = {.lex_state = 20, .external_lex_state = 2}, - [125] = {.lex_state = 20, .external_lex_state = 2}, + [116] = {.lex_state = 20, .external_lex_state = 2}, + [117] = {.lex_state = 20, .external_lex_state = 2}, + [118] = {.lex_state = 192, .external_lex_state = 4}, + [119] = {.lex_state = 192, .external_lex_state = 4}, + [120] = {.lex_state = 152, .external_lex_state = 4}, + [121] = {.lex_state = 141, .external_lex_state = 15}, + [122] = {.lex_state = 164}, + [123] = {.lex_state = 169}, + [124] = {.lex_state = 141, .external_lex_state = 15}, + [125] = {.lex_state = 174, .external_lex_state = 6}, [126] = {.lex_state = 20, .external_lex_state = 2}, - [127] = {.lex_state = 141, .external_lex_state = 2}, - [128] = {.lex_state = 141}, - [129] = {.lex_state = 156, .external_lex_state = 5}, - [130] = {.lex_state = 156, .external_lex_state = 5}, - [131] = {.lex_state = 218}, - [132] = {.lex_state = 163, .external_lex_state = 13}, - [133] = {.lex_state = 173, .external_lex_state = 6}, - [134] = {.lex_state = 20, .external_lex_state = 2}, - [135] = {.lex_state = 20, .external_lex_state = 2}, - [136] = {.lex_state = 163}, - [137] = {.lex_state = 156, .external_lex_state = 5}, - [138] = {.lex_state = 156, .external_lex_state = 5}, - [139] = {.lex_state = 156, .external_lex_state = 5}, - [140] = {.lex_state = 103}, - [141] = {.lex_state = 221, .external_lex_state = 16}, - [142] = {.lex_state = 230, .external_lex_state = 6}, - [143] = {.lex_state = 221, .external_lex_state = 16}, - [144] = {.lex_state = 221, .external_lex_state = 16}, - [145] = {.lex_state = 103}, - [146] = {.lex_state = 137}, - [147] = {.lex_state = 20, .external_lex_state = 2}, - [148] = {.lex_state = 20, .external_lex_state = 2}, - [149] = {.lex_state = 141}, - [150] = {.lex_state = 141}, - [151] = {.lex_state = 20, .external_lex_state = 2}, - [152] = {.lex_state = 143}, - [153] = {.lex_state = 143}, - [154] = {.lex_state = 232, .external_lex_state = 6}, - [155] = {.lex_state = 232}, - [156] = {.lex_state = 234, .external_lex_state = 17}, - [157] = {.lex_state = 163}, - [158] = {.lex_state = 168}, - [159] = {.lex_state = 234, .external_lex_state = 17}, - [160] = {.lex_state = 173, .external_lex_state = 6}, - [161] = {.lex_state = 20, .external_lex_state = 2}, - [162] = {.lex_state = 20, .external_lex_state = 2}, + [127] = {.lex_state = 20, .external_lex_state = 2}, + [128] = {.lex_state = 20, .external_lex_state = 2}, + [129] = {.lex_state = 141, .external_lex_state = 2}, + [130] = {.lex_state = 141}, + [131] = {.lex_state = 161, .external_lex_state = 5}, + [132] = {.lex_state = 161, .external_lex_state = 5}, + [133] = {.lex_state = 223}, + [134] = {.lex_state = 164, .external_lex_state = 13}, + [135] = {.lex_state = 174, .external_lex_state = 6}, + [136] = {.lex_state = 20, .external_lex_state = 2}, + [137] = {.lex_state = 20, .external_lex_state = 2}, + [138] = {.lex_state = 164}, + [139] = {.lex_state = 161, .external_lex_state = 5}, + [140] = {.lex_state = 161, .external_lex_state = 5}, + [141] = {.lex_state = 161, .external_lex_state = 5}, + [142] = {.lex_state = 103}, + [143] = {.lex_state = 226, .external_lex_state = 16}, + [144] = {.lex_state = 235, .external_lex_state = 6}, + [145] = {.lex_state = 226, .external_lex_state = 16}, + [146] = {.lex_state = 226, .external_lex_state = 16}, + [147] = {.lex_state = 103}, + [148] = {.lex_state = 137}, + [149] = {.lex_state = 20, .external_lex_state = 2}, + [150] = {.lex_state = 20, .external_lex_state = 2}, + [151] = {.lex_state = 141}, + [152] = {.lex_state = 141}, + [153] = {.lex_state = 20, .external_lex_state = 2}, + [154] = {.lex_state = 143}, + [155] = {.lex_state = 143}, + [156] = {.lex_state = 237, .external_lex_state = 6}, + [157] = {.lex_state = 237}, + [158] = {.lex_state = 143, .external_lex_state = 17}, + [159] = {.lex_state = 164}, + [160] = {.lex_state = 169}, + [161] = {.lex_state = 143, .external_lex_state = 17}, + [162] = {.lex_state = 174, .external_lex_state = 6}, [163] = {.lex_state = 20, .external_lex_state = 2}, - [164] = {.lex_state = 237, .external_lex_state = 17}, - [165] = {.lex_state = 103}, - [166] = {.lex_state = 234, .external_lex_state = 18}, - [167] = {.lex_state = 239, .external_lex_state = 2}, - [168] = {.lex_state = 103}, - [169] = {.lex_state = 234, .external_lex_state = 18}, - [170] = {.lex_state = 141, .external_lex_state = 2}, - [171] = {.lex_state = 103}, - [172] = {.lex_state = 20, .external_lex_state = 2}, - [173] = {.lex_state = 141}, - [174] = {.lex_state = 241, .external_lex_state = 6}, - [175] = {.lex_state = 232}, - [176] = {.lex_state = 243, .external_lex_state = 17}, - [177] = {.lex_state = 163}, - [178] = {.lex_state = 168}, - [179] = {.lex_state = 243, .external_lex_state = 17}, - [180] = {.lex_state = 173, .external_lex_state = 6}, - [181] = {.lex_state = 20, .external_lex_state = 2}, - [182] = {.lex_state = 20, .external_lex_state = 2}, - [183] = {.lex_state = 20, .external_lex_state = 2}, - [184] = {.lex_state = 245, .external_lex_state = 17}, - [185] = {.lex_state = 103}, - [186] = {.lex_state = 243, .external_lex_state = 18}, - [187] = {.lex_state = 247, .external_lex_state = 2}, - [188] = {.lex_state = 103}, - [189] = {.lex_state = 141, .external_lex_state = 2}, - [190] = {.lex_state = 103}, - [191] = {.lex_state = 239, .external_lex_state = 2}, + [164] = {.lex_state = 20, .external_lex_state = 2}, + [165] = {.lex_state = 20, .external_lex_state = 2}, + [166] = {.lex_state = 239, .external_lex_state = 17}, + [167] = {.lex_state = 103}, + [168] = {.lex_state = 143, .external_lex_state = 18}, + [169] = {.lex_state = 241, .external_lex_state = 2}, + [170] = {.lex_state = 103}, + [171] = {.lex_state = 143, .external_lex_state = 18}, + [172] = {.lex_state = 141, .external_lex_state = 2}, + [173] = {.lex_state = 103}, + [174] = {.lex_state = 20, .external_lex_state = 2}, + [175] = {.lex_state = 141}, + [176] = {.lex_state = 143}, + [177] = {.lex_state = 143}, + [178] = {.lex_state = 243, .external_lex_state = 6}, + [179] = {.lex_state = 237}, + [180] = {.lex_state = 245, .external_lex_state = 17}, + [181] = {.lex_state = 164}, + [182] = {.lex_state = 169}, + [183] = {.lex_state = 245, .external_lex_state = 17}, + [184] = {.lex_state = 174, .external_lex_state = 6}, + [185] = {.lex_state = 20, .external_lex_state = 2}, + [186] = {.lex_state = 20, .external_lex_state = 2}, + [187] = {.lex_state = 20, .external_lex_state = 2}, + [188] = {.lex_state = 247, .external_lex_state = 17}, + [189] = {.lex_state = 103}, + [190] = {.lex_state = 245, .external_lex_state = 18}, + [191] = {.lex_state = 249, .external_lex_state = 2}, [192] = {.lex_state = 103}, - [193] = {.lex_state = 20, .external_lex_state = 2}, - [194] = {.lex_state = 177, .external_lex_state = 2}, - [195] = {.lex_state = 20, .external_lex_state = 2}, - [196] = {.lex_state = 20}, - [197] = {.lex_state = 141}, - [198] = {.lex_state = 249, .external_lex_state = 19}, - [199] = {.lex_state = 141}, - [200] = {.lex_state = 156, .external_lex_state = 5}, - [201] = {.lex_state = 156, .external_lex_state = 5}, - [202] = {.lex_state = 251, .external_lex_state = 7}, - [203] = {.lex_state = 182, .external_lex_state = 7}, - [204] = {.lex_state = 156, .external_lex_state = 7}, - [205] = {.lex_state = 255, .external_lex_state = 7}, - [206] = {.lex_state = 20, .external_lex_state = 2}, - [207] = {.lex_state = 103}, - [208] = {.lex_state = 156, .external_lex_state = 7}, - [209] = {.lex_state = 103}, - [210] = {.lex_state = 141, .external_lex_state = 2}, - [211] = {.lex_state = 141, .external_lex_state = 15}, - [212] = {.lex_state = 141, .external_lex_state = 15}, - [213] = {.lex_state = 141, .external_lex_state = 2}, - [214] = {.lex_state = 257, .external_lex_state = 11}, - [215] = {.lex_state = 163}, - [216] = {.lex_state = 168}, - [217] = {.lex_state = 257, .external_lex_state = 11}, - [218] = {.lex_state = 173, .external_lex_state = 6}, - [219] = {.lex_state = 20, .external_lex_state = 2}, - [220] = {.lex_state = 20, .external_lex_state = 2}, - [221] = {.lex_state = 20, .external_lex_state = 2}, - [222] = {.lex_state = 257, .external_lex_state = 11}, - [223] = {.lex_state = 186, .external_lex_state = 8}, - [224] = {.lex_state = 234}, - [225] = {.lex_state = 180, .external_lex_state = 20}, - [226] = {.lex_state = 163}, - [227] = {.lex_state = 168}, - [228] = {.lex_state = 180, .external_lex_state = 20}, - [229] = {.lex_state = 173, .external_lex_state = 6}, - [230] = {.lex_state = 20, .external_lex_state = 2}, - [231] = {.lex_state = 20, .external_lex_state = 2}, - [232] = {.lex_state = 20, .external_lex_state = 2}, - [233] = {.lex_state = 141}, - [234] = {.lex_state = 259, .external_lex_state = 2}, - [235] = {.lex_state = 255, .external_lex_state = 7}, - [236] = {.lex_state = 103}, - [237] = {.lex_state = 265, .external_lex_state = 2}, + [193] = {.lex_state = 141, .external_lex_state = 2}, + [194] = {.lex_state = 103}, + [195] = {.lex_state = 241, .external_lex_state = 2}, + [196] = {.lex_state = 103}, + [197] = {.lex_state = 20, .external_lex_state = 2}, + [198] = {.lex_state = 178, .external_lex_state = 2}, + [199] = {.lex_state = 20, .external_lex_state = 2}, + [200] = {.lex_state = 20}, + [201] = {.lex_state = 196}, + [202] = {.lex_state = 141}, + [203] = {.lex_state = 251, .external_lex_state = 19}, + [204] = {.lex_state = 141}, + [205] = {.lex_state = 161, .external_lex_state = 5}, + [206] = {.lex_state = 161, .external_lex_state = 5}, + [207] = {.lex_state = 253, .external_lex_state = 7}, + [208] = {.lex_state = 183, .external_lex_state = 7}, + [209] = {.lex_state = 257, .external_lex_state = 7}, + [210] = {.lex_state = 161, .external_lex_state = 7}, + [211] = {.lex_state = 20, .external_lex_state = 2}, + [212] = {.lex_state = 103}, + [213] = {.lex_state = 161, .external_lex_state = 7}, + [214] = {.lex_state = 103}, + [215] = {.lex_state = 141, .external_lex_state = 2}, + [216] = {.lex_state = 141, .external_lex_state = 15}, + [217] = {.lex_state = 141, .external_lex_state = 15}, + [218] = {.lex_state = 141, .external_lex_state = 2}, + [219] = {.lex_state = 259, .external_lex_state = 11}, + [220] = {.lex_state = 164}, + [221] = {.lex_state = 169}, + [222] = {.lex_state = 259, .external_lex_state = 11}, + [223] = {.lex_state = 174, .external_lex_state = 6}, + [224] = {.lex_state = 20, .external_lex_state = 2}, + [225] = {.lex_state = 20, .external_lex_state = 2}, + [226] = {.lex_state = 20, .external_lex_state = 2}, + [227] = {.lex_state = 259, .external_lex_state = 11}, + [228] = {.lex_state = 187, .external_lex_state = 8}, + [229] = {.lex_state = 241}, + [230] = {.lex_state = 181, .external_lex_state = 20}, + [231] = {.lex_state = 164}, + [232] = {.lex_state = 169}, + [233] = {.lex_state = 181, .external_lex_state = 20}, + [234] = {.lex_state = 174, .external_lex_state = 6}, + [235] = {.lex_state = 20, .external_lex_state = 2}, + [236] = {.lex_state = 20, .external_lex_state = 2}, + [237] = {.lex_state = 20, .external_lex_state = 2}, [238] = {.lex_state = 141}, - [239] = {.lex_state = 188, .external_lex_state = 4}, - [240] = {.lex_state = 103}, - [241] = {.lex_state = 188, .external_lex_state = 10}, - [242] = {.lex_state = 188, .external_lex_state = 10}, - [243] = {.lex_state = 163}, - [244] = {.lex_state = 188, .external_lex_state = 10}, - [245] = {.lex_state = 188, .external_lex_state = 10}, - [246] = {.lex_state = 188, .external_lex_state = 10}, - [247] = {.lex_state = 188, .external_lex_state = 4}, - [248] = {.lex_state = 103}, - [249] = {.lex_state = 103}, - [250] = {.lex_state = 221, .external_lex_state = 16}, - [251] = {.lex_state = 230, .external_lex_state = 6}, - [252] = {.lex_state = 221, .external_lex_state = 16}, - [253] = {.lex_state = 221, .external_lex_state = 16}, + [239] = {.lex_state = 261, .external_lex_state = 2}, + [240] = {.lex_state = 257, .external_lex_state = 7}, + [241] = {.lex_state = 103}, + [242] = {.lex_state = 267, .external_lex_state = 2}, + [243] = {.lex_state = 141}, + [244] = {.lex_state = 189, .external_lex_state = 4}, + [245] = {.lex_state = 103}, + [246] = {.lex_state = 189, .external_lex_state = 10}, + [247] = {.lex_state = 189, .external_lex_state = 10}, + [248] = {.lex_state = 164}, + [249] = {.lex_state = 189, .external_lex_state = 10}, + [250] = {.lex_state = 189, .external_lex_state = 10}, + [251] = {.lex_state = 189, .external_lex_state = 10}, + [252] = {.lex_state = 189, .external_lex_state = 4}, + [253] = {.lex_state = 103}, [254] = {.lex_state = 103}, - [255] = {.lex_state = 239, .external_lex_state = 2}, - [256] = {.lex_state = 103}, - [257] = {.lex_state = 247, .external_lex_state = 2}, - [258] = {.lex_state = 103}, - [259] = {.lex_state = 239, .external_lex_state = 2}, - [260] = {.lex_state = 103}, - [261] = {.lex_state = 275, .external_lex_state = 21}, - [262] = {.lex_state = 277, .external_lex_state = 7}, - [263] = {.lex_state = 184, .external_lex_state = 9}, - [264] = {.lex_state = 103}, + [255] = {.lex_state = 226, .external_lex_state = 16}, + [256] = {.lex_state = 235, .external_lex_state = 6}, + [257] = {.lex_state = 226, .external_lex_state = 16}, + [258] = {.lex_state = 226, .external_lex_state = 16}, + [259] = {.lex_state = 103}, + [260] = {.lex_state = 241, .external_lex_state = 2}, + [261] = {.lex_state = 103}, + [262] = {.lex_state = 249, .external_lex_state = 2}, + [263] = {.lex_state = 103}, + [264] = {.lex_state = 241, .external_lex_state = 2}, [265] = {.lex_state = 103}, - [266] = {.lex_state = 103}, - [267] = {.lex_state = 191, .external_lex_state = 14}, - [268] = {.lex_state = 163}, - [269] = {.lex_state = 168}, - [270] = {.lex_state = 191, .external_lex_state = 14}, - [271] = {.lex_state = 173, .external_lex_state = 6}, - [272] = {.lex_state = 20, .external_lex_state = 2}, - [273] = {.lex_state = 20, .external_lex_state = 2}, - [274] = {.lex_state = 20, .external_lex_state = 2}, - [275] = {.lex_state = 103}, - [276] = {.lex_state = 191, .external_lex_state = 3}, - [277] = {.lex_state = 191, .external_lex_state = 10}, - [278] = {.lex_state = 163}, - [279] = {.lex_state = 168}, - [280] = {.lex_state = 191, .external_lex_state = 10}, - [281] = {.lex_state = 173, .external_lex_state = 6}, - [282] = {.lex_state = 20, .external_lex_state = 2}, - [283] = {.lex_state = 20, .external_lex_state = 2}, - [284] = {.lex_state = 20, .external_lex_state = 2}, - [285] = {.lex_state = 191, .external_lex_state = 4}, - [286] = {.lex_state = 141}, - [287] = {.lex_state = 182, .external_lex_state = 5}, - [288] = {.lex_state = 182, .external_lex_state = 5}, - [289] = {.lex_state = 163}, - [290] = {.lex_state = 182, .external_lex_state = 5}, - [291] = {.lex_state = 182, .external_lex_state = 5}, - [292] = {.lex_state = 182, .external_lex_state = 5}, - [293] = {.lex_state = 103}, - [294] = {.lex_state = 221, .external_lex_state = 16}, - [295] = {.lex_state = 230, .external_lex_state = 6}, - [296] = {.lex_state = 221, .external_lex_state = 16}, - [297] = {.lex_state = 221, .external_lex_state = 16}, - [298] = {.lex_state = 103}, - [299] = {.lex_state = 239, .external_lex_state = 2}, + [266] = {.lex_state = 277, .external_lex_state = 21}, + [267] = {.lex_state = 279, .external_lex_state = 7}, + [268] = {.lex_state = 185, .external_lex_state = 9}, + [269] = {.lex_state = 103}, + [270] = {.lex_state = 103}, + [271] = {.lex_state = 217, .external_lex_state = 12}, + [272] = {.lex_state = 219}, + [273] = {.lex_state = 103}, + [274] = {.lex_state = 192, .external_lex_state = 14}, + [275] = {.lex_state = 164}, + [276] = {.lex_state = 169}, + [277] = {.lex_state = 192, .external_lex_state = 14}, + [278] = {.lex_state = 174, .external_lex_state = 6}, + [279] = {.lex_state = 20, .external_lex_state = 2}, + [280] = {.lex_state = 20, .external_lex_state = 2}, + [281] = {.lex_state = 20, .external_lex_state = 2}, + [282] = {.lex_state = 103}, + [283] = {.lex_state = 192, .external_lex_state = 3}, + [284] = {.lex_state = 192, .external_lex_state = 10}, + [285] = {.lex_state = 164}, + [286] = {.lex_state = 169}, + [287] = {.lex_state = 192, .external_lex_state = 10}, + [288] = {.lex_state = 174, .external_lex_state = 6}, + [289] = {.lex_state = 20, .external_lex_state = 2}, + [290] = {.lex_state = 20, .external_lex_state = 2}, + [291] = {.lex_state = 20, .external_lex_state = 2}, + [292] = {.lex_state = 192, .external_lex_state = 4}, + [293] = {.lex_state = 141}, + [294] = {.lex_state = 183, .external_lex_state = 5}, + [295] = {.lex_state = 183, .external_lex_state = 5}, + [296] = {.lex_state = 164}, + [297] = {.lex_state = 183, .external_lex_state = 5}, + [298] = {.lex_state = 183, .external_lex_state = 5}, + [299] = {.lex_state = 183, .external_lex_state = 5}, [300] = {.lex_state = 103}, - [301] = {.lex_state = 247, .external_lex_state = 2}, - [302] = {.lex_state = 103}, - [303] = {.lex_state = 239, .external_lex_state = 2}, - [304] = {.lex_state = 103}, - [305] = {.lex_state = 20, .external_lex_state = 2}, - [306] = {.lex_state = 191, .external_lex_state = 4}, - [307] = {.lex_state = 280, .external_lex_state = 2}, - [308] = {.lex_state = 20, .external_lex_state = 2}, - [309] = {.lex_state = 20}, - [310] = {.lex_state = 141}, - [311] = {.lex_state = 141}, - [312] = {.lex_state = 182, .external_lex_state = 5}, - [313] = {.lex_state = 182, .external_lex_state = 5}, - [314] = {.lex_state = 182, .external_lex_state = 7}, - [315] = {.lex_state = 251, .external_lex_state = 7}, - [316] = {.lex_state = 191, .external_lex_state = 4}, - [317] = {.lex_state = 186, .external_lex_state = 8}, - [318] = {.lex_state = 20, .external_lex_state = 2}, - [319] = {.lex_state = 182, .external_lex_state = 7}, - [320] = {.lex_state = 212, .external_lex_state = 11}, - [321] = {.lex_state = 212, .external_lex_state = 11}, - [322] = {.lex_state = 212, .external_lex_state = 12}, - [323] = {.lex_state = 141}, - [324] = {.lex_state = 212, .external_lex_state = 11}, - [325] = {.lex_state = 212, .external_lex_state = 11}, - [326] = {.lex_state = 163}, - [327] = {.lex_state = 212, .external_lex_state = 11}, - [328] = {.lex_state = 212, .external_lex_state = 11}, - [329] = {.lex_state = 212, .external_lex_state = 11}, - [330] = {.lex_state = 103}, - [331] = {.lex_state = 221, .external_lex_state = 16}, - [332] = {.lex_state = 230, .external_lex_state = 6}, - [333] = {.lex_state = 221, .external_lex_state = 16}, - [334] = {.lex_state = 221, .external_lex_state = 16}, - [335] = {.lex_state = 103}, - [336] = {.lex_state = 239, .external_lex_state = 2}, - [337] = {.lex_state = 103}, - [338] = {.lex_state = 247, .external_lex_state = 2}, - [339] = {.lex_state = 103}, - [340] = {.lex_state = 239, .external_lex_state = 2}, - [341] = {.lex_state = 191, .external_lex_state = 4}, - [342] = {.lex_state = 212, .external_lex_state = 12}, - [343] = {.lex_state = 214, .external_lex_state = 13}, - [344] = {.lex_state = 214, .external_lex_state = 13}, - [345] = {.lex_state = 214}, - [346] = {.lex_state = 141}, - [347] = {.lex_state = 214, .external_lex_state = 13}, - [348] = {.lex_state = 214, .external_lex_state = 13}, - [349] = {.lex_state = 163}, - [350] = {.lex_state = 214, .external_lex_state = 13}, - [351] = {.lex_state = 214, .external_lex_state = 13}, - [352] = {.lex_state = 214, .external_lex_state = 13}, - [353] = {.lex_state = 103}, - [354] = {.lex_state = 221, .external_lex_state = 16}, - [355] = {.lex_state = 230, .external_lex_state = 6}, - [356] = {.lex_state = 221, .external_lex_state = 16}, - [357] = {.lex_state = 221, .external_lex_state = 16}, - [358] = {.lex_state = 103}, - [359] = {.lex_state = 239, .external_lex_state = 2}, - [360] = {.lex_state = 103}, - [361] = {.lex_state = 247, .external_lex_state = 2}, - [362] = {.lex_state = 103}, - [363] = {.lex_state = 239, .external_lex_state = 2}, - [364] = {.lex_state = 214}, - [365] = {.lex_state = 184, .external_lex_state = 9}, - [366] = {.lex_state = 191, .external_lex_state = 3}, - [367] = {.lex_state = 141}, - [368] = {.lex_state = 149, .external_lex_state = 14}, - [369] = {.lex_state = 149, .external_lex_state = 14}, - [370] = {.lex_state = 163}, - [371] = {.lex_state = 149, .external_lex_state = 14}, - [372] = {.lex_state = 149, .external_lex_state = 14}, - [373] = {.lex_state = 149, .external_lex_state = 14}, - [374] = {.lex_state = 103}, - [375] = {.lex_state = 221, .external_lex_state = 16}, - [376] = {.lex_state = 230, .external_lex_state = 6}, - [377] = {.lex_state = 221, .external_lex_state = 16}, - [378] = {.lex_state = 221, .external_lex_state = 16}, - [379] = {.lex_state = 103}, - [380] = {.lex_state = 239, .external_lex_state = 2}, - [381] = {.lex_state = 103}, - [382] = {.lex_state = 247, .external_lex_state = 2}, - [383] = {.lex_state = 103}, - [384] = {.lex_state = 239, .external_lex_state = 2}, - [385] = {.lex_state = 149, .external_lex_state = 3}, - [386] = {.lex_state = 141}, - [387] = {.lex_state = 149, .external_lex_state = 10}, - [388] = {.lex_state = 149, .external_lex_state = 10}, - [389] = {.lex_state = 163}, - [390] = {.lex_state = 149, .external_lex_state = 10}, - [391] = {.lex_state = 149, .external_lex_state = 10}, - [392] = {.lex_state = 149, .external_lex_state = 10}, - [393] = {.lex_state = 103}, - [394] = {.lex_state = 221, .external_lex_state = 16}, - [395] = {.lex_state = 230, .external_lex_state = 6}, - [396] = {.lex_state = 221, .external_lex_state = 16}, - [397] = {.lex_state = 221, .external_lex_state = 16}, - [398] = {.lex_state = 103}, - [399] = {.lex_state = 239, .external_lex_state = 2}, - [400] = {.lex_state = 103}, - [401] = {.lex_state = 247, .external_lex_state = 2}, - [402] = {.lex_state = 103}, - [403] = {.lex_state = 239, .external_lex_state = 2}, - [404] = {.lex_state = 149, .external_lex_state = 4}, - [405] = {.lex_state = 141}, - [406] = {.lex_state = 141, .external_lex_state = 15}, - [407] = {.lex_state = 141, .external_lex_state = 15}, - [408] = {.lex_state = 163}, - [409] = {.lex_state = 141, .external_lex_state = 15}, - [410] = {.lex_state = 141, .external_lex_state = 15}, - [411] = {.lex_state = 141, .external_lex_state = 15}, - [412] = {.lex_state = 103}, - [413] = {.lex_state = 221, .external_lex_state = 16}, - [414] = {.lex_state = 230, .external_lex_state = 6}, - [415] = {.lex_state = 221, .external_lex_state = 16}, - [416] = {.lex_state = 221, .external_lex_state = 16}, - [417] = {.lex_state = 103}, - [418] = {.lex_state = 239, .external_lex_state = 2}, - [419] = {.lex_state = 103}, - [420] = {.lex_state = 247, .external_lex_state = 2}, - [421] = {.lex_state = 103}, - [422] = {.lex_state = 239, .external_lex_state = 2}, - [423] = {.lex_state = 156, .external_lex_state = 5}, - [424] = {.lex_state = 156, .external_lex_state = 5}, - [425] = {.lex_state = 163, .external_lex_state = 13}, - [426] = {.lex_state = 163, .external_lex_state = 13}, - [427] = {.lex_state = 163, .external_lex_state = 13}, - [428] = {.lex_state = 163}, + [301] = {.lex_state = 226, .external_lex_state = 16}, + [302] = {.lex_state = 235, .external_lex_state = 6}, + [303] = {.lex_state = 226, .external_lex_state = 16}, + [304] = {.lex_state = 226, .external_lex_state = 16}, + [305] = {.lex_state = 103}, + [306] = {.lex_state = 241, .external_lex_state = 2}, + [307] = {.lex_state = 103}, + [308] = {.lex_state = 249, .external_lex_state = 2}, + [309] = {.lex_state = 103}, + [310] = {.lex_state = 241, .external_lex_state = 2}, + [311] = {.lex_state = 103}, + [312] = {.lex_state = 20, .external_lex_state = 2}, + [313] = {.lex_state = 192, .external_lex_state = 4}, + [314] = {.lex_state = 282, .external_lex_state = 2}, + [315] = {.lex_state = 20, .external_lex_state = 2}, + [316] = {.lex_state = 20}, + [317] = {.lex_state = 196}, + [318] = {.lex_state = 141}, + [319] = {.lex_state = 141}, + [320] = {.lex_state = 183, .external_lex_state = 5}, + [321] = {.lex_state = 183, .external_lex_state = 5}, + [322] = {.lex_state = 253, .external_lex_state = 7}, + [323] = {.lex_state = 183, .external_lex_state = 7}, + [324] = {.lex_state = 192, .external_lex_state = 4}, + [325] = {.lex_state = 187, .external_lex_state = 8}, + [326] = {.lex_state = 20, .external_lex_state = 2}, + [327] = {.lex_state = 183, .external_lex_state = 7}, + [328] = {.lex_state = 217, .external_lex_state = 11}, + [329] = {.lex_state = 217, .external_lex_state = 11}, + [330] = {.lex_state = 217, .external_lex_state = 12}, + [331] = {.lex_state = 141}, + [332] = {.lex_state = 217, .external_lex_state = 11}, + [333] = {.lex_state = 217, .external_lex_state = 11}, + [334] = {.lex_state = 164}, + [335] = {.lex_state = 217, .external_lex_state = 11}, + [336] = {.lex_state = 217, .external_lex_state = 11}, + [337] = {.lex_state = 217, .external_lex_state = 11}, + [338] = {.lex_state = 103}, + [339] = {.lex_state = 226, .external_lex_state = 16}, + [340] = {.lex_state = 235, .external_lex_state = 6}, + [341] = {.lex_state = 226, .external_lex_state = 16}, + [342] = {.lex_state = 226, .external_lex_state = 16}, + [343] = {.lex_state = 103}, + [344] = {.lex_state = 241, .external_lex_state = 2}, + [345] = {.lex_state = 103}, + [346] = {.lex_state = 249, .external_lex_state = 2}, + [347] = {.lex_state = 103}, + [348] = {.lex_state = 241, .external_lex_state = 2}, + [349] = {.lex_state = 257, .external_lex_state = 7}, + [350] = {.lex_state = 217, .external_lex_state = 12}, + [351] = {.lex_state = 219, .external_lex_state = 13}, + [352] = {.lex_state = 219, .external_lex_state = 13}, + [353] = {.lex_state = 219}, + [354] = {.lex_state = 141}, + [355] = {.lex_state = 219, .external_lex_state = 13}, + [356] = {.lex_state = 219, .external_lex_state = 13}, + [357] = {.lex_state = 164}, + [358] = {.lex_state = 219, .external_lex_state = 13}, + [359] = {.lex_state = 219, .external_lex_state = 13}, + [360] = {.lex_state = 219, .external_lex_state = 13}, + [361] = {.lex_state = 103}, + [362] = {.lex_state = 226, .external_lex_state = 16}, + [363] = {.lex_state = 235, .external_lex_state = 6}, + [364] = {.lex_state = 226, .external_lex_state = 16}, + [365] = {.lex_state = 226, .external_lex_state = 16}, + [366] = {.lex_state = 103}, + [367] = {.lex_state = 241, .external_lex_state = 2}, + [368] = {.lex_state = 103}, + [369] = {.lex_state = 249, .external_lex_state = 2}, + [370] = {.lex_state = 103}, + [371] = {.lex_state = 241, .external_lex_state = 2}, + [372] = {.lex_state = 219}, + [373] = {.lex_state = 185, .external_lex_state = 9}, + [374] = {.lex_state = 192, .external_lex_state = 3}, + [375] = {.lex_state = 141}, + [376] = {.lex_state = 152, .external_lex_state = 14}, + [377] = {.lex_state = 152, .external_lex_state = 14}, + [378] = {.lex_state = 164}, + [379] = {.lex_state = 152, .external_lex_state = 14}, + [380] = {.lex_state = 152, .external_lex_state = 14}, + [381] = {.lex_state = 152, .external_lex_state = 14}, + [382] = {.lex_state = 103}, + [383] = {.lex_state = 226, .external_lex_state = 16}, + [384] = {.lex_state = 235, .external_lex_state = 6}, + [385] = {.lex_state = 226, .external_lex_state = 16}, + [386] = {.lex_state = 226, .external_lex_state = 16}, + [387] = {.lex_state = 103}, + [388] = {.lex_state = 241, .external_lex_state = 2}, + [389] = {.lex_state = 103}, + [390] = {.lex_state = 249, .external_lex_state = 2}, + [391] = {.lex_state = 103}, + [392] = {.lex_state = 241, .external_lex_state = 2}, + [393] = {.lex_state = 152, .external_lex_state = 3}, + [394] = {.lex_state = 141}, + [395] = {.lex_state = 152, .external_lex_state = 10}, + [396] = {.lex_state = 152, .external_lex_state = 10}, + [397] = {.lex_state = 164}, + [398] = {.lex_state = 152, .external_lex_state = 10}, + [399] = {.lex_state = 152, .external_lex_state = 10}, + [400] = {.lex_state = 152, .external_lex_state = 10}, + [401] = {.lex_state = 103}, + [402] = {.lex_state = 226, .external_lex_state = 16}, + [403] = {.lex_state = 235, .external_lex_state = 6}, + [404] = {.lex_state = 226, .external_lex_state = 16}, + [405] = {.lex_state = 226, .external_lex_state = 16}, + [406] = {.lex_state = 103}, + [407] = {.lex_state = 241, .external_lex_state = 2}, + [408] = {.lex_state = 103}, + [409] = {.lex_state = 249, .external_lex_state = 2}, + [410] = {.lex_state = 103}, + [411] = {.lex_state = 241, .external_lex_state = 2}, + [412] = {.lex_state = 152, .external_lex_state = 4}, + [413] = {.lex_state = 141}, + [414] = {.lex_state = 141, .external_lex_state = 15}, + [415] = {.lex_state = 141, .external_lex_state = 15}, + [416] = {.lex_state = 164}, + [417] = {.lex_state = 141, .external_lex_state = 15}, + [418] = {.lex_state = 141, .external_lex_state = 15}, + [419] = {.lex_state = 141, .external_lex_state = 15}, + [420] = {.lex_state = 103}, + [421] = {.lex_state = 226, .external_lex_state = 16}, + [422] = {.lex_state = 235, .external_lex_state = 6}, + [423] = {.lex_state = 226, .external_lex_state = 16}, + [424] = {.lex_state = 226, .external_lex_state = 16}, + [425] = {.lex_state = 103}, + [426] = {.lex_state = 241, .external_lex_state = 2}, + [427] = {.lex_state = 103}, + [428] = {.lex_state = 249, .external_lex_state = 2}, [429] = {.lex_state = 103}, - [430] = {.lex_state = 221, .external_lex_state = 16}, - [431] = {.lex_state = 230, .external_lex_state = 6}, - [432] = {.lex_state = 221, .external_lex_state = 16}, - [433] = {.lex_state = 221, .external_lex_state = 16}, - [434] = {.lex_state = 103}, - [435] = {.lex_state = 239, .external_lex_state = 2}, - [436] = {.lex_state = 103}, - [437] = {.lex_state = 247, .external_lex_state = 2}, - [438] = {.lex_state = 156, .external_lex_state = 5}, - [439] = {.lex_state = 163}, - [440] = {.lex_state = 141}, - [441] = {.lex_state = 282, .external_lex_state = 16}, - [442] = {.lex_state = 156, .external_lex_state = 5}, - [443] = {.lex_state = 221, .external_lex_state = 16}, - [444] = {.lex_state = 221, .external_lex_state = 22}, - [445] = {.lex_state = 163}, - [446] = {.lex_state = 168}, - [447] = {.lex_state = 221, .external_lex_state = 22}, - [448] = {.lex_state = 173, .external_lex_state = 6}, - [449] = {.lex_state = 20, .external_lex_state = 2}, - [450] = {.lex_state = 20, .external_lex_state = 2}, - [451] = {.lex_state = 20, .external_lex_state = 2}, - [452] = {.lex_state = 221, .external_lex_state = 16}, - [453] = {.lex_state = 103}, - [454] = {.lex_state = 221, .external_lex_state = 16}, - [455] = {.lex_state = 221, .external_lex_state = 16}, - [456] = {.lex_state = 221, .external_lex_state = 16}, - [457] = {.lex_state = 156, .external_lex_state = 5}, - [458] = {.lex_state = 221, .external_lex_state = 16}, - [459] = {.lex_state = 156, .external_lex_state = 5}, - [460] = {.lex_state = 221, .external_lex_state = 16}, - [461] = {.lex_state = 184, .external_lex_state = 9}, - [462] = {.lex_state = 239, .external_lex_state = 2}, - [463] = {.lex_state = 103}, - [464] = {.lex_state = 103}, - [465] = {.lex_state = 103}, - [466] = {.lex_state = 188, .external_lex_state = 10}, - [467] = {.lex_state = 188, .external_lex_state = 10}, - [468] = {.lex_state = 188, .external_lex_state = 4}, - [469] = {.lex_state = 103}, - [470] = {.lex_state = 191, .external_lex_state = 4}, - [471] = {.lex_state = 186, .external_lex_state = 8}, - [472] = {.lex_state = 20, .external_lex_state = 2}, - [473] = {.lex_state = 212, .external_lex_state = 12}, - [474] = {.lex_state = 214}, + [430] = {.lex_state = 241, .external_lex_state = 2}, + [431] = {.lex_state = 161, .external_lex_state = 5}, + [432] = {.lex_state = 161, .external_lex_state = 5}, + [433] = {.lex_state = 164, .external_lex_state = 13}, + [434] = {.lex_state = 164, .external_lex_state = 13}, + [435] = {.lex_state = 164, .external_lex_state = 13}, + [436] = {.lex_state = 164}, + [437] = {.lex_state = 103}, + [438] = {.lex_state = 226, .external_lex_state = 16}, + [439] = {.lex_state = 235, .external_lex_state = 6}, + [440] = {.lex_state = 226, .external_lex_state = 16}, + [441] = {.lex_state = 226, .external_lex_state = 16}, + [442] = {.lex_state = 103}, + [443] = {.lex_state = 241, .external_lex_state = 2}, + [444] = {.lex_state = 103}, + [445] = {.lex_state = 249, .external_lex_state = 2}, + [446] = {.lex_state = 161, .external_lex_state = 5}, + [447] = {.lex_state = 164}, + [448] = {.lex_state = 141}, + [449] = {.lex_state = 284, .external_lex_state = 16}, + [450] = {.lex_state = 161, .external_lex_state = 5}, + [451] = {.lex_state = 286, .external_lex_state = 16}, + [452] = {.lex_state = 286, .external_lex_state = 22}, + [453] = {.lex_state = 164}, + [454] = {.lex_state = 169}, + [455] = {.lex_state = 286, .external_lex_state = 22}, + [456] = {.lex_state = 174, .external_lex_state = 6}, + [457] = {.lex_state = 288}, + [458] = {.lex_state = 20, .external_lex_state = 2}, + [459] = {.lex_state = 20, .external_lex_state = 2}, + [460] = {.lex_state = 20, .external_lex_state = 2}, + [461] = {.lex_state = 286, .external_lex_state = 16}, + [462] = {.lex_state = 103}, + [463] = {.lex_state = 226, .external_lex_state = 16}, + [464] = {.lex_state = 226, .external_lex_state = 16}, + [465] = {.lex_state = 226, .external_lex_state = 16}, + [466] = {.lex_state = 161, .external_lex_state = 5}, + [467] = {.lex_state = 288}, + [468] = {.lex_state = 286, .external_lex_state = 16}, + [469] = {.lex_state = 161, .external_lex_state = 5}, + [470] = {.lex_state = 288}, + [471] = {.lex_state = 286, .external_lex_state = 16}, + [472] = {.lex_state = 185, .external_lex_state = 9}, + [473] = {.lex_state = 241, .external_lex_state = 2}, + [474] = {.lex_state = 103}, [475] = {.lex_state = 103}, - [476] = {.lex_state = 232, .external_lex_state = 23}, - [477] = {.lex_state = 163}, - [478] = {.lex_state = 168}, - [479] = {.lex_state = 232, .external_lex_state = 23}, - [480] = {.lex_state = 173, .external_lex_state = 6}, - [481] = {.lex_state = 20, .external_lex_state = 2}, - [482] = {.lex_state = 20, .external_lex_state = 2}, + [476] = {.lex_state = 103}, + [477] = {.lex_state = 189, .external_lex_state = 10}, + [478] = {.lex_state = 189, .external_lex_state = 10}, + [479] = {.lex_state = 189, .external_lex_state = 4}, + [480] = {.lex_state = 103}, + [481] = {.lex_state = 192, .external_lex_state = 4}, + [482] = {.lex_state = 187, .external_lex_state = 8}, [483] = {.lex_state = 20, .external_lex_state = 2}, - [484] = {.lex_state = 232, .external_lex_state = 6}, - [485] = {.lex_state = 232, .external_lex_state = 6}, + [484] = {.lex_state = 217, .external_lex_state = 12}, + [485] = {.lex_state = 219}, [486] = {.lex_state = 103}, - [487] = {.lex_state = 232, .external_lex_state = 6}, - [488] = {.lex_state = 232, .external_lex_state = 13}, - [489] = {.lex_state = 163}, - [490] = {.lex_state = 168}, - [491] = {.lex_state = 232, .external_lex_state = 13}, - [492] = {.lex_state = 173, .external_lex_state = 6}, + [487] = {.lex_state = 237, .external_lex_state = 23}, + [488] = {.lex_state = 164}, + [489] = {.lex_state = 169}, + [490] = {.lex_state = 237, .external_lex_state = 23}, + [491] = {.lex_state = 174, .external_lex_state = 6}, + [492] = {.lex_state = 20, .external_lex_state = 2}, [493] = {.lex_state = 20, .external_lex_state = 2}, [494] = {.lex_state = 20, .external_lex_state = 2}, - [495] = {.lex_state = 20, .external_lex_state = 2}, - [496] = {.lex_state = 232}, - [497] = {.lex_state = 232}, - [498] = {.lex_state = 232}, - [499] = {.lex_state = 141}, - [500] = {.lex_state = 234, .external_lex_state = 17}, - [501] = {.lex_state = 234, .external_lex_state = 17}, - [502] = {.lex_state = 163}, - [503] = {.lex_state = 234, .external_lex_state = 17}, - [504] = {.lex_state = 234, .external_lex_state = 17}, - [505] = {.lex_state = 234, .external_lex_state = 17}, - [506] = {.lex_state = 103}, - [507] = {.lex_state = 221, .external_lex_state = 16}, - [508] = {.lex_state = 230, .external_lex_state = 6}, - [509] = {.lex_state = 221, .external_lex_state = 16}, - [510] = {.lex_state = 221, .external_lex_state = 16}, - [511] = {.lex_state = 103}, - [512] = {.lex_state = 239, .external_lex_state = 2}, - [513] = {.lex_state = 103}, - [514] = {.lex_state = 247, .external_lex_state = 2}, - [515] = {.lex_state = 103}, - [516] = {.lex_state = 239, .external_lex_state = 2}, + [495] = {.lex_state = 237, .external_lex_state = 6}, + [496] = {.lex_state = 237, .external_lex_state = 6}, + [497] = {.lex_state = 103}, + [498] = {.lex_state = 237, .external_lex_state = 6}, + [499] = {.lex_state = 237, .external_lex_state = 13}, + [500] = {.lex_state = 164}, + [501] = {.lex_state = 169}, + [502] = {.lex_state = 237, .external_lex_state = 13}, + [503] = {.lex_state = 174, .external_lex_state = 6}, + [504] = {.lex_state = 20, .external_lex_state = 2}, + [505] = {.lex_state = 20, .external_lex_state = 2}, + [506] = {.lex_state = 20, .external_lex_state = 2}, + [507] = {.lex_state = 237}, + [508] = {.lex_state = 237}, + [509] = {.lex_state = 237}, + [510] = {.lex_state = 141}, + [511] = {.lex_state = 143, .external_lex_state = 17}, + [512] = {.lex_state = 143, .external_lex_state = 17}, + [513] = {.lex_state = 164}, + [514] = {.lex_state = 143, .external_lex_state = 17}, + [515] = {.lex_state = 143, .external_lex_state = 17}, + [516] = {.lex_state = 143, .external_lex_state = 17}, [517] = {.lex_state = 103}, - [518] = {.lex_state = 20, .external_lex_state = 2}, - [519] = {.lex_state = 156, .external_lex_state = 5}, - [520] = {.lex_state = 20, .external_lex_state = 2}, - [521] = {.lex_state = 20}, - [522] = {.lex_state = 141}, - [523] = {.lex_state = 249, .external_lex_state = 19}, - [524] = {.lex_state = 141}, - [525] = {.lex_state = 234, .external_lex_state = 17}, - [526] = {.lex_state = 234, .external_lex_state = 17}, - [527] = {.lex_state = 284, .external_lex_state = 18}, - [528] = {.lex_state = 234, .external_lex_state = 18}, - [529] = {.lex_state = 234, .external_lex_state = 18}, - [530] = {.lex_state = 286, .external_lex_state = 18}, - [531] = {.lex_state = 234, .external_lex_state = 18}, - [532] = {.lex_state = 184, .external_lex_state = 9}, - [533] = {.lex_state = 103}, - [534] = {.lex_state = 103}, - [535] = {.lex_state = 103}, - [536] = {.lex_state = 241, .external_lex_state = 23}, - [537] = {.lex_state = 163}, - [538] = {.lex_state = 168}, - [539] = {.lex_state = 241, .external_lex_state = 23}, - [540] = {.lex_state = 173, .external_lex_state = 6}, - [541] = {.lex_state = 20, .external_lex_state = 2}, - [542] = {.lex_state = 20, .external_lex_state = 2}, - [543] = {.lex_state = 20, .external_lex_state = 2}, - [544] = {.lex_state = 103}, - [545] = {.lex_state = 241, .external_lex_state = 6}, - [546] = {.lex_state = 241, .external_lex_state = 13}, - [547] = {.lex_state = 163}, - [548] = {.lex_state = 168}, - [549] = {.lex_state = 241, .external_lex_state = 13}, - [550] = {.lex_state = 173, .external_lex_state = 6}, - [551] = {.lex_state = 20, .external_lex_state = 2}, - [552] = {.lex_state = 20, .external_lex_state = 2}, - [553] = {.lex_state = 20, .external_lex_state = 2}, - [554] = {.lex_state = 232}, - [555] = {.lex_state = 141}, - [556] = {.lex_state = 243, .external_lex_state = 17}, - [557] = {.lex_state = 243, .external_lex_state = 17}, - [558] = {.lex_state = 163}, - [559] = {.lex_state = 243, .external_lex_state = 17}, - [560] = {.lex_state = 243, .external_lex_state = 17}, - [561] = {.lex_state = 243, .external_lex_state = 17}, - [562] = {.lex_state = 103}, - [563] = {.lex_state = 221, .external_lex_state = 16}, - [564] = {.lex_state = 230, .external_lex_state = 6}, - [565] = {.lex_state = 221, .external_lex_state = 16}, - [566] = {.lex_state = 221, .external_lex_state = 16}, - [567] = {.lex_state = 103}, - [568] = {.lex_state = 239, .external_lex_state = 2}, - [569] = {.lex_state = 103}, - [570] = {.lex_state = 247, .external_lex_state = 2}, - [571] = {.lex_state = 103}, - [572] = {.lex_state = 239, .external_lex_state = 2}, - [573] = {.lex_state = 103}, - [574] = {.lex_state = 20, .external_lex_state = 2}, - [575] = {.lex_state = 20, .external_lex_state = 2}, - [576] = {.lex_state = 20}, - [577] = {.lex_state = 141}, - [578] = {.lex_state = 141}, - [579] = {.lex_state = 243, .external_lex_state = 17}, - [580] = {.lex_state = 243, .external_lex_state = 17}, - [581] = {.lex_state = 243, .external_lex_state = 18}, - [582] = {.lex_state = 288, .external_lex_state = 18}, - [583] = {.lex_state = 243, .external_lex_state = 18}, - [584] = {.lex_state = 156, .external_lex_state = 5}, + [518] = {.lex_state = 226, .external_lex_state = 16}, + [519] = {.lex_state = 235, .external_lex_state = 6}, + [520] = {.lex_state = 226, .external_lex_state = 16}, + [521] = {.lex_state = 226, .external_lex_state = 16}, + [522] = {.lex_state = 103}, + [523] = {.lex_state = 241, .external_lex_state = 2}, + [524] = {.lex_state = 103}, + [525] = {.lex_state = 249, .external_lex_state = 2}, + [526] = {.lex_state = 103}, + [527] = {.lex_state = 241, .external_lex_state = 2}, + [528] = {.lex_state = 103}, + [529] = {.lex_state = 20, .external_lex_state = 2}, + [530] = {.lex_state = 161, .external_lex_state = 5}, + [531] = {.lex_state = 20, .external_lex_state = 2}, + [532] = {.lex_state = 20}, + [533] = {.lex_state = 196}, + [534] = {.lex_state = 141}, + [535] = {.lex_state = 251, .external_lex_state = 19}, + [536] = {.lex_state = 141}, + [537] = {.lex_state = 143, .external_lex_state = 17}, + [538] = {.lex_state = 143, .external_lex_state = 17}, + [539] = {.lex_state = 293, .external_lex_state = 18}, + [540] = {.lex_state = 143, .external_lex_state = 18}, + [541] = {.lex_state = 295, .external_lex_state = 18}, + [542] = {.lex_state = 143, .external_lex_state = 18}, + [543] = {.lex_state = 143, .external_lex_state = 18}, + [544] = {.lex_state = 185, .external_lex_state = 9}, + [545] = {.lex_state = 103}, + [546] = {.lex_state = 103}, + [547] = {.lex_state = 217, .external_lex_state = 12}, + [548] = {.lex_state = 219}, + [549] = {.lex_state = 103}, + [550] = {.lex_state = 243, .external_lex_state = 23}, + [551] = {.lex_state = 164}, + [552] = {.lex_state = 169}, + [553] = {.lex_state = 243, .external_lex_state = 23}, + [554] = {.lex_state = 174, .external_lex_state = 6}, + [555] = {.lex_state = 20, .external_lex_state = 2}, + [556] = {.lex_state = 20, .external_lex_state = 2}, + [557] = {.lex_state = 20, .external_lex_state = 2}, + [558] = {.lex_state = 103}, + [559] = {.lex_state = 243, .external_lex_state = 6}, + [560] = {.lex_state = 243, .external_lex_state = 13}, + [561] = {.lex_state = 164}, + [562] = {.lex_state = 169}, + [563] = {.lex_state = 243, .external_lex_state = 13}, + [564] = {.lex_state = 174, .external_lex_state = 6}, + [565] = {.lex_state = 20, .external_lex_state = 2}, + [566] = {.lex_state = 20, .external_lex_state = 2}, + [567] = {.lex_state = 20, .external_lex_state = 2}, + [568] = {.lex_state = 237}, + [569] = {.lex_state = 141}, + [570] = {.lex_state = 245, .external_lex_state = 17}, + [571] = {.lex_state = 245, .external_lex_state = 17}, + [572] = {.lex_state = 164}, + [573] = {.lex_state = 245, .external_lex_state = 17}, + [574] = {.lex_state = 245, .external_lex_state = 17}, + [575] = {.lex_state = 245, .external_lex_state = 17}, + [576] = {.lex_state = 103}, + [577] = {.lex_state = 226, .external_lex_state = 16}, + [578] = {.lex_state = 235, .external_lex_state = 6}, + [579] = {.lex_state = 226, .external_lex_state = 16}, + [580] = {.lex_state = 226, .external_lex_state = 16}, + [581] = {.lex_state = 103}, + [582] = {.lex_state = 241, .external_lex_state = 2}, + [583] = {.lex_state = 103}, + [584] = {.lex_state = 249, .external_lex_state = 2}, [585] = {.lex_state = 103}, - [586] = {.lex_state = 191, .external_lex_state = 4}, - [587] = {.lex_state = 186, .external_lex_state = 8}, - [588] = {.lex_state = 149, .external_lex_state = 4}, - [589] = {.lex_state = 180, .external_lex_state = 8}, - [590] = {.lex_state = 141}, - [591] = {.lex_state = 255, .external_lex_state = 5}, - [592] = {.lex_state = 163}, - [593] = {.lex_state = 168}, - [594] = {.lex_state = 255, .external_lex_state = 5}, - [595] = {.lex_state = 173, .external_lex_state = 6}, - [596] = {.lex_state = 20, .external_lex_state = 2}, - [597] = {.lex_state = 20, .external_lex_state = 2}, - [598] = {.lex_state = 20, .external_lex_state = 2}, - [599] = {.lex_state = 251, .external_lex_state = 7}, - [600] = {.lex_state = 251, .external_lex_state = 7}, - [601] = {.lex_state = 290, .external_lex_state = 24}, - [602] = {.lex_state = 251, .external_lex_state = 7}, - [603] = {.lex_state = 255, .external_lex_state = 5}, - [604] = {.lex_state = 255, .external_lex_state = 5}, - [605] = {.lex_state = 251, .external_lex_state = 7}, - [606] = {.lex_state = 156, .external_lex_state = 7}, - [607] = {.lex_state = 255, .external_lex_state = 7}, - [608] = {.lex_state = 255, .external_lex_state = 7}, - [609] = {.lex_state = 184, .external_lex_state = 9}, - [610] = {.lex_state = 156, .external_lex_state = 7}, - [611] = {.lex_state = 293, .external_lex_state = 12}, - [612] = {.lex_state = 295, .external_lex_state = 13}, - [613] = {.lex_state = 257, .external_lex_state = 11}, - [614] = {.lex_state = 257, .external_lex_state = 11}, - [615] = {.lex_state = 163}, - [616] = {.lex_state = 257, .external_lex_state = 11}, - [617] = {.lex_state = 257, .external_lex_state = 11}, - [618] = {.lex_state = 257, .external_lex_state = 11}, - [619] = {.lex_state = 293, .external_lex_state = 12}, - [620] = {.lex_state = 295, .external_lex_state = 13}, - [621] = {.lex_state = 103}, - [622] = {.lex_state = 221, .external_lex_state = 16}, - [623] = {.lex_state = 230, .external_lex_state = 6}, - [624] = {.lex_state = 221, .external_lex_state = 16}, - [625] = {.lex_state = 221, .external_lex_state = 16}, - [626] = {.lex_state = 103}, - [627] = {.lex_state = 239, .external_lex_state = 2}, - [628] = {.lex_state = 103}, - [629] = {.lex_state = 247, .external_lex_state = 2}, - [630] = {.lex_state = 103}, - [631] = {.lex_state = 239, .external_lex_state = 2}, - [632] = {.lex_state = 103, .external_lex_state = 12}, - [633] = {.lex_state = 186, .external_lex_state = 8}, - [634] = {.lex_state = 297, .external_lex_state = 13}, - [635] = {.lex_state = 163}, - [636] = {.lex_state = 168}, - [637] = {.lex_state = 297, .external_lex_state = 13}, - [638] = {.lex_state = 173, .external_lex_state = 6}, - [639] = {.lex_state = 20, .external_lex_state = 2}, - [640] = {.lex_state = 20, .external_lex_state = 2}, - [641] = {.lex_state = 20, .external_lex_state = 2}, - [642] = {.lex_state = 234}, - [643] = {.lex_state = 234}, - [644] = {.lex_state = 141}, - [645] = {.lex_state = 180, .external_lex_state = 20}, - [646] = {.lex_state = 180, .external_lex_state = 20}, - [647] = {.lex_state = 163}, - [648] = {.lex_state = 180, .external_lex_state = 20}, - [649] = {.lex_state = 180, .external_lex_state = 20}, - [650] = {.lex_state = 180, .external_lex_state = 20}, - [651] = {.lex_state = 103}, - [652] = {.lex_state = 221, .external_lex_state = 16}, - [653] = {.lex_state = 230, .external_lex_state = 6}, - [654] = {.lex_state = 221, .external_lex_state = 16}, - [655] = {.lex_state = 221, .external_lex_state = 16}, - [656] = {.lex_state = 103}, - [657] = {.lex_state = 239, .external_lex_state = 2}, - [658] = {.lex_state = 103}, - [659] = {.lex_state = 247, .external_lex_state = 2}, - [660] = {.lex_state = 103}, - [661] = {.lex_state = 239, .external_lex_state = 2}, - [662] = {.lex_state = 299, .external_lex_state = 10}, - [663] = {.lex_state = 163}, - [664] = {.lex_state = 168}, - [665] = {.lex_state = 299, .external_lex_state = 10}, - [666] = {.lex_state = 173, .external_lex_state = 6}, - [667] = {.lex_state = 20, .external_lex_state = 2}, - [668] = {.lex_state = 20, .external_lex_state = 2}, - [669] = {.lex_state = 20, .external_lex_state = 2}, - [670] = {.lex_state = 299, .external_lex_state = 4}, - [671] = {.lex_state = 299, .external_lex_state = 4}, - [672] = {.lex_state = 251, .external_lex_state = 7}, - [673] = {.lex_state = 259, .external_lex_state = 2}, - [674] = {.lex_state = 149, .external_lex_state = 4}, - [675] = {.lex_state = 180, .external_lex_state = 8}, - [676] = {.lex_state = 259, .external_lex_state = 2}, - [677] = {.lex_state = 255, .external_lex_state = 7}, - [678] = {.lex_state = 191, .external_lex_state = 4}, - [679] = {.lex_state = 20, .external_lex_state = 2}, - [680] = {.lex_state = 301, .external_lex_state = 2}, - [681] = {.lex_state = 265, .external_lex_state = 2}, - [682] = {.lex_state = 149, .external_lex_state = 4}, - [683] = {.lex_state = 103}, - [684] = {.lex_state = 103}, - [685] = {.lex_state = 180, .external_lex_state = 8}, - [686] = {.lex_state = 265, .external_lex_state = 2}, - [687] = {.lex_state = 103}, - [688] = {.lex_state = 188, .external_lex_state = 10}, - [689] = {.lex_state = 303}, - [690] = {.lex_state = 188, .external_lex_state = 4}, - [691] = {.lex_state = 188, .external_lex_state = 10}, - [692] = {.lex_state = 188, .external_lex_state = 10}, - [693] = {.lex_state = 303}, - [694] = {.lex_state = 188, .external_lex_state = 4}, - [695] = {.lex_state = 282, .external_lex_state = 16}, - [696] = {.lex_state = 188, .external_lex_state = 10}, - [697] = {.lex_state = 221, .external_lex_state = 16}, - [698] = {.lex_state = 103}, - [699] = {.lex_state = 221, .external_lex_state = 16}, - [700] = {.lex_state = 221, .external_lex_state = 16}, - [701] = {.lex_state = 221, .external_lex_state = 16}, - [702] = {.lex_state = 188, .external_lex_state = 10}, - [703] = {.lex_state = 221, .external_lex_state = 16}, - [704] = {.lex_state = 188, .external_lex_state = 10}, - [705] = {.lex_state = 221, .external_lex_state = 16}, - [706] = {.lex_state = 188, .external_lex_state = 10}, - [707] = {.lex_state = 188, .external_lex_state = 10}, - [708] = {.lex_state = 103}, - [709] = {.lex_state = 309, .external_lex_state = 7}, - [710] = {.lex_state = 275, .external_lex_state = 21}, - [711] = {.lex_state = 149, .external_lex_state = 4}, - [712] = {.lex_state = 180, .external_lex_state = 8}, - [713] = {.lex_state = 275, .external_lex_state = 21}, - [714] = {.lex_state = 20}, - [715] = {.lex_state = 141}, - [716] = {.lex_state = 191, .external_lex_state = 4}, - [717] = {.lex_state = 186, .external_lex_state = 20}, - [718] = {.lex_state = 163}, - [719] = {.lex_state = 168}, - [720] = {.lex_state = 186, .external_lex_state = 20}, - [721] = {.lex_state = 173, .external_lex_state = 6}, - [722] = {.lex_state = 20, .external_lex_state = 2}, - [723] = {.lex_state = 20, .external_lex_state = 2}, - [724] = {.lex_state = 20, .external_lex_state = 2}, - [725] = {.lex_state = 251, .external_lex_state = 7}, - [726] = {.lex_state = 103}, - [727] = {.lex_state = 309, .external_lex_state = 7}, - [728] = {.lex_state = 184, .external_lex_state = 9}, - [729] = {.lex_state = 141}, - [730] = {.lex_state = 191, .external_lex_state = 14}, - [731] = {.lex_state = 191, .external_lex_state = 14}, - [732] = {.lex_state = 163}, - [733] = {.lex_state = 191, .external_lex_state = 14}, - [734] = {.lex_state = 191, .external_lex_state = 14}, - [735] = {.lex_state = 191, .external_lex_state = 14}, - [736] = {.lex_state = 103}, - [737] = {.lex_state = 221, .external_lex_state = 16}, - [738] = {.lex_state = 230, .external_lex_state = 6}, - [739] = {.lex_state = 221, .external_lex_state = 16}, - [740] = {.lex_state = 221, .external_lex_state = 16}, - [741] = {.lex_state = 103}, - [742] = {.lex_state = 239, .external_lex_state = 2}, - [743] = {.lex_state = 103}, - [744] = {.lex_state = 247, .external_lex_state = 2}, - [745] = {.lex_state = 103}, - [746] = {.lex_state = 239, .external_lex_state = 2}, - [747] = {.lex_state = 191, .external_lex_state = 3}, - [748] = {.lex_state = 141}, - [749] = {.lex_state = 191, .external_lex_state = 10}, - [750] = {.lex_state = 191, .external_lex_state = 10}, - [751] = {.lex_state = 163}, - [752] = {.lex_state = 191, .external_lex_state = 10}, - [753] = {.lex_state = 191, .external_lex_state = 10}, - [754] = {.lex_state = 191, .external_lex_state = 10}, - [755] = {.lex_state = 103}, - [756] = {.lex_state = 221, .external_lex_state = 16}, - [757] = {.lex_state = 230, .external_lex_state = 6}, - [758] = {.lex_state = 221, .external_lex_state = 16}, - [759] = {.lex_state = 221, .external_lex_state = 16}, - [760] = {.lex_state = 103}, - [761] = {.lex_state = 239, .external_lex_state = 2}, - [762] = {.lex_state = 103}, - [763] = {.lex_state = 247, .external_lex_state = 2}, - [764] = {.lex_state = 103}, - [765] = {.lex_state = 239, .external_lex_state = 2}, - [766] = {.lex_state = 191, .external_lex_state = 4}, - [767] = {.lex_state = 182, .external_lex_state = 5}, - [768] = {.lex_state = 182, .external_lex_state = 5}, - [769] = {.lex_state = 182, .external_lex_state = 5}, - [770] = {.lex_state = 282, .external_lex_state = 16}, - [771] = {.lex_state = 182, .external_lex_state = 5}, - [772] = {.lex_state = 221, .external_lex_state = 16}, - [773] = {.lex_state = 103}, - [774] = {.lex_state = 221, .external_lex_state = 16}, - [775] = {.lex_state = 221, .external_lex_state = 16}, - [776] = {.lex_state = 221, .external_lex_state = 16}, - [777] = {.lex_state = 182, .external_lex_state = 5}, - [778] = {.lex_state = 221, .external_lex_state = 16}, - [779] = {.lex_state = 182, .external_lex_state = 5}, - [780] = {.lex_state = 221, .external_lex_state = 16}, - [781] = {.lex_state = 182, .external_lex_state = 5}, - [782] = {.lex_state = 182, .external_lex_state = 5}, - [783] = {.lex_state = 103}, - [784] = {.lex_state = 191, .external_lex_state = 4}, - [785] = {.lex_state = 191, .external_lex_state = 4}, - [786] = {.lex_state = 186, .external_lex_state = 8}, - [787] = {.lex_state = 141}, - [788] = {.lex_state = 251, .external_lex_state = 5}, - [789] = {.lex_state = 163}, - [790] = {.lex_state = 168}, - [791] = {.lex_state = 251, .external_lex_state = 5}, - [792] = {.lex_state = 173, .external_lex_state = 6}, - [793] = {.lex_state = 20, .external_lex_state = 2}, - [794] = {.lex_state = 20, .external_lex_state = 2}, - [795] = {.lex_state = 20, .external_lex_state = 2}, - [796] = {.lex_state = 251, .external_lex_state = 5}, - [797] = {.lex_state = 251, .external_lex_state = 5}, - [798] = {.lex_state = 182, .external_lex_state = 7}, - [799] = {.lex_state = 251, .external_lex_state = 7}, - [800] = {.lex_state = 251, .external_lex_state = 7}, - [801] = {.lex_state = 280, .external_lex_state = 2}, - [802] = {.lex_state = 182, .external_lex_state = 7}, - [803] = {.lex_state = 212, .external_lex_state = 11}, - [804] = {.lex_state = 212, .external_lex_state = 11}, - [805] = {.lex_state = 212, .external_lex_state = 11}, - [806] = {.lex_state = 282, .external_lex_state = 16}, - [807] = {.lex_state = 212, .external_lex_state = 11}, - [808] = {.lex_state = 221, .external_lex_state = 16}, - [809] = {.lex_state = 103}, - [810] = {.lex_state = 221, .external_lex_state = 16}, - [811] = {.lex_state = 221, .external_lex_state = 16}, - [812] = {.lex_state = 221, .external_lex_state = 16}, - [813] = {.lex_state = 212, .external_lex_state = 11}, - [814] = {.lex_state = 221, .external_lex_state = 16}, - [815] = {.lex_state = 212, .external_lex_state = 11}, - [816] = {.lex_state = 221, .external_lex_state = 16}, - [817] = {.lex_state = 212, .external_lex_state = 11}, - [818] = {.lex_state = 212, .external_lex_state = 11}, - [819] = {.lex_state = 214, .external_lex_state = 13}, - [820] = {.lex_state = 214, .external_lex_state = 13}, - [821] = {.lex_state = 214, .external_lex_state = 13}, - [822] = {.lex_state = 282, .external_lex_state = 16}, - [823] = {.lex_state = 214, .external_lex_state = 13}, - [824] = {.lex_state = 221, .external_lex_state = 16}, - [825] = {.lex_state = 103}, - [826] = {.lex_state = 221, .external_lex_state = 16}, - [827] = {.lex_state = 221, .external_lex_state = 16}, - [828] = {.lex_state = 221, .external_lex_state = 16}, - [829] = {.lex_state = 214, .external_lex_state = 13}, - [830] = {.lex_state = 221, .external_lex_state = 16}, - [831] = {.lex_state = 214, .external_lex_state = 13}, - [832] = {.lex_state = 221, .external_lex_state = 16}, - [833] = {.lex_state = 214, .external_lex_state = 13}, - [834] = {.lex_state = 214, .external_lex_state = 13}, - [835] = {.lex_state = 191, .external_lex_state = 3}, - [836] = {.lex_state = 234}, - [837] = {.lex_state = 149, .external_lex_state = 14}, - [838] = {.lex_state = 149, .external_lex_state = 14}, - [839] = {.lex_state = 149, .external_lex_state = 14}, - [840] = {.lex_state = 149, .external_lex_state = 14}, - [841] = {.lex_state = 149, .external_lex_state = 14}, - [842] = {.lex_state = 282, .external_lex_state = 16}, - [843] = {.lex_state = 149, .external_lex_state = 14}, - [844] = {.lex_state = 221, .external_lex_state = 16}, - [845] = {.lex_state = 103}, - [846] = {.lex_state = 221, .external_lex_state = 16}, - [847] = {.lex_state = 221, .external_lex_state = 16}, - [848] = {.lex_state = 221, .external_lex_state = 16}, - [849] = {.lex_state = 149, .external_lex_state = 14}, - [850] = {.lex_state = 221, .external_lex_state = 16}, - [851] = {.lex_state = 149, .external_lex_state = 14}, - [852] = {.lex_state = 221, .external_lex_state = 16}, - [853] = {.lex_state = 149, .external_lex_state = 14}, - [854] = {.lex_state = 149, .external_lex_state = 14}, - [855] = {.lex_state = 149, .external_lex_state = 10}, - [856] = {.lex_state = 149, .external_lex_state = 10}, - [857] = {.lex_state = 149, .external_lex_state = 10}, - [858] = {.lex_state = 282, .external_lex_state = 16}, - [859] = {.lex_state = 149, .external_lex_state = 10}, - [860] = {.lex_state = 221, .external_lex_state = 16}, - [861] = {.lex_state = 103}, - [862] = {.lex_state = 221, .external_lex_state = 16}, - [863] = {.lex_state = 221, .external_lex_state = 16}, - [864] = {.lex_state = 221, .external_lex_state = 16}, - [865] = {.lex_state = 149, .external_lex_state = 10}, - [866] = {.lex_state = 221, .external_lex_state = 16}, - [867] = {.lex_state = 149, .external_lex_state = 10}, - [868] = {.lex_state = 221, .external_lex_state = 16}, - [869] = {.lex_state = 149, .external_lex_state = 10}, - [870] = {.lex_state = 149, .external_lex_state = 10}, - [871] = {.lex_state = 141, .external_lex_state = 15}, - [872] = {.lex_state = 141, .external_lex_state = 15}, - [873] = {.lex_state = 141, .external_lex_state = 15}, - [874] = {.lex_state = 282, .external_lex_state = 16}, - [875] = {.lex_state = 141, .external_lex_state = 15}, - [876] = {.lex_state = 221, .external_lex_state = 16}, - [877] = {.lex_state = 103}, - [878] = {.lex_state = 221, .external_lex_state = 16}, - [879] = {.lex_state = 221, .external_lex_state = 16}, - [880] = {.lex_state = 221, .external_lex_state = 16}, - [881] = {.lex_state = 141, .external_lex_state = 15}, - [882] = {.lex_state = 221, .external_lex_state = 16}, - [883] = {.lex_state = 141, .external_lex_state = 15}, - [884] = {.lex_state = 221, .external_lex_state = 16}, - [885] = {.lex_state = 141, .external_lex_state = 15}, - [886] = {.lex_state = 141, .external_lex_state = 15}, - [887] = {.lex_state = 163}, - [888] = {.lex_state = 282, .external_lex_state = 16}, - [889] = {.lex_state = 163, .external_lex_state = 13}, - [890] = {.lex_state = 221, .external_lex_state = 16}, - [891] = {.lex_state = 103}, - [892] = {.lex_state = 221, .external_lex_state = 16}, - [893] = {.lex_state = 221, .external_lex_state = 16}, - [894] = {.lex_state = 221, .external_lex_state = 16}, - [895] = {.lex_state = 163, .external_lex_state = 13}, - [896] = {.lex_state = 221, .external_lex_state = 16}, - [897] = {.lex_state = 163, .external_lex_state = 13}, - [898] = {.lex_state = 221, .external_lex_state = 16}, - [899] = {.lex_state = 163, .external_lex_state = 13}, - [900] = {.lex_state = 257, .external_lex_state = 11}, - [901] = {.lex_state = 257, .external_lex_state = 11}, - [902] = {.lex_state = 257, .external_lex_state = 11}, - [903] = {.lex_state = 156, .external_lex_state = 5}, - [904] = {.lex_state = 311, .external_lex_state = 22}, - [905] = {.lex_state = 163}, - [906] = {.lex_state = 168}, - [907] = {.lex_state = 311, .external_lex_state = 22}, - [908] = {.lex_state = 173, .external_lex_state = 6}, - [909] = {.lex_state = 20, .external_lex_state = 2}, - [910] = {.lex_state = 20, .external_lex_state = 2}, - [911] = {.lex_state = 20, .external_lex_state = 2}, - [912] = {.lex_state = 103, .external_lex_state = 16}, - [913] = {.lex_state = 141}, - [914] = {.lex_state = 221, .external_lex_state = 22}, - [915] = {.lex_state = 221, .external_lex_state = 22}, - [916] = {.lex_state = 163}, - [917] = {.lex_state = 221, .external_lex_state = 22}, - [918] = {.lex_state = 221, .external_lex_state = 22}, - [919] = {.lex_state = 221, .external_lex_state = 22}, - [920] = {.lex_state = 103}, - [921] = {.lex_state = 221, .external_lex_state = 16}, - [922] = {.lex_state = 230, .external_lex_state = 6}, - [923] = {.lex_state = 221, .external_lex_state = 16}, - [924] = {.lex_state = 221, .external_lex_state = 16}, - [925] = {.lex_state = 103}, - [926] = {.lex_state = 239, .external_lex_state = 2}, - [927] = {.lex_state = 103}, - [928] = {.lex_state = 247, .external_lex_state = 2}, - [929] = {.lex_state = 103}, - [930] = {.lex_state = 239, .external_lex_state = 2}, - [931] = {.lex_state = 156, .external_lex_state = 5}, - [932] = {.lex_state = 221, .external_lex_state = 16}, - [933] = {.lex_state = 282, .external_lex_state = 16}, - [934] = {.lex_state = 156, .external_lex_state = 5}, - [935] = {.lex_state = 221, .external_lex_state = 16}, - [936] = {.lex_state = 156, .external_lex_state = 5}, - [937] = {.lex_state = 221, .external_lex_state = 16}, - [938] = {.lex_state = 221, .external_lex_state = 16}, - [939] = {.lex_state = 156, .external_lex_state = 5}, - [940] = {.lex_state = 239, .external_lex_state = 2}, - [941] = {.lex_state = 234}, - [942] = {.lex_state = 239, .external_lex_state = 15}, - [943] = {.lex_state = 163}, - [944] = {.lex_state = 168}, - [945] = {.lex_state = 239, .external_lex_state = 15}, - [946] = {.lex_state = 173, .external_lex_state = 6}, - [947] = {.lex_state = 20, .external_lex_state = 2}, - [948] = {.lex_state = 20, .external_lex_state = 2}, - [949] = {.lex_state = 20, .external_lex_state = 2}, - [950] = {.lex_state = 141}, - [951] = {.lex_state = 259, .external_lex_state = 2}, - [952] = {.lex_state = 286, .external_lex_state = 18}, - [953] = {.lex_state = 265, .external_lex_state = 2}, - [954] = {.lex_state = 188, .external_lex_state = 4}, - [955] = {.lex_state = 103}, - [956] = {.lex_state = 188, .external_lex_state = 4}, - [957] = {.lex_state = 103}, - [958] = {.lex_state = 103}, - [959] = {.lex_state = 275, .external_lex_state = 21}, - [960] = {.lex_state = 313, .external_lex_state = 18}, - [961] = {.lex_state = 103}, - [962] = {.lex_state = 280, .external_lex_state = 2}, - [963] = {.lex_state = 191, .external_lex_state = 4}, - [964] = {.lex_state = 186, .external_lex_state = 8}, - [965] = {.lex_state = 103}, - [966] = {.lex_state = 184, .external_lex_state = 9}, - [967] = {.lex_state = 232, .external_lex_state = 6}, - [968] = {.lex_state = 141}, - [969] = {.lex_state = 232, .external_lex_state = 23}, - [970] = {.lex_state = 232, .external_lex_state = 23}, - [971] = {.lex_state = 163}, - [972] = {.lex_state = 232, .external_lex_state = 23}, - [973] = {.lex_state = 232, .external_lex_state = 23}, - [974] = {.lex_state = 232, .external_lex_state = 23}, - [975] = {.lex_state = 103}, - [976] = {.lex_state = 221, .external_lex_state = 16}, - [977] = {.lex_state = 230, .external_lex_state = 6}, - [978] = {.lex_state = 221, .external_lex_state = 16}, - [979] = {.lex_state = 221, .external_lex_state = 16}, - [980] = {.lex_state = 103}, - [981] = {.lex_state = 239, .external_lex_state = 2}, - [982] = {.lex_state = 103}, - [983] = {.lex_state = 247, .external_lex_state = 2}, - [984] = {.lex_state = 103}, - [985] = {.lex_state = 239, .external_lex_state = 2}, - [986] = {.lex_state = 232, .external_lex_state = 6}, - [987] = {.lex_state = 141}, - [988] = {.lex_state = 232, .external_lex_state = 13}, - [989] = {.lex_state = 232, .external_lex_state = 13}, - [990] = {.lex_state = 163}, - [991] = {.lex_state = 232, .external_lex_state = 13}, - [992] = {.lex_state = 232, .external_lex_state = 13}, - [993] = {.lex_state = 232, .external_lex_state = 13}, - [994] = {.lex_state = 103}, - [995] = {.lex_state = 221, .external_lex_state = 16}, - [996] = {.lex_state = 230, .external_lex_state = 6}, - [997] = {.lex_state = 221, .external_lex_state = 16}, - [998] = {.lex_state = 221, .external_lex_state = 16}, - [999] = {.lex_state = 103}, - [1000] = {.lex_state = 239, .external_lex_state = 2}, - [1001] = {.lex_state = 103}, - [1002] = {.lex_state = 247, .external_lex_state = 2}, - [1003] = {.lex_state = 103}, - [1004] = {.lex_state = 239, .external_lex_state = 2}, - [1005] = {.lex_state = 232}, - [1006] = {.lex_state = 234, .external_lex_state = 17}, - [1007] = {.lex_state = 234, .external_lex_state = 17}, - [1008] = {.lex_state = 234, .external_lex_state = 17}, - [1009] = {.lex_state = 282, .external_lex_state = 16}, - [1010] = {.lex_state = 234, .external_lex_state = 17}, - [1011] = {.lex_state = 221, .external_lex_state = 16}, - [1012] = {.lex_state = 103}, - [1013] = {.lex_state = 221, .external_lex_state = 16}, - [1014] = {.lex_state = 221, .external_lex_state = 16}, - [1015] = {.lex_state = 221, .external_lex_state = 16}, - [1016] = {.lex_state = 234, .external_lex_state = 17}, - [1017] = {.lex_state = 221, .external_lex_state = 16}, - [1018] = {.lex_state = 234, .external_lex_state = 17}, - [1019] = {.lex_state = 221, .external_lex_state = 16}, - [1020] = {.lex_state = 234, .external_lex_state = 17}, - [1021] = {.lex_state = 234, .external_lex_state = 17}, - [1022] = {.lex_state = 103}, - [1023] = {.lex_state = 103}, - [1024] = {.lex_state = 239, .external_lex_state = 2}, - [1025] = {.lex_state = 103}, - [1026] = {.lex_state = 239, .external_lex_state = 2}, - [1027] = {.lex_state = 141}, - [1028] = {.lex_state = 286, .external_lex_state = 17}, - [1029] = {.lex_state = 163}, - [1030] = {.lex_state = 168}, - [1031] = {.lex_state = 286, .external_lex_state = 17}, - [1032] = {.lex_state = 173, .external_lex_state = 6}, - [1033] = {.lex_state = 20, .external_lex_state = 2}, - [1034] = {.lex_state = 20, .external_lex_state = 2}, - [1035] = {.lex_state = 20, .external_lex_state = 2}, - [1036] = {.lex_state = 284, .external_lex_state = 18}, - [1037] = {.lex_state = 284, .external_lex_state = 18}, - [1038] = {.lex_state = 290, .external_lex_state = 24}, - [1039] = {.lex_state = 284, .external_lex_state = 18}, - [1040] = {.lex_state = 286, .external_lex_state = 17}, - [1041] = {.lex_state = 286, .external_lex_state = 17}, - [1042] = {.lex_state = 284, .external_lex_state = 18}, - [1043] = {.lex_state = 234, .external_lex_state = 18}, - [1044] = {.lex_state = 286, .external_lex_state = 18}, - [1045] = {.lex_state = 286, .external_lex_state = 18}, - [1046] = {.lex_state = 234, .external_lex_state = 18}, - [1047] = {.lex_state = 247, .external_lex_state = 15}, - [1048] = {.lex_state = 163}, - [1049] = {.lex_state = 168}, - [1050] = {.lex_state = 247, .external_lex_state = 15}, - [1051] = {.lex_state = 173, .external_lex_state = 6}, - [1052] = {.lex_state = 20, .external_lex_state = 2}, - [1053] = {.lex_state = 20, .external_lex_state = 2}, - [1054] = {.lex_state = 20, .external_lex_state = 2}, - [1055] = {.lex_state = 288, .external_lex_state = 18}, - [1056] = {.lex_state = 103}, - [1057] = {.lex_state = 315, .external_lex_state = 18}, - [1058] = {.lex_state = 184, .external_lex_state = 9}, - [1059] = {.lex_state = 141}, - [1060] = {.lex_state = 241, .external_lex_state = 23}, - [1061] = {.lex_state = 241, .external_lex_state = 23}, - [1062] = {.lex_state = 163}, - [1063] = {.lex_state = 241, .external_lex_state = 23}, - [1064] = {.lex_state = 241, .external_lex_state = 23}, - [1065] = {.lex_state = 241, .external_lex_state = 23}, - [1066] = {.lex_state = 103}, - [1067] = {.lex_state = 221, .external_lex_state = 16}, - [1068] = {.lex_state = 230, .external_lex_state = 6}, - [1069] = {.lex_state = 221, .external_lex_state = 16}, - [1070] = {.lex_state = 221, .external_lex_state = 16}, - [1071] = {.lex_state = 103}, - [1072] = {.lex_state = 239, .external_lex_state = 2}, - [1073] = {.lex_state = 103}, - [1074] = {.lex_state = 247, .external_lex_state = 2}, - [1075] = {.lex_state = 103}, - [1076] = {.lex_state = 239, .external_lex_state = 2}, - [1077] = {.lex_state = 241, .external_lex_state = 6}, - [1078] = {.lex_state = 141}, - [1079] = {.lex_state = 241, .external_lex_state = 13}, - [1080] = {.lex_state = 241, .external_lex_state = 13}, - [1081] = {.lex_state = 163}, - [1082] = {.lex_state = 241, .external_lex_state = 13}, - [1083] = {.lex_state = 241, .external_lex_state = 13}, - [1084] = {.lex_state = 241, .external_lex_state = 13}, - [1085] = {.lex_state = 103}, - [1086] = {.lex_state = 221, .external_lex_state = 16}, - [1087] = {.lex_state = 230, .external_lex_state = 6}, - [1088] = {.lex_state = 221, .external_lex_state = 16}, - [1089] = {.lex_state = 221, .external_lex_state = 16}, - [1090] = {.lex_state = 103}, - [1091] = {.lex_state = 239, .external_lex_state = 2}, - [1092] = {.lex_state = 103}, - [1093] = {.lex_state = 247, .external_lex_state = 2}, - [1094] = {.lex_state = 103}, - [1095] = {.lex_state = 239, .external_lex_state = 2}, - [1096] = {.lex_state = 232}, - [1097] = {.lex_state = 243, .external_lex_state = 17}, - [1098] = {.lex_state = 243, .external_lex_state = 17}, - [1099] = {.lex_state = 243, .external_lex_state = 17}, - [1100] = {.lex_state = 282, .external_lex_state = 16}, - [1101] = {.lex_state = 243, .external_lex_state = 17}, - [1102] = {.lex_state = 221, .external_lex_state = 16}, - [1103] = {.lex_state = 103}, - [1104] = {.lex_state = 221, .external_lex_state = 16}, - [1105] = {.lex_state = 221, .external_lex_state = 16}, - [1106] = {.lex_state = 221, .external_lex_state = 16}, - [1107] = {.lex_state = 243, .external_lex_state = 17}, - [1108] = {.lex_state = 221, .external_lex_state = 16}, - [1109] = {.lex_state = 243, .external_lex_state = 17}, - [1110] = {.lex_state = 221, .external_lex_state = 16}, - [1111] = {.lex_state = 243, .external_lex_state = 17}, - [1112] = {.lex_state = 243, .external_lex_state = 17}, - [1113] = {.lex_state = 103}, - [1114] = {.lex_state = 247, .external_lex_state = 2}, - [1115] = {.lex_state = 103}, - [1116] = {.lex_state = 247, .external_lex_state = 2}, - [1117] = {.lex_state = 141}, - [1118] = {.lex_state = 288, .external_lex_state = 17}, - [1119] = {.lex_state = 163}, - [1120] = {.lex_state = 168}, - [1121] = {.lex_state = 288, .external_lex_state = 17}, - [1122] = {.lex_state = 173, .external_lex_state = 6}, - [1123] = {.lex_state = 20, .external_lex_state = 2}, - [1124] = {.lex_state = 20, .external_lex_state = 2}, - [1125] = {.lex_state = 20, .external_lex_state = 2}, - [1126] = {.lex_state = 288, .external_lex_state = 17}, - [1127] = {.lex_state = 288, .external_lex_state = 17}, - [1128] = {.lex_state = 243, .external_lex_state = 18}, - [1129] = {.lex_state = 288, .external_lex_state = 18}, - [1130] = {.lex_state = 288, .external_lex_state = 18}, - [1131] = {.lex_state = 243, .external_lex_state = 18}, - [1132] = {.lex_state = 277, .external_lex_state = 7}, - [1133] = {.lex_state = 255, .external_lex_state = 5}, - [1134] = {.lex_state = 255, .external_lex_state = 5}, - [1135] = {.lex_state = 251, .external_lex_state = 7}, - [1136] = {.lex_state = 141}, - [1137] = {.lex_state = 255, .external_lex_state = 5}, - [1138] = {.lex_state = 255, .external_lex_state = 5}, - [1139] = {.lex_state = 163}, - [1140] = {.lex_state = 255, .external_lex_state = 5}, - [1141] = {.lex_state = 255, .external_lex_state = 5}, - [1142] = {.lex_state = 255, .external_lex_state = 5}, - [1143] = {.lex_state = 103}, - [1144] = {.lex_state = 221, .external_lex_state = 16}, - [1145] = {.lex_state = 230, .external_lex_state = 6}, - [1146] = {.lex_state = 221, .external_lex_state = 16}, - [1147] = {.lex_state = 221, .external_lex_state = 16}, - [1148] = {.lex_state = 103}, - [1149] = {.lex_state = 239, .external_lex_state = 2}, - [1150] = {.lex_state = 103}, - [1151] = {.lex_state = 247, .external_lex_state = 2}, - [1152] = {.lex_state = 103}, - [1153] = {.lex_state = 239, .external_lex_state = 2}, - [1154] = {.lex_state = 290, .external_lex_state = 24}, - [1155] = {.lex_state = 251, .external_lex_state = 7}, - [1156] = {.lex_state = 168}, - [1157] = {.lex_state = 173, .external_lex_state = 6}, - [1158] = {.lex_state = 290, .external_lex_state = 24}, - [1159] = {.lex_state = 141, .external_lex_state = 15}, - [1160] = {.lex_state = 141, .external_lex_state = 15}, - [1161] = {.lex_state = 255, .external_lex_state = 7}, - [1162] = {.lex_state = 295, .external_lex_state = 13}, - [1163] = {.lex_state = 257, .external_lex_state = 11}, - [1164] = {.lex_state = 103}, - [1165] = {.lex_state = 141}, - [1166] = {.lex_state = 257, .external_lex_state = 11}, - [1167] = {.lex_state = 257, .external_lex_state = 11}, - [1168] = {.lex_state = 295, .external_lex_state = 13}, - [1169] = {.lex_state = 103}, - [1170] = {.lex_state = 282, .external_lex_state = 16}, - [1171] = {.lex_state = 257, .external_lex_state = 11}, - [1172] = {.lex_state = 221, .external_lex_state = 16}, - [1173] = {.lex_state = 103}, - [1174] = {.lex_state = 221, .external_lex_state = 16}, - [1175] = {.lex_state = 221, .external_lex_state = 16}, - [1176] = {.lex_state = 221, .external_lex_state = 16}, - [1177] = {.lex_state = 257, .external_lex_state = 11}, - [1178] = {.lex_state = 221, .external_lex_state = 16}, - [1179] = {.lex_state = 257, .external_lex_state = 11}, - [1180] = {.lex_state = 221, .external_lex_state = 16}, - [1181] = {.lex_state = 257, .external_lex_state = 11}, - [1182] = {.lex_state = 257, .external_lex_state = 11}, - [1183] = {.lex_state = 141}, - [1184] = {.lex_state = 297, .external_lex_state = 13}, - [1185] = {.lex_state = 297, .external_lex_state = 13}, - [1186] = {.lex_state = 163}, - [1187] = {.lex_state = 297, .external_lex_state = 13}, - [1188] = {.lex_state = 297, .external_lex_state = 13}, - [1189] = {.lex_state = 297, .external_lex_state = 13}, - [1190] = {.lex_state = 103}, - [1191] = {.lex_state = 221, .external_lex_state = 16}, - [1192] = {.lex_state = 230, .external_lex_state = 6}, - [1193] = {.lex_state = 221, .external_lex_state = 16}, - [1194] = {.lex_state = 221, .external_lex_state = 16}, - [1195] = {.lex_state = 103}, - [1196] = {.lex_state = 239, .external_lex_state = 2}, - [1197] = {.lex_state = 103}, - [1198] = {.lex_state = 247, .external_lex_state = 2}, - [1199] = {.lex_state = 103}, - [1200] = {.lex_state = 239, .external_lex_state = 2}, - [1201] = {.lex_state = 186, .external_lex_state = 8}, - [1202] = {.lex_state = 234}, - [1203] = {.lex_state = 180, .external_lex_state = 20}, - [1204] = {.lex_state = 180, .external_lex_state = 20}, - [1205] = {.lex_state = 180, .external_lex_state = 20}, - [1206] = {.lex_state = 282, .external_lex_state = 16}, - [1207] = {.lex_state = 180, .external_lex_state = 20}, - [1208] = {.lex_state = 221, .external_lex_state = 16}, - [1209] = {.lex_state = 103}, - [1210] = {.lex_state = 221, .external_lex_state = 16}, - [1211] = {.lex_state = 221, .external_lex_state = 16}, - [1212] = {.lex_state = 221, .external_lex_state = 16}, - [1213] = {.lex_state = 180, .external_lex_state = 20}, - [1214] = {.lex_state = 221, .external_lex_state = 16}, - [1215] = {.lex_state = 180, .external_lex_state = 20}, - [1216] = {.lex_state = 221, .external_lex_state = 16}, - [1217] = {.lex_state = 180, .external_lex_state = 20}, - [1218] = {.lex_state = 180, .external_lex_state = 20}, - [1219] = {.lex_state = 141}, - [1220] = {.lex_state = 299, .external_lex_state = 10}, - [1221] = {.lex_state = 299, .external_lex_state = 10}, - [1222] = {.lex_state = 163}, - [1223] = {.lex_state = 299, .external_lex_state = 10}, - [1224] = {.lex_state = 299, .external_lex_state = 10}, - [1225] = {.lex_state = 299, .external_lex_state = 10}, - [1226] = {.lex_state = 103}, - [1227] = {.lex_state = 221, .external_lex_state = 16}, - [1228] = {.lex_state = 230, .external_lex_state = 6}, - [1229] = {.lex_state = 221, .external_lex_state = 16}, - [1230] = {.lex_state = 221, .external_lex_state = 16}, - [1231] = {.lex_state = 103}, - [1232] = {.lex_state = 239, .external_lex_state = 2}, + [586] = {.lex_state = 241, .external_lex_state = 2}, + [587] = {.lex_state = 103}, + [588] = {.lex_state = 20, .external_lex_state = 2}, + [589] = {.lex_state = 20, .external_lex_state = 2}, + [590] = {.lex_state = 20}, + [591] = {.lex_state = 196}, + [592] = {.lex_state = 141}, + [593] = {.lex_state = 141}, + [594] = {.lex_state = 245, .external_lex_state = 17}, + [595] = {.lex_state = 245, .external_lex_state = 17}, + [596] = {.lex_state = 297, .external_lex_state = 18}, + [597] = {.lex_state = 245, .external_lex_state = 18}, + [598] = {.lex_state = 245, .external_lex_state = 18}, + [599] = {.lex_state = 161, .external_lex_state = 5}, + [600] = {.lex_state = 103}, + [601] = {.lex_state = 192, .external_lex_state = 4}, + [602] = {.lex_state = 187, .external_lex_state = 8}, + [603] = {.lex_state = 152, .external_lex_state = 4}, + [604] = {.lex_state = 181, .external_lex_state = 8}, + [605] = {.lex_state = 141}, + [606] = {.lex_state = 161, .external_lex_state = 5}, + [607] = {.lex_state = 161, .external_lex_state = 5}, + [608] = {.lex_state = 183, .external_lex_state = 7}, + [609] = {.lex_state = 257, .external_lex_state = 5}, + [610] = {.lex_state = 164}, + [611] = {.lex_state = 169}, + [612] = {.lex_state = 257, .external_lex_state = 5}, + [613] = {.lex_state = 174, .external_lex_state = 6}, + [614] = {.lex_state = 20, .external_lex_state = 2}, + [615] = {.lex_state = 20, .external_lex_state = 2}, + [616] = {.lex_state = 20, .external_lex_state = 2}, + [617] = {.lex_state = 253, .external_lex_state = 7}, + [618] = {.lex_state = 253, .external_lex_state = 7}, + [619] = {.lex_state = 299, .external_lex_state = 24}, + [620] = {.lex_state = 253, .external_lex_state = 7}, + [621] = {.lex_state = 257, .external_lex_state = 5}, + [622] = {.lex_state = 257, .external_lex_state = 5}, + [623] = {.lex_state = 253, .external_lex_state = 7}, + [624] = {.lex_state = 257, .external_lex_state = 7}, + [625] = {.lex_state = 257, .external_lex_state = 7}, + [626] = {.lex_state = 161, .external_lex_state = 7}, + [627] = {.lex_state = 185, .external_lex_state = 9}, + [628] = {.lex_state = 161, .external_lex_state = 7}, + [629] = {.lex_state = 302, .external_lex_state = 12}, + [630] = {.lex_state = 304, .external_lex_state = 13}, + [631] = {.lex_state = 259, .external_lex_state = 11}, + [632] = {.lex_state = 259, .external_lex_state = 11}, + [633] = {.lex_state = 164}, + [634] = {.lex_state = 259, .external_lex_state = 11}, + [635] = {.lex_state = 259, .external_lex_state = 11}, + [636] = {.lex_state = 259, .external_lex_state = 11}, + [637] = {.lex_state = 302, .external_lex_state = 12}, + [638] = {.lex_state = 304, .external_lex_state = 13}, + [639] = {.lex_state = 103}, + [640] = {.lex_state = 226, .external_lex_state = 16}, + [641] = {.lex_state = 235, .external_lex_state = 6}, + [642] = {.lex_state = 226, .external_lex_state = 16}, + [643] = {.lex_state = 226, .external_lex_state = 16}, + [644] = {.lex_state = 103}, + [645] = {.lex_state = 241, .external_lex_state = 2}, + [646] = {.lex_state = 103}, + [647] = {.lex_state = 249, .external_lex_state = 2}, + [648] = {.lex_state = 103}, + [649] = {.lex_state = 241, .external_lex_state = 2}, + [650] = {.lex_state = 103, .external_lex_state = 12}, + [651] = {.lex_state = 187, .external_lex_state = 8}, + [652] = {.lex_state = 306, .external_lex_state = 13}, + [653] = {.lex_state = 164}, + [654] = {.lex_state = 169}, + [655] = {.lex_state = 306, .external_lex_state = 13}, + [656] = {.lex_state = 174, .external_lex_state = 6}, + [657] = {.lex_state = 20, .external_lex_state = 2}, + [658] = {.lex_state = 20, .external_lex_state = 2}, + [659] = {.lex_state = 20, .external_lex_state = 2}, + [660] = {.lex_state = 241}, + [661] = {.lex_state = 241}, + [662] = {.lex_state = 141}, + [663] = {.lex_state = 181, .external_lex_state = 20}, + [664] = {.lex_state = 181, .external_lex_state = 20}, + [665] = {.lex_state = 164}, + [666] = {.lex_state = 181, .external_lex_state = 20}, + [667] = {.lex_state = 181, .external_lex_state = 20}, + [668] = {.lex_state = 181, .external_lex_state = 20}, + [669] = {.lex_state = 103}, + [670] = {.lex_state = 226, .external_lex_state = 16}, + [671] = {.lex_state = 235, .external_lex_state = 6}, + [672] = {.lex_state = 226, .external_lex_state = 16}, + [673] = {.lex_state = 226, .external_lex_state = 16}, + [674] = {.lex_state = 103}, + [675] = {.lex_state = 241, .external_lex_state = 2}, + [676] = {.lex_state = 103}, + [677] = {.lex_state = 249, .external_lex_state = 2}, + [678] = {.lex_state = 103}, + [679] = {.lex_state = 241, .external_lex_state = 2}, + [680] = {.lex_state = 308, .external_lex_state = 10}, + [681] = {.lex_state = 164}, + [682] = {.lex_state = 169}, + [683] = {.lex_state = 308, .external_lex_state = 10}, + [684] = {.lex_state = 174, .external_lex_state = 6}, + [685] = {.lex_state = 20, .external_lex_state = 2}, + [686] = {.lex_state = 20, .external_lex_state = 2}, + [687] = {.lex_state = 20, .external_lex_state = 2}, + [688] = {.lex_state = 308, .external_lex_state = 4}, + [689] = {.lex_state = 308, .external_lex_state = 4}, + [690] = {.lex_state = 253, .external_lex_state = 7}, + [691] = {.lex_state = 261, .external_lex_state = 2}, + [692] = {.lex_state = 152, .external_lex_state = 4}, + [693] = {.lex_state = 181, .external_lex_state = 8}, + [694] = {.lex_state = 261, .external_lex_state = 2}, + [695] = {.lex_state = 257, .external_lex_state = 7}, + [696] = {.lex_state = 192, .external_lex_state = 4}, + [697] = {.lex_state = 20, .external_lex_state = 2}, + [698] = {.lex_state = 310, .external_lex_state = 2}, + [699] = {.lex_state = 267, .external_lex_state = 2}, + [700] = {.lex_state = 152, .external_lex_state = 4}, + [701] = {.lex_state = 103}, + [702] = {.lex_state = 103}, + [703] = {.lex_state = 181, .external_lex_state = 8}, + [704] = {.lex_state = 267, .external_lex_state = 2}, + [705] = {.lex_state = 103}, + [706] = {.lex_state = 189, .external_lex_state = 10}, + [707] = {.lex_state = 312}, + [708] = {.lex_state = 189, .external_lex_state = 4}, + [709] = {.lex_state = 189, .external_lex_state = 10}, + [710] = {.lex_state = 189, .external_lex_state = 10}, + [711] = {.lex_state = 312}, + [712] = {.lex_state = 189, .external_lex_state = 4}, + [713] = {.lex_state = 284, .external_lex_state = 16}, + [714] = {.lex_state = 189, .external_lex_state = 10}, + [715] = {.lex_state = 288}, + [716] = {.lex_state = 286, .external_lex_state = 16}, + [717] = {.lex_state = 103}, + [718] = {.lex_state = 226, .external_lex_state = 16}, + [719] = {.lex_state = 226, .external_lex_state = 16}, + [720] = {.lex_state = 226, .external_lex_state = 16}, + [721] = {.lex_state = 189, .external_lex_state = 10}, + [722] = {.lex_state = 288}, + [723] = {.lex_state = 286, .external_lex_state = 16}, + [724] = {.lex_state = 189, .external_lex_state = 10}, + [725] = {.lex_state = 288}, + [726] = {.lex_state = 286, .external_lex_state = 16}, + [727] = {.lex_state = 189, .external_lex_state = 10}, + [728] = {.lex_state = 189, .external_lex_state = 10}, + [729] = {.lex_state = 103}, + [730] = {.lex_state = 318, .external_lex_state = 7}, + [731] = {.lex_state = 277, .external_lex_state = 21}, + [732] = {.lex_state = 152, .external_lex_state = 4}, + [733] = {.lex_state = 181, .external_lex_state = 8}, + [734] = {.lex_state = 277, .external_lex_state = 21}, + [735] = {.lex_state = 20}, + [736] = {.lex_state = 141}, + [737] = {.lex_state = 192, .external_lex_state = 4}, + [738] = {.lex_state = 187, .external_lex_state = 20}, + [739] = {.lex_state = 164}, + [740] = {.lex_state = 169}, + [741] = {.lex_state = 187, .external_lex_state = 20}, + [742] = {.lex_state = 174, .external_lex_state = 6}, + [743] = {.lex_state = 20, .external_lex_state = 2}, + [744] = {.lex_state = 20, .external_lex_state = 2}, + [745] = {.lex_state = 20, .external_lex_state = 2}, + [746] = {.lex_state = 253, .external_lex_state = 7}, + [747] = {.lex_state = 103}, + [748] = {.lex_state = 318, .external_lex_state = 7}, + [749] = {.lex_state = 253, .external_lex_state = 7}, + [750] = {.lex_state = 185, .external_lex_state = 9}, + [751] = {.lex_state = 141}, + [752] = {.lex_state = 192, .external_lex_state = 14}, + [753] = {.lex_state = 192, .external_lex_state = 14}, + [754] = {.lex_state = 164}, + [755] = {.lex_state = 192, .external_lex_state = 14}, + [756] = {.lex_state = 192, .external_lex_state = 14}, + [757] = {.lex_state = 192, .external_lex_state = 14}, + [758] = {.lex_state = 103}, + [759] = {.lex_state = 226, .external_lex_state = 16}, + [760] = {.lex_state = 235, .external_lex_state = 6}, + [761] = {.lex_state = 226, .external_lex_state = 16}, + [762] = {.lex_state = 226, .external_lex_state = 16}, + [763] = {.lex_state = 103}, + [764] = {.lex_state = 241, .external_lex_state = 2}, + [765] = {.lex_state = 103}, + [766] = {.lex_state = 249, .external_lex_state = 2}, + [767] = {.lex_state = 103}, + [768] = {.lex_state = 241, .external_lex_state = 2}, + [769] = {.lex_state = 192, .external_lex_state = 3}, + [770] = {.lex_state = 141}, + [771] = {.lex_state = 192, .external_lex_state = 10}, + [772] = {.lex_state = 192, .external_lex_state = 10}, + [773] = {.lex_state = 164}, + [774] = {.lex_state = 192, .external_lex_state = 10}, + [775] = {.lex_state = 192, .external_lex_state = 10}, + [776] = {.lex_state = 192, .external_lex_state = 10}, + [777] = {.lex_state = 103}, + [778] = {.lex_state = 226, .external_lex_state = 16}, + [779] = {.lex_state = 235, .external_lex_state = 6}, + [780] = {.lex_state = 226, .external_lex_state = 16}, + [781] = {.lex_state = 226, .external_lex_state = 16}, + [782] = {.lex_state = 103}, + [783] = {.lex_state = 241, .external_lex_state = 2}, + [784] = {.lex_state = 103}, + [785] = {.lex_state = 249, .external_lex_state = 2}, + [786] = {.lex_state = 103}, + [787] = {.lex_state = 241, .external_lex_state = 2}, + [788] = {.lex_state = 192, .external_lex_state = 4}, + [789] = {.lex_state = 183, .external_lex_state = 5}, + [790] = {.lex_state = 183, .external_lex_state = 5}, + [791] = {.lex_state = 183, .external_lex_state = 5}, + [792] = {.lex_state = 284, .external_lex_state = 16}, + [793] = {.lex_state = 183, .external_lex_state = 5}, + [794] = {.lex_state = 288}, + [795] = {.lex_state = 286, .external_lex_state = 16}, + [796] = {.lex_state = 103}, + [797] = {.lex_state = 226, .external_lex_state = 16}, + [798] = {.lex_state = 226, .external_lex_state = 16}, + [799] = {.lex_state = 226, .external_lex_state = 16}, + [800] = {.lex_state = 183, .external_lex_state = 5}, + [801] = {.lex_state = 288}, + [802] = {.lex_state = 286, .external_lex_state = 16}, + [803] = {.lex_state = 183, .external_lex_state = 5}, + [804] = {.lex_state = 288}, + [805] = {.lex_state = 286, .external_lex_state = 16}, + [806] = {.lex_state = 183, .external_lex_state = 5}, + [807] = {.lex_state = 183, .external_lex_state = 5}, + [808] = {.lex_state = 103}, + [809] = {.lex_state = 192, .external_lex_state = 4}, + [810] = {.lex_state = 192, .external_lex_state = 4}, + [811] = {.lex_state = 187, .external_lex_state = 8}, + [812] = {.lex_state = 141}, + [813] = {.lex_state = 183, .external_lex_state = 5}, + [814] = {.lex_state = 183, .external_lex_state = 5}, + [815] = {.lex_state = 253, .external_lex_state = 5}, + [816] = {.lex_state = 164}, + [817] = {.lex_state = 169}, + [818] = {.lex_state = 253, .external_lex_state = 5}, + [819] = {.lex_state = 174, .external_lex_state = 6}, + [820] = {.lex_state = 20, .external_lex_state = 2}, + [821] = {.lex_state = 20, .external_lex_state = 2}, + [822] = {.lex_state = 20, .external_lex_state = 2}, + [823] = {.lex_state = 253, .external_lex_state = 5}, + [824] = {.lex_state = 253, .external_lex_state = 5}, + [825] = {.lex_state = 253, .external_lex_state = 7}, + [826] = {.lex_state = 253, .external_lex_state = 7}, + [827] = {.lex_state = 183, .external_lex_state = 7}, + [828] = {.lex_state = 282, .external_lex_state = 2}, + [829] = {.lex_state = 183, .external_lex_state = 7}, + [830] = {.lex_state = 217, .external_lex_state = 11}, + [831] = {.lex_state = 217, .external_lex_state = 11}, + [832] = {.lex_state = 217, .external_lex_state = 11}, + [833] = {.lex_state = 284, .external_lex_state = 16}, + [834] = {.lex_state = 217, .external_lex_state = 11}, + [835] = {.lex_state = 288}, + [836] = {.lex_state = 286, .external_lex_state = 16}, + [837] = {.lex_state = 103}, + [838] = {.lex_state = 226, .external_lex_state = 16}, + [839] = {.lex_state = 226, .external_lex_state = 16}, + [840] = {.lex_state = 226, .external_lex_state = 16}, + [841] = {.lex_state = 217, .external_lex_state = 11}, + [842] = {.lex_state = 288}, + [843] = {.lex_state = 286, .external_lex_state = 16}, + [844] = {.lex_state = 217, .external_lex_state = 11}, + [845] = {.lex_state = 288}, + [846] = {.lex_state = 286, .external_lex_state = 16}, + [847] = {.lex_state = 217, .external_lex_state = 11}, + [848] = {.lex_state = 217, .external_lex_state = 11}, + [849] = {.lex_state = 257, .external_lex_state = 7}, + [850] = {.lex_state = 219, .external_lex_state = 13}, + [851] = {.lex_state = 219, .external_lex_state = 13}, + [852] = {.lex_state = 219, .external_lex_state = 13}, + [853] = {.lex_state = 284, .external_lex_state = 16}, + [854] = {.lex_state = 219, .external_lex_state = 13}, + [855] = {.lex_state = 288}, + [856] = {.lex_state = 286, .external_lex_state = 16}, + [857] = {.lex_state = 103}, + [858] = {.lex_state = 226, .external_lex_state = 16}, + [859] = {.lex_state = 226, .external_lex_state = 16}, + [860] = {.lex_state = 226, .external_lex_state = 16}, + [861] = {.lex_state = 219, .external_lex_state = 13}, + [862] = {.lex_state = 288}, + [863] = {.lex_state = 286, .external_lex_state = 16}, + [864] = {.lex_state = 219, .external_lex_state = 13}, + [865] = {.lex_state = 288}, + [866] = {.lex_state = 286, .external_lex_state = 16}, + [867] = {.lex_state = 219, .external_lex_state = 13}, + [868] = {.lex_state = 219, .external_lex_state = 13}, + [869] = {.lex_state = 192, .external_lex_state = 3}, + [870] = {.lex_state = 241}, + [871] = {.lex_state = 152, .external_lex_state = 14}, + [872] = {.lex_state = 152, .external_lex_state = 14}, + [873] = {.lex_state = 152, .external_lex_state = 14}, + [874] = {.lex_state = 152, .external_lex_state = 14}, + [875] = {.lex_state = 152, .external_lex_state = 14}, + [876] = {.lex_state = 284, .external_lex_state = 16}, + [877] = {.lex_state = 152, .external_lex_state = 14}, + [878] = {.lex_state = 288}, + [879] = {.lex_state = 286, .external_lex_state = 16}, + [880] = {.lex_state = 103}, + [881] = {.lex_state = 226, .external_lex_state = 16}, + [882] = {.lex_state = 226, .external_lex_state = 16}, + [883] = {.lex_state = 226, .external_lex_state = 16}, + [884] = {.lex_state = 152, .external_lex_state = 14}, + [885] = {.lex_state = 288}, + [886] = {.lex_state = 286, .external_lex_state = 16}, + [887] = {.lex_state = 152, .external_lex_state = 14}, + [888] = {.lex_state = 288}, + [889] = {.lex_state = 286, .external_lex_state = 16}, + [890] = {.lex_state = 152, .external_lex_state = 14}, + [891] = {.lex_state = 152, .external_lex_state = 14}, + [892] = {.lex_state = 152, .external_lex_state = 10}, + [893] = {.lex_state = 152, .external_lex_state = 10}, + [894] = {.lex_state = 152, .external_lex_state = 10}, + [895] = {.lex_state = 284, .external_lex_state = 16}, + [896] = {.lex_state = 152, .external_lex_state = 10}, + [897] = {.lex_state = 288}, + [898] = {.lex_state = 286, .external_lex_state = 16}, + [899] = {.lex_state = 103}, + [900] = {.lex_state = 226, .external_lex_state = 16}, + [901] = {.lex_state = 226, .external_lex_state = 16}, + [902] = {.lex_state = 226, .external_lex_state = 16}, + [903] = {.lex_state = 152, .external_lex_state = 10}, + [904] = {.lex_state = 288}, + [905] = {.lex_state = 286, .external_lex_state = 16}, + [906] = {.lex_state = 152, .external_lex_state = 10}, + [907] = {.lex_state = 288}, + [908] = {.lex_state = 286, .external_lex_state = 16}, + [909] = {.lex_state = 152, .external_lex_state = 10}, + [910] = {.lex_state = 152, .external_lex_state = 10}, + [911] = {.lex_state = 141, .external_lex_state = 15}, + [912] = {.lex_state = 141, .external_lex_state = 15}, + [913] = {.lex_state = 141, .external_lex_state = 15}, + [914] = {.lex_state = 284, .external_lex_state = 16}, + [915] = {.lex_state = 141, .external_lex_state = 15}, + [916] = {.lex_state = 288}, + [917] = {.lex_state = 286, .external_lex_state = 16}, + [918] = {.lex_state = 103}, + [919] = {.lex_state = 226, .external_lex_state = 16}, + [920] = {.lex_state = 226, .external_lex_state = 16}, + [921] = {.lex_state = 226, .external_lex_state = 16}, + [922] = {.lex_state = 141, .external_lex_state = 15}, + [923] = {.lex_state = 288}, + [924] = {.lex_state = 286, .external_lex_state = 16}, + [925] = {.lex_state = 141, .external_lex_state = 15}, + [926] = {.lex_state = 288}, + [927] = {.lex_state = 286, .external_lex_state = 16}, + [928] = {.lex_state = 141, .external_lex_state = 15}, + [929] = {.lex_state = 141, .external_lex_state = 15}, + [930] = {.lex_state = 164}, + [931] = {.lex_state = 284, .external_lex_state = 16}, + [932] = {.lex_state = 164, .external_lex_state = 13}, + [933] = {.lex_state = 288}, + [934] = {.lex_state = 286, .external_lex_state = 16}, + [935] = {.lex_state = 103}, + [936] = {.lex_state = 226, .external_lex_state = 16}, + [937] = {.lex_state = 226, .external_lex_state = 16}, + [938] = {.lex_state = 226, .external_lex_state = 16}, + [939] = {.lex_state = 164, .external_lex_state = 13}, + [940] = {.lex_state = 288}, + [941] = {.lex_state = 286, .external_lex_state = 16}, + [942] = {.lex_state = 164, .external_lex_state = 13}, + [943] = {.lex_state = 288}, + [944] = {.lex_state = 286, .external_lex_state = 16}, + [945] = {.lex_state = 164, .external_lex_state = 13}, + [946] = {.lex_state = 259, .external_lex_state = 11}, + [947] = {.lex_state = 259, .external_lex_state = 11}, + [948] = {.lex_state = 259, .external_lex_state = 11}, + [949] = {.lex_state = 161, .external_lex_state = 5}, + [950] = {.lex_state = 320, .external_lex_state = 22}, + [951] = {.lex_state = 164}, + [952] = {.lex_state = 169}, + [953] = {.lex_state = 320, .external_lex_state = 22}, + [954] = {.lex_state = 174, .external_lex_state = 6}, + [955] = {.lex_state = 20, .external_lex_state = 2}, + [956] = {.lex_state = 20, .external_lex_state = 2}, + [957] = {.lex_state = 20, .external_lex_state = 2}, + [958] = {.lex_state = 103, .external_lex_state = 16}, + [959] = {.lex_state = 141}, + [960] = {.lex_state = 286, .external_lex_state = 22}, + [961] = {.lex_state = 286, .external_lex_state = 22}, + [962] = {.lex_state = 164}, + [963] = {.lex_state = 286, .external_lex_state = 22}, + [964] = {.lex_state = 286, .external_lex_state = 22}, + [965] = {.lex_state = 286, .external_lex_state = 22}, + [966] = {.lex_state = 103}, + [967] = {.lex_state = 226, .external_lex_state = 16}, + [968] = {.lex_state = 235, .external_lex_state = 6}, + [969] = {.lex_state = 226, .external_lex_state = 16}, + [970] = {.lex_state = 226, .external_lex_state = 16}, + [971] = {.lex_state = 286, .external_lex_state = 16}, + [972] = {.lex_state = 103}, + [973] = {.lex_state = 241, .external_lex_state = 2}, + [974] = {.lex_state = 103}, + [975] = {.lex_state = 249, .external_lex_state = 2}, + [976] = {.lex_state = 103}, + [977] = {.lex_state = 241, .external_lex_state = 2}, + [978] = {.lex_state = 161, .external_lex_state = 5}, + [979] = {.lex_state = 286, .external_lex_state = 16}, + [980] = {.lex_state = 284, .external_lex_state = 16}, + [981] = {.lex_state = 161, .external_lex_state = 5}, + [982] = {.lex_state = 288}, + [983] = {.lex_state = 286, .external_lex_state = 16}, + [984] = {.lex_state = 161, .external_lex_state = 5}, + [985] = {.lex_state = 288}, + [986] = {.lex_state = 286, .external_lex_state = 16}, + [987] = {.lex_state = 288}, + [988] = {.lex_state = 286, .external_lex_state = 16}, + [989] = {.lex_state = 286, .external_lex_state = 16}, + [990] = {.lex_state = 161, .external_lex_state = 5}, + [991] = {.lex_state = 286, .external_lex_state = 16}, + [992] = {.lex_state = 241, .external_lex_state = 2}, + [993] = {.lex_state = 241}, + [994] = {.lex_state = 241, .external_lex_state = 15}, + [995] = {.lex_state = 164}, + [996] = {.lex_state = 169}, + [997] = {.lex_state = 241, .external_lex_state = 15}, + [998] = {.lex_state = 174, .external_lex_state = 6}, + [999] = {.lex_state = 20, .external_lex_state = 2}, + [1000] = {.lex_state = 20, .external_lex_state = 2}, + [1001] = {.lex_state = 20, .external_lex_state = 2}, + [1002] = {.lex_state = 141}, + [1003] = {.lex_state = 261, .external_lex_state = 2}, + [1004] = {.lex_state = 295, .external_lex_state = 18}, + [1005] = {.lex_state = 267, .external_lex_state = 2}, + [1006] = {.lex_state = 189, .external_lex_state = 4}, + [1007] = {.lex_state = 103}, + [1008] = {.lex_state = 189, .external_lex_state = 4}, + [1009] = {.lex_state = 103}, + [1010] = {.lex_state = 103}, + [1011] = {.lex_state = 277, .external_lex_state = 21}, + [1012] = {.lex_state = 322, .external_lex_state = 18}, + [1013] = {.lex_state = 103}, + [1014] = {.lex_state = 282, .external_lex_state = 2}, + [1015] = {.lex_state = 192, .external_lex_state = 4}, + [1016] = {.lex_state = 187, .external_lex_state = 8}, + [1017] = {.lex_state = 295, .external_lex_state = 18}, + [1018] = {.lex_state = 185, .external_lex_state = 9}, + [1019] = {.lex_state = 237, .external_lex_state = 6}, + [1020] = {.lex_state = 141}, + [1021] = {.lex_state = 237, .external_lex_state = 23}, + [1022] = {.lex_state = 237, .external_lex_state = 23}, + [1023] = {.lex_state = 164}, + [1024] = {.lex_state = 237, .external_lex_state = 23}, + [1025] = {.lex_state = 237, .external_lex_state = 23}, + [1026] = {.lex_state = 237, .external_lex_state = 23}, + [1027] = {.lex_state = 103}, + [1028] = {.lex_state = 226, .external_lex_state = 16}, + [1029] = {.lex_state = 235, .external_lex_state = 6}, + [1030] = {.lex_state = 226, .external_lex_state = 16}, + [1031] = {.lex_state = 226, .external_lex_state = 16}, + [1032] = {.lex_state = 103}, + [1033] = {.lex_state = 241, .external_lex_state = 2}, + [1034] = {.lex_state = 103}, + [1035] = {.lex_state = 249, .external_lex_state = 2}, + [1036] = {.lex_state = 103}, + [1037] = {.lex_state = 241, .external_lex_state = 2}, + [1038] = {.lex_state = 237, .external_lex_state = 6}, + [1039] = {.lex_state = 141}, + [1040] = {.lex_state = 237, .external_lex_state = 13}, + [1041] = {.lex_state = 237, .external_lex_state = 13}, + [1042] = {.lex_state = 164}, + [1043] = {.lex_state = 237, .external_lex_state = 13}, + [1044] = {.lex_state = 237, .external_lex_state = 13}, + [1045] = {.lex_state = 237, .external_lex_state = 13}, + [1046] = {.lex_state = 103}, + [1047] = {.lex_state = 226, .external_lex_state = 16}, + [1048] = {.lex_state = 235, .external_lex_state = 6}, + [1049] = {.lex_state = 226, .external_lex_state = 16}, + [1050] = {.lex_state = 226, .external_lex_state = 16}, + [1051] = {.lex_state = 103}, + [1052] = {.lex_state = 241, .external_lex_state = 2}, + [1053] = {.lex_state = 103}, + [1054] = {.lex_state = 249, .external_lex_state = 2}, + [1055] = {.lex_state = 103}, + [1056] = {.lex_state = 241, .external_lex_state = 2}, + [1057] = {.lex_state = 237}, + [1058] = {.lex_state = 143, .external_lex_state = 17}, + [1059] = {.lex_state = 143, .external_lex_state = 17}, + [1060] = {.lex_state = 143, .external_lex_state = 17}, + [1061] = {.lex_state = 284, .external_lex_state = 16}, + [1062] = {.lex_state = 143, .external_lex_state = 17}, + [1063] = {.lex_state = 288}, + [1064] = {.lex_state = 286, .external_lex_state = 16}, + [1065] = {.lex_state = 103}, + [1066] = {.lex_state = 226, .external_lex_state = 16}, + [1067] = {.lex_state = 226, .external_lex_state = 16}, + [1068] = {.lex_state = 226, .external_lex_state = 16}, + [1069] = {.lex_state = 143, .external_lex_state = 17}, + [1070] = {.lex_state = 288}, + [1071] = {.lex_state = 286, .external_lex_state = 16}, + [1072] = {.lex_state = 143, .external_lex_state = 17}, + [1073] = {.lex_state = 288}, + [1074] = {.lex_state = 286, .external_lex_state = 16}, + [1075] = {.lex_state = 143, .external_lex_state = 17}, + [1076] = {.lex_state = 143, .external_lex_state = 17}, + [1077] = {.lex_state = 103}, + [1078] = {.lex_state = 103}, + [1079] = {.lex_state = 241, .external_lex_state = 2}, + [1080] = {.lex_state = 103}, + [1081] = {.lex_state = 241, .external_lex_state = 2}, + [1082] = {.lex_state = 141}, + [1083] = {.lex_state = 143, .external_lex_state = 17}, + [1084] = {.lex_state = 143, .external_lex_state = 17}, + [1085] = {.lex_state = 143, .external_lex_state = 18}, + [1086] = {.lex_state = 295, .external_lex_state = 17}, + [1087] = {.lex_state = 164}, + [1088] = {.lex_state = 169}, + [1089] = {.lex_state = 295, .external_lex_state = 17}, + [1090] = {.lex_state = 174, .external_lex_state = 6}, + [1091] = {.lex_state = 20, .external_lex_state = 2}, + [1092] = {.lex_state = 20, .external_lex_state = 2}, + [1093] = {.lex_state = 20, .external_lex_state = 2}, + [1094] = {.lex_state = 293, .external_lex_state = 18}, + [1095] = {.lex_state = 293, .external_lex_state = 18}, + [1096] = {.lex_state = 299, .external_lex_state = 24}, + [1097] = {.lex_state = 293, .external_lex_state = 18}, + [1098] = {.lex_state = 295, .external_lex_state = 17}, + [1099] = {.lex_state = 295, .external_lex_state = 17}, + [1100] = {.lex_state = 293, .external_lex_state = 18}, + [1101] = {.lex_state = 295, .external_lex_state = 18}, + [1102] = {.lex_state = 295, .external_lex_state = 18}, + [1103] = {.lex_state = 143, .external_lex_state = 18}, + [1104] = {.lex_state = 143, .external_lex_state = 18}, + [1105] = {.lex_state = 249, .external_lex_state = 15}, + [1106] = {.lex_state = 164}, + [1107] = {.lex_state = 169}, + [1108] = {.lex_state = 249, .external_lex_state = 15}, + [1109] = {.lex_state = 174, .external_lex_state = 6}, + [1110] = {.lex_state = 20, .external_lex_state = 2}, + [1111] = {.lex_state = 20, .external_lex_state = 2}, + [1112] = {.lex_state = 20, .external_lex_state = 2}, + [1113] = {.lex_state = 297, .external_lex_state = 18}, + [1114] = {.lex_state = 103}, + [1115] = {.lex_state = 324, .external_lex_state = 18}, + [1116] = {.lex_state = 297, .external_lex_state = 18}, + [1117] = {.lex_state = 185, .external_lex_state = 9}, + [1118] = {.lex_state = 141}, + [1119] = {.lex_state = 243, .external_lex_state = 23}, + [1120] = {.lex_state = 243, .external_lex_state = 23}, + [1121] = {.lex_state = 164}, + [1122] = {.lex_state = 243, .external_lex_state = 23}, + [1123] = {.lex_state = 243, .external_lex_state = 23}, + [1124] = {.lex_state = 243, .external_lex_state = 23}, + [1125] = {.lex_state = 103}, + [1126] = {.lex_state = 226, .external_lex_state = 16}, + [1127] = {.lex_state = 235, .external_lex_state = 6}, + [1128] = {.lex_state = 226, .external_lex_state = 16}, + [1129] = {.lex_state = 226, .external_lex_state = 16}, + [1130] = {.lex_state = 103}, + [1131] = {.lex_state = 241, .external_lex_state = 2}, + [1132] = {.lex_state = 103}, + [1133] = {.lex_state = 249, .external_lex_state = 2}, + [1134] = {.lex_state = 103}, + [1135] = {.lex_state = 241, .external_lex_state = 2}, + [1136] = {.lex_state = 243, .external_lex_state = 6}, + [1137] = {.lex_state = 141}, + [1138] = {.lex_state = 243, .external_lex_state = 13}, + [1139] = {.lex_state = 243, .external_lex_state = 13}, + [1140] = {.lex_state = 164}, + [1141] = {.lex_state = 243, .external_lex_state = 13}, + [1142] = {.lex_state = 243, .external_lex_state = 13}, + [1143] = {.lex_state = 243, .external_lex_state = 13}, + [1144] = {.lex_state = 103}, + [1145] = {.lex_state = 226, .external_lex_state = 16}, + [1146] = {.lex_state = 235, .external_lex_state = 6}, + [1147] = {.lex_state = 226, .external_lex_state = 16}, + [1148] = {.lex_state = 226, .external_lex_state = 16}, + [1149] = {.lex_state = 103}, + [1150] = {.lex_state = 241, .external_lex_state = 2}, + [1151] = {.lex_state = 103}, + [1152] = {.lex_state = 249, .external_lex_state = 2}, + [1153] = {.lex_state = 103}, + [1154] = {.lex_state = 241, .external_lex_state = 2}, + [1155] = {.lex_state = 237}, + [1156] = {.lex_state = 245, .external_lex_state = 17}, + [1157] = {.lex_state = 245, .external_lex_state = 17}, + [1158] = {.lex_state = 245, .external_lex_state = 17}, + [1159] = {.lex_state = 284, .external_lex_state = 16}, + [1160] = {.lex_state = 245, .external_lex_state = 17}, + [1161] = {.lex_state = 288}, + [1162] = {.lex_state = 286, .external_lex_state = 16}, + [1163] = {.lex_state = 103}, + [1164] = {.lex_state = 226, .external_lex_state = 16}, + [1165] = {.lex_state = 226, .external_lex_state = 16}, + [1166] = {.lex_state = 226, .external_lex_state = 16}, + [1167] = {.lex_state = 245, .external_lex_state = 17}, + [1168] = {.lex_state = 288}, + [1169] = {.lex_state = 286, .external_lex_state = 16}, + [1170] = {.lex_state = 245, .external_lex_state = 17}, + [1171] = {.lex_state = 288}, + [1172] = {.lex_state = 286, .external_lex_state = 16}, + [1173] = {.lex_state = 245, .external_lex_state = 17}, + [1174] = {.lex_state = 245, .external_lex_state = 17}, + [1175] = {.lex_state = 103}, + [1176] = {.lex_state = 249, .external_lex_state = 2}, + [1177] = {.lex_state = 103}, + [1178] = {.lex_state = 249, .external_lex_state = 2}, + [1179] = {.lex_state = 141}, + [1180] = {.lex_state = 245, .external_lex_state = 17}, + [1181] = {.lex_state = 245, .external_lex_state = 17}, + [1182] = {.lex_state = 297, .external_lex_state = 17}, + [1183] = {.lex_state = 164}, + [1184] = {.lex_state = 169}, + [1185] = {.lex_state = 297, .external_lex_state = 17}, + [1186] = {.lex_state = 174, .external_lex_state = 6}, + [1187] = {.lex_state = 20, .external_lex_state = 2}, + [1188] = {.lex_state = 20, .external_lex_state = 2}, + [1189] = {.lex_state = 20, .external_lex_state = 2}, + [1190] = {.lex_state = 297, .external_lex_state = 17}, + [1191] = {.lex_state = 297, .external_lex_state = 17}, + [1192] = {.lex_state = 297, .external_lex_state = 18}, + [1193] = {.lex_state = 297, .external_lex_state = 18}, + [1194] = {.lex_state = 245, .external_lex_state = 18}, + [1195] = {.lex_state = 245, .external_lex_state = 18}, + [1196] = {.lex_state = 279, .external_lex_state = 7}, + [1197] = {.lex_state = 257, .external_lex_state = 5}, + [1198] = {.lex_state = 257, .external_lex_state = 5}, + [1199] = {.lex_state = 253, .external_lex_state = 7}, + [1200] = {.lex_state = 141}, + [1201] = {.lex_state = 257, .external_lex_state = 5}, + [1202] = {.lex_state = 257, .external_lex_state = 5}, + [1203] = {.lex_state = 164}, + [1204] = {.lex_state = 257, .external_lex_state = 5}, + [1205] = {.lex_state = 257, .external_lex_state = 5}, + [1206] = {.lex_state = 257, .external_lex_state = 5}, + [1207] = {.lex_state = 103}, + [1208] = {.lex_state = 226, .external_lex_state = 16}, + [1209] = {.lex_state = 235, .external_lex_state = 6}, + [1210] = {.lex_state = 226, .external_lex_state = 16}, + [1211] = {.lex_state = 226, .external_lex_state = 16}, + [1212] = {.lex_state = 103}, + [1213] = {.lex_state = 241, .external_lex_state = 2}, + [1214] = {.lex_state = 103}, + [1215] = {.lex_state = 249, .external_lex_state = 2}, + [1216] = {.lex_state = 103}, + [1217] = {.lex_state = 241, .external_lex_state = 2}, + [1218] = {.lex_state = 299, .external_lex_state = 24}, + [1219] = {.lex_state = 253, .external_lex_state = 7}, + [1220] = {.lex_state = 169}, + [1221] = {.lex_state = 174, .external_lex_state = 6}, + [1222] = {.lex_state = 299, .external_lex_state = 24}, + [1223] = {.lex_state = 141, .external_lex_state = 15}, + [1224] = {.lex_state = 141, .external_lex_state = 15}, + [1225] = {.lex_state = 257, .external_lex_state = 7}, + [1226] = {.lex_state = 304, .external_lex_state = 13}, + [1227] = {.lex_state = 259, .external_lex_state = 11}, + [1228] = {.lex_state = 103}, + [1229] = {.lex_state = 141}, + [1230] = {.lex_state = 259, .external_lex_state = 11}, + [1231] = {.lex_state = 259, .external_lex_state = 11}, + [1232] = {.lex_state = 304, .external_lex_state = 13}, [1233] = {.lex_state = 103}, - [1234] = {.lex_state = 247, .external_lex_state = 2}, - [1235] = {.lex_state = 103}, - [1236] = {.lex_state = 239, .external_lex_state = 2}, - [1237] = {.lex_state = 103}, - [1238] = {.lex_state = 299, .external_lex_state = 4}, - [1239] = {.lex_state = 259, .external_lex_state = 2}, - [1240] = {.lex_state = 251, .external_lex_state = 7}, - [1241] = {.lex_state = 259, .external_lex_state = 2}, - [1242] = {.lex_state = 103}, - [1243] = {.lex_state = 301, .external_lex_state = 2}, - [1244] = {.lex_state = 149, .external_lex_state = 4}, - [1245] = {.lex_state = 180, .external_lex_state = 8}, - [1246] = {.lex_state = 301, .external_lex_state = 2}, - [1247] = {.lex_state = 265, .external_lex_state = 2}, - [1248] = {.lex_state = 191, .external_lex_state = 4}, - [1249] = {.lex_state = 103}, - [1250] = {.lex_state = 265, .external_lex_state = 2}, - [1251] = {.lex_state = 103}, - [1252] = {.lex_state = 103}, - [1253] = {.lex_state = 191, .external_lex_state = 4}, - [1254] = {.lex_state = 317, .external_lex_state = 13}, - [1255] = {.lex_state = 163}, - [1256] = {.lex_state = 168}, - [1257] = {.lex_state = 317, .external_lex_state = 13}, - [1258] = {.lex_state = 173, .external_lex_state = 6}, - [1259] = {.lex_state = 20, .external_lex_state = 2}, - [1260] = {.lex_state = 20, .external_lex_state = 2}, - [1261] = {.lex_state = 20, .external_lex_state = 2}, - [1262] = {.lex_state = 141}, - [1263] = {.lex_state = 103}, - [1264] = {.lex_state = 137}, - [1265] = {.lex_state = 141}, - [1266] = {.lex_state = 303}, - [1267] = {.lex_state = 191, .external_lex_state = 4}, - [1268] = {.lex_state = 103}, - [1269] = {.lex_state = 141}, - [1270] = {.lex_state = 303}, - [1271] = {.lex_state = 188, .external_lex_state = 10}, - [1272] = {.lex_state = 311, .external_lex_state = 22}, - [1273] = {.lex_state = 311, .external_lex_state = 22}, - [1274] = {.lex_state = 103, .external_lex_state = 16}, - [1275] = {.lex_state = 188, .external_lex_state = 10}, - [1276] = {.lex_state = 282, .external_lex_state = 16}, - [1277] = {.lex_state = 188, .external_lex_state = 10}, - [1278] = {.lex_state = 221, .external_lex_state = 16}, - [1279] = {.lex_state = 188, .external_lex_state = 10}, - [1280] = {.lex_state = 221, .external_lex_state = 16}, - [1281] = {.lex_state = 221, .external_lex_state = 16}, - [1282] = {.lex_state = 188, .external_lex_state = 10}, - [1283] = {.lex_state = 277, .external_lex_state = 7}, - [1284] = {.lex_state = 275, .external_lex_state = 21}, - [1285] = {.lex_state = 309, .external_lex_state = 7}, - [1286] = {.lex_state = 275, .external_lex_state = 21}, - [1287] = {.lex_state = 141}, - [1288] = {.lex_state = 319, .external_lex_state = 10}, - [1289] = {.lex_state = 163}, - [1290] = {.lex_state = 168}, - [1291] = {.lex_state = 319, .external_lex_state = 10}, - [1292] = {.lex_state = 173, .external_lex_state = 6}, - [1293] = {.lex_state = 20, .external_lex_state = 2}, - [1294] = {.lex_state = 20, .external_lex_state = 2}, - [1295] = {.lex_state = 20, .external_lex_state = 2}, - [1296] = {.lex_state = 191, .external_lex_state = 4}, - [1297] = {.lex_state = 141}, - [1298] = {.lex_state = 186, .external_lex_state = 20}, - [1299] = {.lex_state = 186, .external_lex_state = 20}, - [1300] = {.lex_state = 163}, - [1301] = {.lex_state = 186, .external_lex_state = 20}, - [1302] = {.lex_state = 186, .external_lex_state = 20}, - [1303] = {.lex_state = 186, .external_lex_state = 20}, - [1304] = {.lex_state = 103}, - [1305] = {.lex_state = 221, .external_lex_state = 16}, - [1306] = {.lex_state = 230, .external_lex_state = 6}, - [1307] = {.lex_state = 221, .external_lex_state = 16}, - [1308] = {.lex_state = 221, .external_lex_state = 16}, - [1309] = {.lex_state = 103}, - [1310] = {.lex_state = 239, .external_lex_state = 2}, - [1311] = {.lex_state = 103}, - [1312] = {.lex_state = 247, .external_lex_state = 2}, - [1313] = {.lex_state = 103}, - [1314] = {.lex_state = 239, .external_lex_state = 2}, - [1315] = {.lex_state = 251, .external_lex_state = 7}, - [1316] = {.lex_state = 103}, - [1317] = {.lex_state = 20}, - [1318] = {.lex_state = 141}, - [1319] = {.lex_state = 191, .external_lex_state = 14}, - [1320] = {.lex_state = 191, .external_lex_state = 14}, - [1321] = {.lex_state = 191, .external_lex_state = 14}, - [1322] = {.lex_state = 191, .external_lex_state = 14}, - [1323] = {.lex_state = 191, .external_lex_state = 14}, - [1324] = {.lex_state = 282, .external_lex_state = 16}, - [1325] = {.lex_state = 191, .external_lex_state = 14}, - [1326] = {.lex_state = 221, .external_lex_state = 16}, - [1327] = {.lex_state = 103}, - [1328] = {.lex_state = 221, .external_lex_state = 16}, - [1329] = {.lex_state = 221, .external_lex_state = 16}, - [1330] = {.lex_state = 221, .external_lex_state = 16}, - [1331] = {.lex_state = 191, .external_lex_state = 14}, - [1332] = {.lex_state = 221, .external_lex_state = 16}, - [1333] = {.lex_state = 191, .external_lex_state = 14}, - [1334] = {.lex_state = 221, .external_lex_state = 16}, - [1335] = {.lex_state = 191, .external_lex_state = 14}, - [1336] = {.lex_state = 191, .external_lex_state = 14}, - [1337] = {.lex_state = 191, .external_lex_state = 10}, - [1338] = {.lex_state = 191, .external_lex_state = 10}, - [1339] = {.lex_state = 191, .external_lex_state = 10}, - [1340] = {.lex_state = 282, .external_lex_state = 16}, - [1341] = {.lex_state = 191, .external_lex_state = 10}, - [1342] = {.lex_state = 221, .external_lex_state = 16}, - [1343] = {.lex_state = 103}, - [1344] = {.lex_state = 221, .external_lex_state = 16}, - [1345] = {.lex_state = 221, .external_lex_state = 16}, - [1346] = {.lex_state = 221, .external_lex_state = 16}, - [1347] = {.lex_state = 191, .external_lex_state = 10}, - [1348] = {.lex_state = 221, .external_lex_state = 16}, - [1349] = {.lex_state = 191, .external_lex_state = 10}, - [1350] = {.lex_state = 221, .external_lex_state = 16}, - [1351] = {.lex_state = 191, .external_lex_state = 10}, - [1352] = {.lex_state = 191, .external_lex_state = 10}, - [1353] = {.lex_state = 182, .external_lex_state = 5}, - [1354] = {.lex_state = 311, .external_lex_state = 22}, - [1355] = {.lex_state = 311, .external_lex_state = 22}, - [1356] = {.lex_state = 103, .external_lex_state = 16}, - [1357] = {.lex_state = 182, .external_lex_state = 5}, - [1358] = {.lex_state = 282, .external_lex_state = 16}, - [1359] = {.lex_state = 182, .external_lex_state = 5}, - [1360] = {.lex_state = 221, .external_lex_state = 16}, - [1361] = {.lex_state = 182, .external_lex_state = 5}, - [1362] = {.lex_state = 221, .external_lex_state = 16}, - [1363] = {.lex_state = 221, .external_lex_state = 16}, - [1364] = {.lex_state = 182, .external_lex_state = 5}, - [1365] = {.lex_state = 309, .external_lex_state = 7}, - [1366] = {.lex_state = 251, .external_lex_state = 5}, - [1367] = {.lex_state = 251, .external_lex_state = 5}, - [1368] = {.lex_state = 141}, - [1369] = {.lex_state = 251, .external_lex_state = 5}, - [1370] = {.lex_state = 251, .external_lex_state = 5}, - [1371] = {.lex_state = 163}, - [1372] = {.lex_state = 251, .external_lex_state = 5}, - [1373] = {.lex_state = 251, .external_lex_state = 5}, - [1374] = {.lex_state = 251, .external_lex_state = 5}, - [1375] = {.lex_state = 103}, - [1376] = {.lex_state = 221, .external_lex_state = 16}, - [1377] = {.lex_state = 230, .external_lex_state = 6}, - [1378] = {.lex_state = 221, .external_lex_state = 16}, - [1379] = {.lex_state = 221, .external_lex_state = 16}, + [1234] = {.lex_state = 284, .external_lex_state = 16}, + [1235] = {.lex_state = 259, .external_lex_state = 11}, + [1236] = {.lex_state = 288}, + [1237] = {.lex_state = 286, .external_lex_state = 16}, + [1238] = {.lex_state = 103}, + [1239] = {.lex_state = 226, .external_lex_state = 16}, + [1240] = {.lex_state = 226, .external_lex_state = 16}, + [1241] = {.lex_state = 226, .external_lex_state = 16}, + [1242] = {.lex_state = 259, .external_lex_state = 11}, + [1243] = {.lex_state = 288}, + [1244] = {.lex_state = 286, .external_lex_state = 16}, + [1245] = {.lex_state = 259, .external_lex_state = 11}, + [1246] = {.lex_state = 288}, + [1247] = {.lex_state = 286, .external_lex_state = 16}, + [1248] = {.lex_state = 259, .external_lex_state = 11}, + [1249] = {.lex_state = 259, .external_lex_state = 11}, + [1250] = {.lex_state = 141}, + [1251] = {.lex_state = 306, .external_lex_state = 13}, + [1252] = {.lex_state = 306, .external_lex_state = 13}, + [1253] = {.lex_state = 164}, + [1254] = {.lex_state = 306, .external_lex_state = 13}, + [1255] = {.lex_state = 306, .external_lex_state = 13}, + [1256] = {.lex_state = 306, .external_lex_state = 13}, + [1257] = {.lex_state = 103}, + [1258] = {.lex_state = 226, .external_lex_state = 16}, + [1259] = {.lex_state = 235, .external_lex_state = 6}, + [1260] = {.lex_state = 226, .external_lex_state = 16}, + [1261] = {.lex_state = 226, .external_lex_state = 16}, + [1262] = {.lex_state = 103}, + [1263] = {.lex_state = 241, .external_lex_state = 2}, + [1264] = {.lex_state = 103}, + [1265] = {.lex_state = 249, .external_lex_state = 2}, + [1266] = {.lex_state = 103}, + [1267] = {.lex_state = 241, .external_lex_state = 2}, + [1268] = {.lex_state = 187, .external_lex_state = 8}, + [1269] = {.lex_state = 241}, + [1270] = {.lex_state = 181, .external_lex_state = 20}, + [1271] = {.lex_state = 181, .external_lex_state = 20}, + [1272] = {.lex_state = 181, .external_lex_state = 20}, + [1273] = {.lex_state = 284, .external_lex_state = 16}, + [1274] = {.lex_state = 181, .external_lex_state = 20}, + [1275] = {.lex_state = 288}, + [1276] = {.lex_state = 286, .external_lex_state = 16}, + [1277] = {.lex_state = 103}, + [1278] = {.lex_state = 226, .external_lex_state = 16}, + [1279] = {.lex_state = 226, .external_lex_state = 16}, + [1280] = {.lex_state = 226, .external_lex_state = 16}, + [1281] = {.lex_state = 181, .external_lex_state = 20}, + [1282] = {.lex_state = 288}, + [1283] = {.lex_state = 286, .external_lex_state = 16}, + [1284] = {.lex_state = 181, .external_lex_state = 20}, + [1285] = {.lex_state = 288}, + [1286] = {.lex_state = 286, .external_lex_state = 16}, + [1287] = {.lex_state = 181, .external_lex_state = 20}, + [1288] = {.lex_state = 181, .external_lex_state = 20}, + [1289] = {.lex_state = 141}, + [1290] = {.lex_state = 308, .external_lex_state = 10}, + [1291] = {.lex_state = 308, .external_lex_state = 10}, + [1292] = {.lex_state = 164}, + [1293] = {.lex_state = 308, .external_lex_state = 10}, + [1294] = {.lex_state = 308, .external_lex_state = 10}, + [1295] = {.lex_state = 308, .external_lex_state = 10}, + [1296] = {.lex_state = 103}, + [1297] = {.lex_state = 226, .external_lex_state = 16}, + [1298] = {.lex_state = 235, .external_lex_state = 6}, + [1299] = {.lex_state = 226, .external_lex_state = 16}, + [1300] = {.lex_state = 226, .external_lex_state = 16}, + [1301] = {.lex_state = 103}, + [1302] = {.lex_state = 241, .external_lex_state = 2}, + [1303] = {.lex_state = 103}, + [1304] = {.lex_state = 249, .external_lex_state = 2}, + [1305] = {.lex_state = 103}, + [1306] = {.lex_state = 241, .external_lex_state = 2}, + [1307] = {.lex_state = 103}, + [1308] = {.lex_state = 308, .external_lex_state = 4}, + [1309] = {.lex_state = 261, .external_lex_state = 2}, + [1310] = {.lex_state = 253, .external_lex_state = 7}, + [1311] = {.lex_state = 261, .external_lex_state = 2}, + [1312] = {.lex_state = 103}, + [1313] = {.lex_state = 310, .external_lex_state = 2}, + [1314] = {.lex_state = 152, .external_lex_state = 4}, + [1315] = {.lex_state = 181, .external_lex_state = 8}, + [1316] = {.lex_state = 310, .external_lex_state = 2}, + [1317] = {.lex_state = 267, .external_lex_state = 2}, + [1318] = {.lex_state = 192, .external_lex_state = 4}, + [1319] = {.lex_state = 103}, + [1320] = {.lex_state = 267, .external_lex_state = 2}, + [1321] = {.lex_state = 103}, + [1322] = {.lex_state = 103}, + [1323] = {.lex_state = 192, .external_lex_state = 4}, + [1324] = {.lex_state = 326, .external_lex_state = 13}, + [1325] = {.lex_state = 164}, + [1326] = {.lex_state = 169}, + [1327] = {.lex_state = 326, .external_lex_state = 13}, + [1328] = {.lex_state = 174, .external_lex_state = 6}, + [1329] = {.lex_state = 20, .external_lex_state = 2}, + [1330] = {.lex_state = 20, .external_lex_state = 2}, + [1331] = {.lex_state = 20, .external_lex_state = 2}, + [1332] = {.lex_state = 141}, + [1333] = {.lex_state = 103}, + [1334] = {.lex_state = 137}, + [1335] = {.lex_state = 141}, + [1336] = {.lex_state = 312}, + [1337] = {.lex_state = 192, .external_lex_state = 4}, + [1338] = {.lex_state = 103}, + [1339] = {.lex_state = 141}, + [1340] = {.lex_state = 312}, + [1341] = {.lex_state = 189, .external_lex_state = 10}, + [1342] = {.lex_state = 320, .external_lex_state = 22}, + [1343] = {.lex_state = 320, .external_lex_state = 22}, + [1344] = {.lex_state = 103, .external_lex_state = 16}, + [1345] = {.lex_state = 286, .external_lex_state = 16}, + [1346] = {.lex_state = 189, .external_lex_state = 10}, + [1347] = {.lex_state = 284, .external_lex_state = 16}, + [1348] = {.lex_state = 189, .external_lex_state = 10}, + [1349] = {.lex_state = 288}, + [1350] = {.lex_state = 286, .external_lex_state = 16}, + [1351] = {.lex_state = 189, .external_lex_state = 10}, + [1352] = {.lex_state = 288}, + [1353] = {.lex_state = 286, .external_lex_state = 16}, + [1354] = {.lex_state = 288}, + [1355] = {.lex_state = 286, .external_lex_state = 16}, + [1356] = {.lex_state = 286, .external_lex_state = 16}, + [1357] = {.lex_state = 189, .external_lex_state = 10}, + [1358] = {.lex_state = 286, .external_lex_state = 16}, + [1359] = {.lex_state = 279, .external_lex_state = 7}, + [1360] = {.lex_state = 277, .external_lex_state = 21}, + [1361] = {.lex_state = 318, .external_lex_state = 7}, + [1362] = {.lex_state = 277, .external_lex_state = 21}, + [1363] = {.lex_state = 141}, + [1364] = {.lex_state = 328, .external_lex_state = 10}, + [1365] = {.lex_state = 164}, + [1366] = {.lex_state = 169}, + [1367] = {.lex_state = 328, .external_lex_state = 10}, + [1368] = {.lex_state = 174, .external_lex_state = 6}, + [1369] = {.lex_state = 20, .external_lex_state = 2}, + [1370] = {.lex_state = 20, .external_lex_state = 2}, + [1371] = {.lex_state = 20, .external_lex_state = 2}, + [1372] = {.lex_state = 192, .external_lex_state = 4}, + [1373] = {.lex_state = 141}, + [1374] = {.lex_state = 187, .external_lex_state = 20}, + [1375] = {.lex_state = 187, .external_lex_state = 20}, + [1376] = {.lex_state = 164}, + [1377] = {.lex_state = 187, .external_lex_state = 20}, + [1378] = {.lex_state = 187, .external_lex_state = 20}, + [1379] = {.lex_state = 187, .external_lex_state = 20}, [1380] = {.lex_state = 103}, - [1381] = {.lex_state = 239, .external_lex_state = 2}, - [1382] = {.lex_state = 103}, - [1383] = {.lex_state = 247, .external_lex_state = 2}, - [1384] = {.lex_state = 103}, - [1385] = {.lex_state = 239, .external_lex_state = 2}, - [1386] = {.lex_state = 191, .external_lex_state = 4}, - [1387] = {.lex_state = 251, .external_lex_state = 7}, - [1388] = {.lex_state = 212, .external_lex_state = 11}, - [1389] = {.lex_state = 311, .external_lex_state = 22}, - [1390] = {.lex_state = 311, .external_lex_state = 22}, - [1391] = {.lex_state = 103, .external_lex_state = 16}, - [1392] = {.lex_state = 212, .external_lex_state = 11}, - [1393] = {.lex_state = 282, .external_lex_state = 16}, - [1394] = {.lex_state = 212, .external_lex_state = 11}, - [1395] = {.lex_state = 221, .external_lex_state = 16}, - [1396] = {.lex_state = 212, .external_lex_state = 11}, - [1397] = {.lex_state = 221, .external_lex_state = 16}, - [1398] = {.lex_state = 221, .external_lex_state = 16}, - [1399] = {.lex_state = 212, .external_lex_state = 11}, - [1400] = {.lex_state = 214, .external_lex_state = 13}, - [1401] = {.lex_state = 311, .external_lex_state = 22}, - [1402] = {.lex_state = 311, .external_lex_state = 22}, - [1403] = {.lex_state = 103, .external_lex_state = 16}, - [1404] = {.lex_state = 214, .external_lex_state = 13}, - [1405] = {.lex_state = 282, .external_lex_state = 16}, - [1406] = {.lex_state = 214, .external_lex_state = 13}, - [1407] = {.lex_state = 221, .external_lex_state = 16}, - [1408] = {.lex_state = 214, .external_lex_state = 13}, - [1409] = {.lex_state = 221, .external_lex_state = 16}, - [1410] = {.lex_state = 221, .external_lex_state = 16}, - [1411] = {.lex_state = 214, .external_lex_state = 13}, - [1412] = {.lex_state = 191, .external_lex_state = 3}, - [1413] = {.lex_state = 234}, - [1414] = {.lex_state = 149, .external_lex_state = 14}, - [1415] = {.lex_state = 311, .external_lex_state = 22}, - [1416] = {.lex_state = 311, .external_lex_state = 22}, - [1417] = {.lex_state = 103, .external_lex_state = 16}, - [1418] = {.lex_state = 149, .external_lex_state = 14}, - [1419] = {.lex_state = 282, .external_lex_state = 16}, - [1420] = {.lex_state = 149, .external_lex_state = 14}, - [1421] = {.lex_state = 221, .external_lex_state = 16}, - [1422] = {.lex_state = 149, .external_lex_state = 14}, - [1423] = {.lex_state = 221, .external_lex_state = 16}, - [1424] = {.lex_state = 221, .external_lex_state = 16}, - [1425] = {.lex_state = 149, .external_lex_state = 14}, - [1426] = {.lex_state = 149, .external_lex_state = 10}, - [1427] = {.lex_state = 311, .external_lex_state = 22}, - [1428] = {.lex_state = 311, .external_lex_state = 22}, - [1429] = {.lex_state = 103, .external_lex_state = 16}, - [1430] = {.lex_state = 149, .external_lex_state = 10}, - [1431] = {.lex_state = 282, .external_lex_state = 16}, - [1432] = {.lex_state = 149, .external_lex_state = 10}, - [1433] = {.lex_state = 221, .external_lex_state = 16}, - [1434] = {.lex_state = 149, .external_lex_state = 10}, - [1435] = {.lex_state = 221, .external_lex_state = 16}, - [1436] = {.lex_state = 221, .external_lex_state = 16}, - [1437] = {.lex_state = 149, .external_lex_state = 10}, - [1438] = {.lex_state = 141, .external_lex_state = 15}, - [1439] = {.lex_state = 311, .external_lex_state = 22}, - [1440] = {.lex_state = 311, .external_lex_state = 22}, - [1441] = {.lex_state = 103, .external_lex_state = 16}, - [1442] = {.lex_state = 141, .external_lex_state = 15}, - [1443] = {.lex_state = 282, .external_lex_state = 16}, - [1444] = {.lex_state = 141, .external_lex_state = 15}, - [1445] = {.lex_state = 221, .external_lex_state = 16}, - [1446] = {.lex_state = 141, .external_lex_state = 15}, - [1447] = {.lex_state = 221, .external_lex_state = 16}, - [1448] = {.lex_state = 221, .external_lex_state = 16}, - [1449] = {.lex_state = 141, .external_lex_state = 15}, - [1450] = {.lex_state = 163, .external_lex_state = 13}, - [1451] = {.lex_state = 311, .external_lex_state = 22}, - [1452] = {.lex_state = 311, .external_lex_state = 22}, - [1453] = {.lex_state = 103, .external_lex_state = 16}, - [1454] = {.lex_state = 163, .external_lex_state = 13}, - [1455] = {.lex_state = 282, .external_lex_state = 16}, - [1456] = {.lex_state = 163, .external_lex_state = 13}, - [1457] = {.lex_state = 221, .external_lex_state = 16}, - [1458] = {.lex_state = 163, .external_lex_state = 13}, - [1459] = {.lex_state = 221, .external_lex_state = 16}, - [1460] = {.lex_state = 221, .external_lex_state = 16}, - [1461] = {.lex_state = 163, .external_lex_state = 13}, - [1462] = {.lex_state = 293, .external_lex_state = 12}, - [1463] = {.lex_state = 221, .external_lex_state = 22}, - [1464] = {.lex_state = 293, .external_lex_state = 12}, - [1465] = {.lex_state = 221, .external_lex_state = 22}, - [1466] = {.lex_state = 103, .external_lex_state = 12}, - [1467] = {.lex_state = 141}, - [1468] = {.lex_state = 156, .external_lex_state = 5}, - [1469] = {.lex_state = 311, .external_lex_state = 22}, - [1470] = {.lex_state = 311, .external_lex_state = 22}, - [1471] = {.lex_state = 163}, - [1472] = {.lex_state = 311, .external_lex_state = 22}, - [1473] = {.lex_state = 311, .external_lex_state = 22}, - [1474] = {.lex_state = 311, .external_lex_state = 22}, - [1475] = {.lex_state = 156, .external_lex_state = 5}, - [1476] = {.lex_state = 103}, - [1477] = {.lex_state = 221, .external_lex_state = 16}, - [1478] = {.lex_state = 230, .external_lex_state = 6}, - [1479] = {.lex_state = 221, .external_lex_state = 16}, - [1480] = {.lex_state = 221, .external_lex_state = 16}, - [1481] = {.lex_state = 103}, - [1482] = {.lex_state = 239, .external_lex_state = 2}, - [1483] = {.lex_state = 103}, - [1484] = {.lex_state = 247, .external_lex_state = 2}, - [1485] = {.lex_state = 103}, - [1486] = {.lex_state = 239, .external_lex_state = 2}, - [1487] = {.lex_state = 221, .external_lex_state = 22}, - [1488] = {.lex_state = 221, .external_lex_state = 22}, - [1489] = {.lex_state = 221, .external_lex_state = 22}, - [1490] = {.lex_state = 282, .external_lex_state = 16}, - [1491] = {.lex_state = 221, .external_lex_state = 22}, - [1492] = {.lex_state = 221, .external_lex_state = 16}, - [1493] = {.lex_state = 103}, - [1494] = {.lex_state = 221, .external_lex_state = 16}, - [1495] = {.lex_state = 221, .external_lex_state = 16}, - [1496] = {.lex_state = 221, .external_lex_state = 16}, - [1497] = {.lex_state = 221, .external_lex_state = 22}, - [1498] = {.lex_state = 221, .external_lex_state = 16}, - [1499] = {.lex_state = 221, .external_lex_state = 22}, - [1500] = {.lex_state = 221, .external_lex_state = 16}, - [1501] = {.lex_state = 221, .external_lex_state = 22}, - [1502] = {.lex_state = 221, .external_lex_state = 22}, - [1503] = {.lex_state = 311, .external_lex_state = 22}, - [1504] = {.lex_state = 311, .external_lex_state = 22}, - [1505] = {.lex_state = 103, .external_lex_state = 16}, - [1506] = {.lex_state = 156, .external_lex_state = 5}, - [1507] = {.lex_state = 156, .external_lex_state = 5}, - [1508] = {.lex_state = 239, .external_lex_state = 2}, - [1509] = {.lex_state = 234}, - [1510] = {.lex_state = 141}, - [1511] = {.lex_state = 239, .external_lex_state = 15}, - [1512] = {.lex_state = 239, .external_lex_state = 15}, - [1513] = {.lex_state = 163}, - [1514] = {.lex_state = 239, .external_lex_state = 15}, - [1515] = {.lex_state = 239, .external_lex_state = 15}, - [1516] = {.lex_state = 239, .external_lex_state = 15}, - [1517] = {.lex_state = 103}, - [1518] = {.lex_state = 221, .external_lex_state = 16}, - [1519] = {.lex_state = 230, .external_lex_state = 6}, - [1520] = {.lex_state = 221, .external_lex_state = 16}, - [1521] = {.lex_state = 221, .external_lex_state = 16}, - [1522] = {.lex_state = 103}, - [1523] = {.lex_state = 239, .external_lex_state = 2}, - [1524] = {.lex_state = 103}, - [1525] = {.lex_state = 247, .external_lex_state = 2}, - [1526] = {.lex_state = 103}, - [1527] = {.lex_state = 239, .external_lex_state = 2}, - [1528] = {.lex_state = 299, .external_lex_state = 4}, - [1529] = {.lex_state = 284, .external_lex_state = 18}, - [1530] = {.lex_state = 259, .external_lex_state = 2}, - [1531] = {.lex_state = 286, .external_lex_state = 18}, - [1532] = {.lex_state = 103}, - [1533] = {.lex_state = 103}, - [1534] = {.lex_state = 265, .external_lex_state = 2}, - [1535] = {.lex_state = 103}, - [1536] = {.lex_state = 303}, - [1537] = {.lex_state = 188, .external_lex_state = 4}, - [1538] = {.lex_state = 303}, - [1539] = {.lex_state = 188, .external_lex_state = 4}, - [1540] = {.lex_state = 103}, - [1541] = {.lex_state = 321, .external_lex_state = 18}, - [1542] = {.lex_state = 275, .external_lex_state = 21}, - [1543] = {.lex_state = 20}, - [1544] = {.lex_state = 141}, - [1545] = {.lex_state = 103}, - [1546] = {.lex_state = 103}, - [1547] = {.lex_state = 280, .external_lex_state = 2}, - [1548] = {.lex_state = 232, .external_lex_state = 6}, - [1549] = {.lex_state = 234}, - [1550] = {.lex_state = 232, .external_lex_state = 23}, - [1551] = {.lex_state = 232, .external_lex_state = 23}, - [1552] = {.lex_state = 232, .external_lex_state = 23}, - [1553] = {.lex_state = 232, .external_lex_state = 23}, - [1554] = {.lex_state = 232, .external_lex_state = 23}, - [1555] = {.lex_state = 282, .external_lex_state = 16}, - [1556] = {.lex_state = 232, .external_lex_state = 23}, - [1557] = {.lex_state = 221, .external_lex_state = 16}, - [1558] = {.lex_state = 103}, - [1559] = {.lex_state = 221, .external_lex_state = 16}, - [1560] = {.lex_state = 221, .external_lex_state = 16}, - [1561] = {.lex_state = 221, .external_lex_state = 16}, - [1562] = {.lex_state = 232, .external_lex_state = 23}, - [1563] = {.lex_state = 221, .external_lex_state = 16}, - [1564] = {.lex_state = 232, .external_lex_state = 23}, - [1565] = {.lex_state = 221, .external_lex_state = 16}, - [1566] = {.lex_state = 232, .external_lex_state = 23}, - [1567] = {.lex_state = 232, .external_lex_state = 23}, - [1568] = {.lex_state = 232, .external_lex_state = 13}, - [1569] = {.lex_state = 232, .external_lex_state = 13}, - [1570] = {.lex_state = 232, .external_lex_state = 13}, - [1571] = {.lex_state = 282, .external_lex_state = 16}, - [1572] = {.lex_state = 232, .external_lex_state = 13}, - [1573] = {.lex_state = 221, .external_lex_state = 16}, - [1574] = {.lex_state = 103}, - [1575] = {.lex_state = 221, .external_lex_state = 16}, - [1576] = {.lex_state = 221, .external_lex_state = 16}, - [1577] = {.lex_state = 221, .external_lex_state = 16}, - [1578] = {.lex_state = 232, .external_lex_state = 13}, - [1579] = {.lex_state = 221, .external_lex_state = 16}, - [1580] = {.lex_state = 232, .external_lex_state = 13}, - [1581] = {.lex_state = 221, .external_lex_state = 16}, - [1582] = {.lex_state = 232, .external_lex_state = 13}, - [1583] = {.lex_state = 232, .external_lex_state = 13}, - [1584] = {.lex_state = 234, .external_lex_state = 17}, - [1585] = {.lex_state = 311, .external_lex_state = 22}, - [1586] = {.lex_state = 311, .external_lex_state = 22}, - [1587] = {.lex_state = 103, .external_lex_state = 16}, - [1588] = {.lex_state = 234, .external_lex_state = 17}, - [1589] = {.lex_state = 282, .external_lex_state = 16}, - [1590] = {.lex_state = 234, .external_lex_state = 17}, - [1591] = {.lex_state = 221, .external_lex_state = 16}, - [1592] = {.lex_state = 234, .external_lex_state = 17}, - [1593] = {.lex_state = 221, .external_lex_state = 16}, - [1594] = {.lex_state = 221, .external_lex_state = 16}, - [1595] = {.lex_state = 234, .external_lex_state = 17}, - [1596] = {.lex_state = 313, .external_lex_state = 18}, - [1597] = {.lex_state = 286, .external_lex_state = 17}, - [1598] = {.lex_state = 286, .external_lex_state = 17}, - [1599] = {.lex_state = 284, .external_lex_state = 18}, - [1600] = {.lex_state = 141}, - [1601] = {.lex_state = 286, .external_lex_state = 17}, - [1602] = {.lex_state = 286, .external_lex_state = 17}, - [1603] = {.lex_state = 163}, - [1604] = {.lex_state = 286, .external_lex_state = 17}, - [1605] = {.lex_state = 286, .external_lex_state = 17}, - [1606] = {.lex_state = 286, .external_lex_state = 17}, - [1607] = {.lex_state = 103}, - [1608] = {.lex_state = 221, .external_lex_state = 16}, - [1609] = {.lex_state = 230, .external_lex_state = 6}, - [1610] = {.lex_state = 221, .external_lex_state = 16}, - [1611] = {.lex_state = 221, .external_lex_state = 16}, - [1612] = {.lex_state = 103}, - [1613] = {.lex_state = 239, .external_lex_state = 2}, - [1614] = {.lex_state = 103}, - [1615] = {.lex_state = 247, .external_lex_state = 2}, - [1616] = {.lex_state = 103}, - [1617] = {.lex_state = 239, .external_lex_state = 2}, - [1618] = {.lex_state = 284, .external_lex_state = 18}, - [1619] = {.lex_state = 290, .external_lex_state = 24}, - [1620] = {.lex_state = 286, .external_lex_state = 18}, - [1621] = {.lex_state = 141}, - [1622] = {.lex_state = 247, .external_lex_state = 15}, - [1623] = {.lex_state = 247, .external_lex_state = 15}, - [1624] = {.lex_state = 163}, - [1625] = {.lex_state = 247, .external_lex_state = 15}, - [1626] = {.lex_state = 247, .external_lex_state = 15}, - [1627] = {.lex_state = 247, .external_lex_state = 15}, - [1628] = {.lex_state = 103}, - [1629] = {.lex_state = 221, .external_lex_state = 16}, - [1630] = {.lex_state = 230, .external_lex_state = 6}, - [1631] = {.lex_state = 221, .external_lex_state = 16}, - [1632] = {.lex_state = 221, .external_lex_state = 16}, - [1633] = {.lex_state = 103}, - [1634] = {.lex_state = 239, .external_lex_state = 2}, - [1635] = {.lex_state = 103}, - [1636] = {.lex_state = 247, .external_lex_state = 2}, - [1637] = {.lex_state = 103}, - [1638] = {.lex_state = 239, .external_lex_state = 2}, - [1639] = {.lex_state = 288, .external_lex_state = 18}, - [1640] = {.lex_state = 103}, - [1641] = {.lex_state = 20}, - [1642] = {.lex_state = 141}, - [1643] = {.lex_state = 241, .external_lex_state = 23}, - [1644] = {.lex_state = 241, .external_lex_state = 23}, - [1645] = {.lex_state = 241, .external_lex_state = 23}, - [1646] = {.lex_state = 241, .external_lex_state = 23}, - [1647] = {.lex_state = 241, .external_lex_state = 23}, - [1648] = {.lex_state = 282, .external_lex_state = 16}, - [1649] = {.lex_state = 241, .external_lex_state = 23}, - [1650] = {.lex_state = 221, .external_lex_state = 16}, - [1651] = {.lex_state = 103}, - [1652] = {.lex_state = 221, .external_lex_state = 16}, - [1653] = {.lex_state = 221, .external_lex_state = 16}, - [1654] = {.lex_state = 221, .external_lex_state = 16}, - [1655] = {.lex_state = 241, .external_lex_state = 23}, - [1656] = {.lex_state = 221, .external_lex_state = 16}, - [1657] = {.lex_state = 241, .external_lex_state = 23}, - [1658] = {.lex_state = 221, .external_lex_state = 16}, - [1659] = {.lex_state = 241, .external_lex_state = 23}, - [1660] = {.lex_state = 241, .external_lex_state = 23}, - [1661] = {.lex_state = 241, .external_lex_state = 13}, - [1662] = {.lex_state = 241, .external_lex_state = 13}, - [1663] = {.lex_state = 241, .external_lex_state = 13}, - [1664] = {.lex_state = 282, .external_lex_state = 16}, - [1665] = {.lex_state = 241, .external_lex_state = 13}, - [1666] = {.lex_state = 221, .external_lex_state = 16}, - [1667] = {.lex_state = 103}, - [1668] = {.lex_state = 221, .external_lex_state = 16}, - [1669] = {.lex_state = 221, .external_lex_state = 16}, - [1670] = {.lex_state = 221, .external_lex_state = 16}, - [1671] = {.lex_state = 241, .external_lex_state = 13}, - [1672] = {.lex_state = 221, .external_lex_state = 16}, - [1673] = {.lex_state = 241, .external_lex_state = 13}, - [1674] = {.lex_state = 221, .external_lex_state = 16}, - [1675] = {.lex_state = 241, .external_lex_state = 13}, - [1676] = {.lex_state = 241, .external_lex_state = 13}, - [1677] = {.lex_state = 243, .external_lex_state = 17}, - [1678] = {.lex_state = 311, .external_lex_state = 22}, - [1679] = {.lex_state = 311, .external_lex_state = 22}, - [1680] = {.lex_state = 103, .external_lex_state = 16}, - [1681] = {.lex_state = 243, .external_lex_state = 17}, - [1682] = {.lex_state = 282, .external_lex_state = 16}, - [1683] = {.lex_state = 243, .external_lex_state = 17}, - [1684] = {.lex_state = 221, .external_lex_state = 16}, - [1685] = {.lex_state = 243, .external_lex_state = 17}, - [1686] = {.lex_state = 221, .external_lex_state = 16}, - [1687] = {.lex_state = 221, .external_lex_state = 16}, - [1688] = {.lex_state = 243, .external_lex_state = 17}, - [1689] = {.lex_state = 315, .external_lex_state = 18}, - [1690] = {.lex_state = 288, .external_lex_state = 17}, - [1691] = {.lex_state = 288, .external_lex_state = 17}, - [1692] = {.lex_state = 141}, - [1693] = {.lex_state = 288, .external_lex_state = 17}, - [1694] = {.lex_state = 288, .external_lex_state = 17}, - [1695] = {.lex_state = 163}, - [1696] = {.lex_state = 288, .external_lex_state = 17}, - [1697] = {.lex_state = 288, .external_lex_state = 17}, - [1698] = {.lex_state = 288, .external_lex_state = 17}, - [1699] = {.lex_state = 103}, - [1700] = {.lex_state = 221, .external_lex_state = 16}, - [1701] = {.lex_state = 230, .external_lex_state = 6}, - [1702] = {.lex_state = 221, .external_lex_state = 16}, - [1703] = {.lex_state = 221, .external_lex_state = 16}, - [1704] = {.lex_state = 103}, - [1705] = {.lex_state = 239, .external_lex_state = 2}, - [1706] = {.lex_state = 103}, - [1707] = {.lex_state = 247, .external_lex_state = 2}, - [1708] = {.lex_state = 103}, - [1709] = {.lex_state = 239, .external_lex_state = 2}, - [1710] = {.lex_state = 288, .external_lex_state = 18}, - [1711] = {.lex_state = 191, .external_lex_state = 4}, - [1712] = {.lex_state = 255, .external_lex_state = 5}, - [1713] = {.lex_state = 255, .external_lex_state = 5}, - [1714] = {.lex_state = 255, .external_lex_state = 5}, - [1715] = {.lex_state = 282, .external_lex_state = 16}, - [1716] = {.lex_state = 255, .external_lex_state = 5}, - [1717] = {.lex_state = 221, .external_lex_state = 16}, - [1718] = {.lex_state = 103}, - [1719] = {.lex_state = 221, .external_lex_state = 16}, - [1720] = {.lex_state = 221, .external_lex_state = 16}, - [1721] = {.lex_state = 221, .external_lex_state = 16}, - [1722] = {.lex_state = 255, .external_lex_state = 5}, - [1723] = {.lex_state = 221, .external_lex_state = 16}, - [1724] = {.lex_state = 255, .external_lex_state = 5}, - [1725] = {.lex_state = 221, .external_lex_state = 16}, - [1726] = {.lex_state = 255, .external_lex_state = 5}, - [1727] = {.lex_state = 255, .external_lex_state = 5}, - [1728] = {.lex_state = 290, .external_lex_state = 24}, - [1729] = {.lex_state = 290, .external_lex_state = 24}, - [1730] = {.lex_state = 103}, - [1731] = {.lex_state = 221, .external_lex_state = 16}, - [1732] = {.lex_state = 230, .external_lex_state = 6}, - [1733] = {.lex_state = 221, .external_lex_state = 16}, - [1734] = {.lex_state = 221, .external_lex_state = 16}, - [1735] = {.lex_state = 251, .external_lex_state = 7}, - [1736] = {.lex_state = 290, .external_lex_state = 24}, - [1737] = {.lex_state = 103}, - [1738] = {.lex_state = 103}, - [1739] = {.lex_state = 257, .external_lex_state = 11}, - [1740] = {.lex_state = 311, .external_lex_state = 22}, - [1741] = {.lex_state = 311, .external_lex_state = 22}, - [1742] = {.lex_state = 103, .external_lex_state = 16}, - [1743] = {.lex_state = 257, .external_lex_state = 11}, - [1744] = {.lex_state = 282, .external_lex_state = 16}, - [1745] = {.lex_state = 257, .external_lex_state = 11}, - [1746] = {.lex_state = 221, .external_lex_state = 16}, - [1747] = {.lex_state = 257, .external_lex_state = 11}, - [1748] = {.lex_state = 221, .external_lex_state = 16}, - [1749] = {.lex_state = 221, .external_lex_state = 16}, - [1750] = {.lex_state = 257, .external_lex_state = 11}, - [1751] = {.lex_state = 297, .external_lex_state = 13}, - [1752] = {.lex_state = 297, .external_lex_state = 13}, - [1753] = {.lex_state = 297, .external_lex_state = 13}, - [1754] = {.lex_state = 282, .external_lex_state = 16}, - [1755] = {.lex_state = 297, .external_lex_state = 13}, - [1756] = {.lex_state = 221, .external_lex_state = 16}, + [1381] = {.lex_state = 226, .external_lex_state = 16}, + [1382] = {.lex_state = 235, .external_lex_state = 6}, + [1383] = {.lex_state = 226, .external_lex_state = 16}, + [1384] = {.lex_state = 226, .external_lex_state = 16}, + [1385] = {.lex_state = 103}, + [1386] = {.lex_state = 241, .external_lex_state = 2}, + [1387] = {.lex_state = 103}, + [1388] = {.lex_state = 249, .external_lex_state = 2}, + [1389] = {.lex_state = 103}, + [1390] = {.lex_state = 241, .external_lex_state = 2}, + [1391] = {.lex_state = 253, .external_lex_state = 7}, + [1392] = {.lex_state = 103}, + [1393] = {.lex_state = 20}, + [1394] = {.lex_state = 141}, + [1395] = {.lex_state = 253, .external_lex_state = 7}, + [1396] = {.lex_state = 192, .external_lex_state = 14}, + [1397] = {.lex_state = 192, .external_lex_state = 14}, + [1398] = {.lex_state = 192, .external_lex_state = 14}, + [1399] = {.lex_state = 192, .external_lex_state = 14}, + [1400] = {.lex_state = 192, .external_lex_state = 14}, + [1401] = {.lex_state = 284, .external_lex_state = 16}, + [1402] = {.lex_state = 192, .external_lex_state = 14}, + [1403] = {.lex_state = 288}, + [1404] = {.lex_state = 286, .external_lex_state = 16}, + [1405] = {.lex_state = 103}, + [1406] = {.lex_state = 226, .external_lex_state = 16}, + [1407] = {.lex_state = 226, .external_lex_state = 16}, + [1408] = {.lex_state = 226, .external_lex_state = 16}, + [1409] = {.lex_state = 192, .external_lex_state = 14}, + [1410] = {.lex_state = 288}, + [1411] = {.lex_state = 286, .external_lex_state = 16}, + [1412] = {.lex_state = 192, .external_lex_state = 14}, + [1413] = {.lex_state = 288}, + [1414] = {.lex_state = 286, .external_lex_state = 16}, + [1415] = {.lex_state = 192, .external_lex_state = 14}, + [1416] = {.lex_state = 192, .external_lex_state = 14}, + [1417] = {.lex_state = 192, .external_lex_state = 10}, + [1418] = {.lex_state = 192, .external_lex_state = 10}, + [1419] = {.lex_state = 192, .external_lex_state = 10}, + [1420] = {.lex_state = 284, .external_lex_state = 16}, + [1421] = {.lex_state = 192, .external_lex_state = 10}, + [1422] = {.lex_state = 288}, + [1423] = {.lex_state = 286, .external_lex_state = 16}, + [1424] = {.lex_state = 103}, + [1425] = {.lex_state = 226, .external_lex_state = 16}, + [1426] = {.lex_state = 226, .external_lex_state = 16}, + [1427] = {.lex_state = 226, .external_lex_state = 16}, + [1428] = {.lex_state = 192, .external_lex_state = 10}, + [1429] = {.lex_state = 288}, + [1430] = {.lex_state = 286, .external_lex_state = 16}, + [1431] = {.lex_state = 192, .external_lex_state = 10}, + [1432] = {.lex_state = 288}, + [1433] = {.lex_state = 286, .external_lex_state = 16}, + [1434] = {.lex_state = 192, .external_lex_state = 10}, + [1435] = {.lex_state = 192, .external_lex_state = 10}, + [1436] = {.lex_state = 183, .external_lex_state = 5}, + [1437] = {.lex_state = 320, .external_lex_state = 22}, + [1438] = {.lex_state = 320, .external_lex_state = 22}, + [1439] = {.lex_state = 103, .external_lex_state = 16}, + [1440] = {.lex_state = 286, .external_lex_state = 16}, + [1441] = {.lex_state = 183, .external_lex_state = 5}, + [1442] = {.lex_state = 284, .external_lex_state = 16}, + [1443] = {.lex_state = 183, .external_lex_state = 5}, + [1444] = {.lex_state = 288}, + [1445] = {.lex_state = 286, .external_lex_state = 16}, + [1446] = {.lex_state = 183, .external_lex_state = 5}, + [1447] = {.lex_state = 288}, + [1448] = {.lex_state = 286, .external_lex_state = 16}, + [1449] = {.lex_state = 288}, + [1450] = {.lex_state = 286, .external_lex_state = 16}, + [1451] = {.lex_state = 286, .external_lex_state = 16}, + [1452] = {.lex_state = 183, .external_lex_state = 5}, + [1453] = {.lex_state = 286, .external_lex_state = 16}, + [1454] = {.lex_state = 318, .external_lex_state = 7}, + [1455] = {.lex_state = 253, .external_lex_state = 5}, + [1456] = {.lex_state = 253, .external_lex_state = 5}, + [1457] = {.lex_state = 141}, + [1458] = {.lex_state = 253, .external_lex_state = 5}, + [1459] = {.lex_state = 253, .external_lex_state = 5}, + [1460] = {.lex_state = 164}, + [1461] = {.lex_state = 253, .external_lex_state = 5}, + [1462] = {.lex_state = 253, .external_lex_state = 5}, + [1463] = {.lex_state = 253, .external_lex_state = 5}, + [1464] = {.lex_state = 103}, + [1465] = {.lex_state = 226, .external_lex_state = 16}, + [1466] = {.lex_state = 235, .external_lex_state = 6}, + [1467] = {.lex_state = 226, .external_lex_state = 16}, + [1468] = {.lex_state = 226, .external_lex_state = 16}, + [1469] = {.lex_state = 103}, + [1470] = {.lex_state = 241, .external_lex_state = 2}, + [1471] = {.lex_state = 103}, + [1472] = {.lex_state = 249, .external_lex_state = 2}, + [1473] = {.lex_state = 103}, + [1474] = {.lex_state = 241, .external_lex_state = 2}, + [1475] = {.lex_state = 192, .external_lex_state = 4}, + [1476] = {.lex_state = 253, .external_lex_state = 7}, + [1477] = {.lex_state = 217, .external_lex_state = 11}, + [1478] = {.lex_state = 320, .external_lex_state = 22}, + [1479] = {.lex_state = 320, .external_lex_state = 22}, + [1480] = {.lex_state = 103, .external_lex_state = 16}, + [1481] = {.lex_state = 286, .external_lex_state = 16}, + [1482] = {.lex_state = 217, .external_lex_state = 11}, + [1483] = {.lex_state = 284, .external_lex_state = 16}, + [1484] = {.lex_state = 217, .external_lex_state = 11}, + [1485] = {.lex_state = 288}, + [1486] = {.lex_state = 286, .external_lex_state = 16}, + [1487] = {.lex_state = 217, .external_lex_state = 11}, + [1488] = {.lex_state = 288}, + [1489] = {.lex_state = 286, .external_lex_state = 16}, + [1490] = {.lex_state = 288}, + [1491] = {.lex_state = 286, .external_lex_state = 16}, + [1492] = {.lex_state = 286, .external_lex_state = 16}, + [1493] = {.lex_state = 217, .external_lex_state = 11}, + [1494] = {.lex_state = 286, .external_lex_state = 16}, + [1495] = {.lex_state = 219, .external_lex_state = 13}, + [1496] = {.lex_state = 320, .external_lex_state = 22}, + [1497] = {.lex_state = 320, .external_lex_state = 22}, + [1498] = {.lex_state = 103, .external_lex_state = 16}, + [1499] = {.lex_state = 286, .external_lex_state = 16}, + [1500] = {.lex_state = 219, .external_lex_state = 13}, + [1501] = {.lex_state = 284, .external_lex_state = 16}, + [1502] = {.lex_state = 219, .external_lex_state = 13}, + [1503] = {.lex_state = 288}, + [1504] = {.lex_state = 286, .external_lex_state = 16}, + [1505] = {.lex_state = 219, .external_lex_state = 13}, + [1506] = {.lex_state = 288}, + [1507] = {.lex_state = 286, .external_lex_state = 16}, + [1508] = {.lex_state = 288}, + [1509] = {.lex_state = 286, .external_lex_state = 16}, + [1510] = {.lex_state = 286, .external_lex_state = 16}, + [1511] = {.lex_state = 219, .external_lex_state = 13}, + [1512] = {.lex_state = 286, .external_lex_state = 16}, + [1513] = {.lex_state = 192, .external_lex_state = 3}, + [1514] = {.lex_state = 241}, + [1515] = {.lex_state = 152, .external_lex_state = 14}, + [1516] = {.lex_state = 320, .external_lex_state = 22}, + [1517] = {.lex_state = 320, .external_lex_state = 22}, + [1518] = {.lex_state = 103, .external_lex_state = 16}, + [1519] = {.lex_state = 286, .external_lex_state = 16}, + [1520] = {.lex_state = 152, .external_lex_state = 14}, + [1521] = {.lex_state = 284, .external_lex_state = 16}, + [1522] = {.lex_state = 152, .external_lex_state = 14}, + [1523] = {.lex_state = 288}, + [1524] = {.lex_state = 286, .external_lex_state = 16}, + [1525] = {.lex_state = 152, .external_lex_state = 14}, + [1526] = {.lex_state = 288}, + [1527] = {.lex_state = 286, .external_lex_state = 16}, + [1528] = {.lex_state = 288}, + [1529] = {.lex_state = 286, .external_lex_state = 16}, + [1530] = {.lex_state = 286, .external_lex_state = 16}, + [1531] = {.lex_state = 152, .external_lex_state = 14}, + [1532] = {.lex_state = 286, .external_lex_state = 16}, + [1533] = {.lex_state = 152, .external_lex_state = 10}, + [1534] = {.lex_state = 320, .external_lex_state = 22}, + [1535] = {.lex_state = 320, .external_lex_state = 22}, + [1536] = {.lex_state = 103, .external_lex_state = 16}, + [1537] = {.lex_state = 286, .external_lex_state = 16}, + [1538] = {.lex_state = 152, .external_lex_state = 10}, + [1539] = {.lex_state = 284, .external_lex_state = 16}, + [1540] = {.lex_state = 152, .external_lex_state = 10}, + [1541] = {.lex_state = 288}, + [1542] = {.lex_state = 286, .external_lex_state = 16}, + [1543] = {.lex_state = 152, .external_lex_state = 10}, + [1544] = {.lex_state = 288}, + [1545] = {.lex_state = 286, .external_lex_state = 16}, + [1546] = {.lex_state = 288}, + [1547] = {.lex_state = 286, .external_lex_state = 16}, + [1548] = {.lex_state = 286, .external_lex_state = 16}, + [1549] = {.lex_state = 152, .external_lex_state = 10}, + [1550] = {.lex_state = 286, .external_lex_state = 16}, + [1551] = {.lex_state = 141, .external_lex_state = 15}, + [1552] = {.lex_state = 320, .external_lex_state = 22}, + [1553] = {.lex_state = 320, .external_lex_state = 22}, + [1554] = {.lex_state = 103, .external_lex_state = 16}, + [1555] = {.lex_state = 286, .external_lex_state = 16}, + [1556] = {.lex_state = 141, .external_lex_state = 15}, + [1557] = {.lex_state = 284, .external_lex_state = 16}, + [1558] = {.lex_state = 141, .external_lex_state = 15}, + [1559] = {.lex_state = 288}, + [1560] = {.lex_state = 286, .external_lex_state = 16}, + [1561] = {.lex_state = 141, .external_lex_state = 15}, + [1562] = {.lex_state = 288}, + [1563] = {.lex_state = 286, .external_lex_state = 16}, + [1564] = {.lex_state = 288}, + [1565] = {.lex_state = 286, .external_lex_state = 16}, + [1566] = {.lex_state = 286, .external_lex_state = 16}, + [1567] = {.lex_state = 141, .external_lex_state = 15}, + [1568] = {.lex_state = 286, .external_lex_state = 16}, + [1569] = {.lex_state = 164, .external_lex_state = 13}, + [1570] = {.lex_state = 320, .external_lex_state = 22}, + [1571] = {.lex_state = 320, .external_lex_state = 22}, + [1572] = {.lex_state = 103, .external_lex_state = 16}, + [1573] = {.lex_state = 286, .external_lex_state = 16}, + [1574] = {.lex_state = 164, .external_lex_state = 13}, + [1575] = {.lex_state = 284, .external_lex_state = 16}, + [1576] = {.lex_state = 164, .external_lex_state = 13}, + [1577] = {.lex_state = 288}, + [1578] = {.lex_state = 286, .external_lex_state = 16}, + [1579] = {.lex_state = 164, .external_lex_state = 13}, + [1580] = {.lex_state = 288}, + [1581] = {.lex_state = 286, .external_lex_state = 16}, + [1582] = {.lex_state = 288}, + [1583] = {.lex_state = 286, .external_lex_state = 16}, + [1584] = {.lex_state = 286, .external_lex_state = 16}, + [1585] = {.lex_state = 164, .external_lex_state = 13}, + [1586] = {.lex_state = 286, .external_lex_state = 16}, + [1587] = {.lex_state = 302, .external_lex_state = 12}, + [1588] = {.lex_state = 226, .external_lex_state = 22}, + [1589] = {.lex_state = 302, .external_lex_state = 12}, + [1590] = {.lex_state = 226, .external_lex_state = 22}, + [1591] = {.lex_state = 103, .external_lex_state = 12}, + [1592] = {.lex_state = 141}, + [1593] = {.lex_state = 161, .external_lex_state = 5}, + [1594] = {.lex_state = 320, .external_lex_state = 22}, + [1595] = {.lex_state = 320, .external_lex_state = 22}, + [1596] = {.lex_state = 164}, + [1597] = {.lex_state = 320, .external_lex_state = 22}, + [1598] = {.lex_state = 320, .external_lex_state = 22}, + [1599] = {.lex_state = 320, .external_lex_state = 22}, + [1600] = {.lex_state = 161, .external_lex_state = 5}, + [1601] = {.lex_state = 103}, + [1602] = {.lex_state = 226, .external_lex_state = 16}, + [1603] = {.lex_state = 235, .external_lex_state = 6}, + [1604] = {.lex_state = 226, .external_lex_state = 16}, + [1605] = {.lex_state = 226, .external_lex_state = 16}, + [1606] = {.lex_state = 103}, + [1607] = {.lex_state = 241, .external_lex_state = 2}, + [1608] = {.lex_state = 103}, + [1609] = {.lex_state = 249, .external_lex_state = 2}, + [1610] = {.lex_state = 103}, + [1611] = {.lex_state = 241, .external_lex_state = 2}, + [1612] = {.lex_state = 286, .external_lex_state = 22}, + [1613] = {.lex_state = 286, .external_lex_state = 22}, + [1614] = {.lex_state = 286, .external_lex_state = 22}, + [1615] = {.lex_state = 284, .external_lex_state = 16}, + [1616] = {.lex_state = 286, .external_lex_state = 22}, + [1617] = {.lex_state = 288}, + [1618] = {.lex_state = 286, .external_lex_state = 16}, + [1619] = {.lex_state = 103}, + [1620] = {.lex_state = 226, .external_lex_state = 16}, + [1621] = {.lex_state = 226, .external_lex_state = 16}, + [1622] = {.lex_state = 226, .external_lex_state = 16}, + [1623] = {.lex_state = 286, .external_lex_state = 22}, + [1624] = {.lex_state = 288}, + [1625] = {.lex_state = 286, .external_lex_state = 16}, + [1626] = {.lex_state = 286, .external_lex_state = 22}, + [1627] = {.lex_state = 288}, + [1628] = {.lex_state = 286, .external_lex_state = 16}, + [1629] = {.lex_state = 161, .external_lex_state = 5}, + [1630] = {.lex_state = 286, .external_lex_state = 16}, + [1631] = {.lex_state = 286, .external_lex_state = 22}, + [1632] = {.lex_state = 286, .external_lex_state = 22}, + [1633] = {.lex_state = 320, .external_lex_state = 22}, + [1634] = {.lex_state = 320, .external_lex_state = 22}, + [1635] = {.lex_state = 103, .external_lex_state = 16}, + [1636] = {.lex_state = 286, .external_lex_state = 16}, + [1637] = {.lex_state = 161, .external_lex_state = 5}, + [1638] = {.lex_state = 286, .external_lex_state = 16}, + [1639] = {.lex_state = 161, .external_lex_state = 5}, + [1640] = {.lex_state = 286, .external_lex_state = 16}, + [1641] = {.lex_state = 161, .external_lex_state = 5}, + [1642] = {.lex_state = 286, .external_lex_state = 16}, + [1643] = {.lex_state = 161, .external_lex_state = 5}, + [1644] = {.lex_state = 286, .external_lex_state = 16}, + [1645] = {.lex_state = 241, .external_lex_state = 2}, + [1646] = {.lex_state = 241}, + [1647] = {.lex_state = 141}, + [1648] = {.lex_state = 241, .external_lex_state = 15}, + [1649] = {.lex_state = 241, .external_lex_state = 15}, + [1650] = {.lex_state = 164}, + [1651] = {.lex_state = 241, .external_lex_state = 15}, + [1652] = {.lex_state = 241, .external_lex_state = 15}, + [1653] = {.lex_state = 241, .external_lex_state = 15}, + [1654] = {.lex_state = 103}, + [1655] = {.lex_state = 226, .external_lex_state = 16}, + [1656] = {.lex_state = 235, .external_lex_state = 6}, + [1657] = {.lex_state = 226, .external_lex_state = 16}, + [1658] = {.lex_state = 226, .external_lex_state = 16}, + [1659] = {.lex_state = 103}, + [1660] = {.lex_state = 241, .external_lex_state = 2}, + [1661] = {.lex_state = 103}, + [1662] = {.lex_state = 249, .external_lex_state = 2}, + [1663] = {.lex_state = 103}, + [1664] = {.lex_state = 241, .external_lex_state = 2}, + [1665] = {.lex_state = 308, .external_lex_state = 4}, + [1666] = {.lex_state = 293, .external_lex_state = 18}, + [1667] = {.lex_state = 261, .external_lex_state = 2}, + [1668] = {.lex_state = 295, .external_lex_state = 18}, + [1669] = {.lex_state = 103}, + [1670] = {.lex_state = 103}, + [1671] = {.lex_state = 267, .external_lex_state = 2}, + [1672] = {.lex_state = 103}, + [1673] = {.lex_state = 312}, + [1674] = {.lex_state = 189, .external_lex_state = 4}, + [1675] = {.lex_state = 312}, + [1676] = {.lex_state = 189, .external_lex_state = 4}, + [1677] = {.lex_state = 103}, + [1678] = {.lex_state = 330, .external_lex_state = 18}, + [1679] = {.lex_state = 277, .external_lex_state = 21}, + [1680] = {.lex_state = 20}, + [1681] = {.lex_state = 141}, + [1682] = {.lex_state = 103}, + [1683] = {.lex_state = 103}, + [1684] = {.lex_state = 282, .external_lex_state = 2}, + [1685] = {.lex_state = 295, .external_lex_state = 18}, + [1686] = {.lex_state = 237, .external_lex_state = 6}, + [1687] = {.lex_state = 241}, + [1688] = {.lex_state = 237, .external_lex_state = 23}, + [1689] = {.lex_state = 237, .external_lex_state = 23}, + [1690] = {.lex_state = 237, .external_lex_state = 23}, + [1691] = {.lex_state = 237, .external_lex_state = 23}, + [1692] = {.lex_state = 237, .external_lex_state = 23}, + [1693] = {.lex_state = 284, .external_lex_state = 16}, + [1694] = {.lex_state = 237, .external_lex_state = 23}, + [1695] = {.lex_state = 288}, + [1696] = {.lex_state = 286, .external_lex_state = 16}, + [1697] = {.lex_state = 103}, + [1698] = {.lex_state = 226, .external_lex_state = 16}, + [1699] = {.lex_state = 226, .external_lex_state = 16}, + [1700] = {.lex_state = 226, .external_lex_state = 16}, + [1701] = {.lex_state = 237, .external_lex_state = 23}, + [1702] = {.lex_state = 288}, + [1703] = {.lex_state = 286, .external_lex_state = 16}, + [1704] = {.lex_state = 237, .external_lex_state = 23}, + [1705] = {.lex_state = 288}, + [1706] = {.lex_state = 286, .external_lex_state = 16}, + [1707] = {.lex_state = 237, .external_lex_state = 23}, + [1708] = {.lex_state = 237, .external_lex_state = 23}, + [1709] = {.lex_state = 237, .external_lex_state = 13}, + [1710] = {.lex_state = 237, .external_lex_state = 13}, + [1711] = {.lex_state = 237, .external_lex_state = 13}, + [1712] = {.lex_state = 284, .external_lex_state = 16}, + [1713] = {.lex_state = 237, .external_lex_state = 13}, + [1714] = {.lex_state = 288}, + [1715] = {.lex_state = 286, .external_lex_state = 16}, + [1716] = {.lex_state = 103}, + [1717] = {.lex_state = 226, .external_lex_state = 16}, + [1718] = {.lex_state = 226, .external_lex_state = 16}, + [1719] = {.lex_state = 226, .external_lex_state = 16}, + [1720] = {.lex_state = 237, .external_lex_state = 13}, + [1721] = {.lex_state = 288}, + [1722] = {.lex_state = 286, .external_lex_state = 16}, + [1723] = {.lex_state = 237, .external_lex_state = 13}, + [1724] = {.lex_state = 288}, + [1725] = {.lex_state = 286, .external_lex_state = 16}, + [1726] = {.lex_state = 237, .external_lex_state = 13}, + [1727] = {.lex_state = 237, .external_lex_state = 13}, + [1728] = {.lex_state = 143, .external_lex_state = 17}, + [1729] = {.lex_state = 320, .external_lex_state = 22}, + [1730] = {.lex_state = 320, .external_lex_state = 22}, + [1731] = {.lex_state = 103, .external_lex_state = 16}, + [1732] = {.lex_state = 286, .external_lex_state = 16}, + [1733] = {.lex_state = 143, .external_lex_state = 17}, + [1734] = {.lex_state = 284, .external_lex_state = 16}, + [1735] = {.lex_state = 143, .external_lex_state = 17}, + [1736] = {.lex_state = 288}, + [1737] = {.lex_state = 286, .external_lex_state = 16}, + [1738] = {.lex_state = 143, .external_lex_state = 17}, + [1739] = {.lex_state = 288}, + [1740] = {.lex_state = 286, .external_lex_state = 16}, + [1741] = {.lex_state = 288}, + [1742] = {.lex_state = 286, .external_lex_state = 16}, + [1743] = {.lex_state = 286, .external_lex_state = 16}, + [1744] = {.lex_state = 143, .external_lex_state = 17}, + [1745] = {.lex_state = 286, .external_lex_state = 16}, + [1746] = {.lex_state = 322, .external_lex_state = 18}, + [1747] = {.lex_state = 295, .external_lex_state = 17}, + [1748] = {.lex_state = 295, .external_lex_state = 17}, + [1749] = {.lex_state = 293, .external_lex_state = 18}, + [1750] = {.lex_state = 141}, + [1751] = {.lex_state = 295, .external_lex_state = 17}, + [1752] = {.lex_state = 295, .external_lex_state = 17}, + [1753] = {.lex_state = 164}, + [1754] = {.lex_state = 295, .external_lex_state = 17}, + [1755] = {.lex_state = 295, .external_lex_state = 17}, + [1756] = {.lex_state = 295, .external_lex_state = 17}, [1757] = {.lex_state = 103}, - [1758] = {.lex_state = 221, .external_lex_state = 16}, - [1759] = {.lex_state = 221, .external_lex_state = 16}, - [1760] = {.lex_state = 221, .external_lex_state = 16}, - [1761] = {.lex_state = 297, .external_lex_state = 13}, - [1762] = {.lex_state = 221, .external_lex_state = 16}, - [1763] = {.lex_state = 297, .external_lex_state = 13}, - [1764] = {.lex_state = 221, .external_lex_state = 16}, - [1765] = {.lex_state = 297, .external_lex_state = 13}, - [1766] = {.lex_state = 297, .external_lex_state = 13}, - [1767] = {.lex_state = 180, .external_lex_state = 20}, - [1768] = {.lex_state = 311, .external_lex_state = 22}, - [1769] = {.lex_state = 311, .external_lex_state = 22}, - [1770] = {.lex_state = 103, .external_lex_state = 16}, - [1771] = {.lex_state = 180, .external_lex_state = 20}, - [1772] = {.lex_state = 282, .external_lex_state = 16}, - [1773] = {.lex_state = 180, .external_lex_state = 20}, - [1774] = {.lex_state = 221, .external_lex_state = 16}, - [1775] = {.lex_state = 180, .external_lex_state = 20}, - [1776] = {.lex_state = 221, .external_lex_state = 16}, - [1777] = {.lex_state = 221, .external_lex_state = 16}, - [1778] = {.lex_state = 180, .external_lex_state = 20}, - [1779] = {.lex_state = 299, .external_lex_state = 10}, - [1780] = {.lex_state = 299, .external_lex_state = 10}, - [1781] = {.lex_state = 299, .external_lex_state = 10}, - [1782] = {.lex_state = 282, .external_lex_state = 16}, - [1783] = {.lex_state = 299, .external_lex_state = 10}, - [1784] = {.lex_state = 221, .external_lex_state = 16}, + [1758] = {.lex_state = 226, .external_lex_state = 16}, + [1759] = {.lex_state = 235, .external_lex_state = 6}, + [1760] = {.lex_state = 226, .external_lex_state = 16}, + [1761] = {.lex_state = 226, .external_lex_state = 16}, + [1762] = {.lex_state = 103}, + [1763] = {.lex_state = 241, .external_lex_state = 2}, + [1764] = {.lex_state = 103}, + [1765] = {.lex_state = 249, .external_lex_state = 2}, + [1766] = {.lex_state = 103}, + [1767] = {.lex_state = 241, .external_lex_state = 2}, + [1768] = {.lex_state = 293, .external_lex_state = 18}, + [1769] = {.lex_state = 299, .external_lex_state = 24}, + [1770] = {.lex_state = 295, .external_lex_state = 18}, + [1771] = {.lex_state = 141}, + [1772] = {.lex_state = 249, .external_lex_state = 15}, + [1773] = {.lex_state = 249, .external_lex_state = 15}, + [1774] = {.lex_state = 164}, + [1775] = {.lex_state = 249, .external_lex_state = 15}, + [1776] = {.lex_state = 249, .external_lex_state = 15}, + [1777] = {.lex_state = 249, .external_lex_state = 15}, + [1778] = {.lex_state = 103}, + [1779] = {.lex_state = 226, .external_lex_state = 16}, + [1780] = {.lex_state = 235, .external_lex_state = 6}, + [1781] = {.lex_state = 226, .external_lex_state = 16}, + [1782] = {.lex_state = 226, .external_lex_state = 16}, + [1783] = {.lex_state = 103}, + [1784] = {.lex_state = 241, .external_lex_state = 2}, [1785] = {.lex_state = 103}, - [1786] = {.lex_state = 221, .external_lex_state = 16}, - [1787] = {.lex_state = 221, .external_lex_state = 16}, - [1788] = {.lex_state = 221, .external_lex_state = 16}, - [1789] = {.lex_state = 299, .external_lex_state = 10}, - [1790] = {.lex_state = 221, .external_lex_state = 16}, - [1791] = {.lex_state = 299, .external_lex_state = 10}, - [1792] = {.lex_state = 221, .external_lex_state = 16}, - [1793] = {.lex_state = 299, .external_lex_state = 10}, - [1794] = {.lex_state = 299, .external_lex_state = 10}, - [1795] = {.lex_state = 259, .external_lex_state = 2}, - [1796] = {.lex_state = 191, .external_lex_state = 4}, - [1797] = {.lex_state = 265, .external_lex_state = 2}, - [1798] = {.lex_state = 301, .external_lex_state = 2}, - [1799] = {.lex_state = 301, .external_lex_state = 2}, - [1800] = {.lex_state = 191, .external_lex_state = 4}, - [1801] = {.lex_state = 103}, - [1802] = {.lex_state = 141}, - [1803] = {.lex_state = 141}, - [1804] = {.lex_state = 323, .external_lex_state = 2}, - [1805] = {.lex_state = 137}, - [1806] = {.lex_state = 317, .external_lex_state = 13}, - [1807] = {.lex_state = 317, .external_lex_state = 13}, - [1808] = {.lex_state = 163}, - [1809] = {.lex_state = 317, .external_lex_state = 13}, - [1810] = {.lex_state = 317, .external_lex_state = 13}, - [1811] = {.lex_state = 317, .external_lex_state = 13}, - [1812] = {.lex_state = 323, .external_lex_state = 2}, - [1813] = {.lex_state = 137}, - [1814] = {.lex_state = 103}, - [1815] = {.lex_state = 221, .external_lex_state = 16}, - [1816] = {.lex_state = 230, .external_lex_state = 6}, - [1817] = {.lex_state = 221, .external_lex_state = 16}, - [1818] = {.lex_state = 221, .external_lex_state = 16}, - [1819] = {.lex_state = 103}, - [1820] = {.lex_state = 239, .external_lex_state = 2}, - [1821] = {.lex_state = 103}, - [1822] = {.lex_state = 247, .external_lex_state = 2}, - [1823] = {.lex_state = 103}, - [1824] = {.lex_state = 239, .external_lex_state = 2}, - [1825] = {.lex_state = 191, .external_lex_state = 4}, - [1826] = {.lex_state = 103}, - [1827] = {.lex_state = 141}, - [1828] = {.lex_state = 191, .external_lex_state = 4}, - [1829] = {.lex_state = 141}, - [1830] = {.lex_state = 191, .external_lex_state = 4}, - [1831] = {.lex_state = 103}, - [1832] = {.lex_state = 191, .external_lex_state = 4}, - [1833] = {.lex_state = 141}, - [1834] = {.lex_state = 188, .external_lex_state = 10}, - [1835] = {.lex_state = 188, .external_lex_state = 10}, - [1836] = {.lex_state = 311, .external_lex_state = 22}, - [1837] = {.lex_state = 311, .external_lex_state = 22}, - [1838] = {.lex_state = 103, .external_lex_state = 16}, - [1839] = {.lex_state = 188, .external_lex_state = 10}, - [1840] = {.lex_state = 188, .external_lex_state = 10}, - [1841] = {.lex_state = 191, .external_lex_state = 4}, - [1842] = {.lex_state = 319, .external_lex_state = 10}, - [1843] = {.lex_state = 319, .external_lex_state = 10}, - [1844] = {.lex_state = 191, .external_lex_state = 4}, - [1845] = {.lex_state = 141}, - [1846] = {.lex_state = 319, .external_lex_state = 10}, - [1847] = {.lex_state = 319, .external_lex_state = 10}, - [1848] = {.lex_state = 163}, - [1849] = {.lex_state = 319, .external_lex_state = 10}, - [1850] = {.lex_state = 319, .external_lex_state = 10}, - [1851] = {.lex_state = 319, .external_lex_state = 10}, - [1852] = {.lex_state = 103}, - [1853] = {.lex_state = 221, .external_lex_state = 16}, - [1854] = {.lex_state = 230, .external_lex_state = 6}, - [1855] = {.lex_state = 221, .external_lex_state = 16}, - [1856] = {.lex_state = 221, .external_lex_state = 16}, - [1857] = {.lex_state = 103}, - [1858] = {.lex_state = 239, .external_lex_state = 2}, - [1859] = {.lex_state = 103}, - [1860] = {.lex_state = 247, .external_lex_state = 2}, - [1861] = {.lex_state = 103}, - [1862] = {.lex_state = 239, .external_lex_state = 2}, - [1863] = {.lex_state = 186, .external_lex_state = 20}, - [1864] = {.lex_state = 186, .external_lex_state = 20}, - [1865] = {.lex_state = 186, .external_lex_state = 20}, - [1866] = {.lex_state = 282, .external_lex_state = 16}, - [1867] = {.lex_state = 186, .external_lex_state = 20}, - [1868] = {.lex_state = 221, .external_lex_state = 16}, + [1786] = {.lex_state = 249, .external_lex_state = 2}, + [1787] = {.lex_state = 103}, + [1788] = {.lex_state = 241, .external_lex_state = 2}, + [1789] = {.lex_state = 297, .external_lex_state = 18}, + [1790] = {.lex_state = 103}, + [1791] = {.lex_state = 20}, + [1792] = {.lex_state = 141}, + [1793] = {.lex_state = 297, .external_lex_state = 18}, + [1794] = {.lex_state = 243, .external_lex_state = 23}, + [1795] = {.lex_state = 243, .external_lex_state = 23}, + [1796] = {.lex_state = 243, .external_lex_state = 23}, + [1797] = {.lex_state = 243, .external_lex_state = 23}, + [1798] = {.lex_state = 243, .external_lex_state = 23}, + [1799] = {.lex_state = 284, .external_lex_state = 16}, + [1800] = {.lex_state = 243, .external_lex_state = 23}, + [1801] = {.lex_state = 288}, + [1802] = {.lex_state = 286, .external_lex_state = 16}, + [1803] = {.lex_state = 103}, + [1804] = {.lex_state = 226, .external_lex_state = 16}, + [1805] = {.lex_state = 226, .external_lex_state = 16}, + [1806] = {.lex_state = 226, .external_lex_state = 16}, + [1807] = {.lex_state = 243, .external_lex_state = 23}, + [1808] = {.lex_state = 288}, + [1809] = {.lex_state = 286, .external_lex_state = 16}, + [1810] = {.lex_state = 243, .external_lex_state = 23}, + [1811] = {.lex_state = 288}, + [1812] = {.lex_state = 286, .external_lex_state = 16}, + [1813] = {.lex_state = 243, .external_lex_state = 23}, + [1814] = {.lex_state = 243, .external_lex_state = 23}, + [1815] = {.lex_state = 243, .external_lex_state = 13}, + [1816] = {.lex_state = 243, .external_lex_state = 13}, + [1817] = {.lex_state = 243, .external_lex_state = 13}, + [1818] = {.lex_state = 284, .external_lex_state = 16}, + [1819] = {.lex_state = 243, .external_lex_state = 13}, + [1820] = {.lex_state = 288}, + [1821] = {.lex_state = 286, .external_lex_state = 16}, + [1822] = {.lex_state = 103}, + [1823] = {.lex_state = 226, .external_lex_state = 16}, + [1824] = {.lex_state = 226, .external_lex_state = 16}, + [1825] = {.lex_state = 226, .external_lex_state = 16}, + [1826] = {.lex_state = 243, .external_lex_state = 13}, + [1827] = {.lex_state = 288}, + [1828] = {.lex_state = 286, .external_lex_state = 16}, + [1829] = {.lex_state = 243, .external_lex_state = 13}, + [1830] = {.lex_state = 288}, + [1831] = {.lex_state = 286, .external_lex_state = 16}, + [1832] = {.lex_state = 243, .external_lex_state = 13}, + [1833] = {.lex_state = 243, .external_lex_state = 13}, + [1834] = {.lex_state = 245, .external_lex_state = 17}, + [1835] = {.lex_state = 320, .external_lex_state = 22}, + [1836] = {.lex_state = 320, .external_lex_state = 22}, + [1837] = {.lex_state = 103, .external_lex_state = 16}, + [1838] = {.lex_state = 286, .external_lex_state = 16}, + [1839] = {.lex_state = 245, .external_lex_state = 17}, + [1840] = {.lex_state = 284, .external_lex_state = 16}, + [1841] = {.lex_state = 245, .external_lex_state = 17}, + [1842] = {.lex_state = 288}, + [1843] = {.lex_state = 286, .external_lex_state = 16}, + [1844] = {.lex_state = 245, .external_lex_state = 17}, + [1845] = {.lex_state = 288}, + [1846] = {.lex_state = 286, .external_lex_state = 16}, + [1847] = {.lex_state = 288}, + [1848] = {.lex_state = 286, .external_lex_state = 16}, + [1849] = {.lex_state = 286, .external_lex_state = 16}, + [1850] = {.lex_state = 245, .external_lex_state = 17}, + [1851] = {.lex_state = 286, .external_lex_state = 16}, + [1852] = {.lex_state = 324, .external_lex_state = 18}, + [1853] = {.lex_state = 297, .external_lex_state = 17}, + [1854] = {.lex_state = 297, .external_lex_state = 17}, + [1855] = {.lex_state = 141}, + [1856] = {.lex_state = 297, .external_lex_state = 17}, + [1857] = {.lex_state = 297, .external_lex_state = 17}, + [1858] = {.lex_state = 164}, + [1859] = {.lex_state = 297, .external_lex_state = 17}, + [1860] = {.lex_state = 297, .external_lex_state = 17}, + [1861] = {.lex_state = 297, .external_lex_state = 17}, + [1862] = {.lex_state = 103}, + [1863] = {.lex_state = 226, .external_lex_state = 16}, + [1864] = {.lex_state = 235, .external_lex_state = 6}, + [1865] = {.lex_state = 226, .external_lex_state = 16}, + [1866] = {.lex_state = 226, .external_lex_state = 16}, + [1867] = {.lex_state = 103}, + [1868] = {.lex_state = 241, .external_lex_state = 2}, [1869] = {.lex_state = 103}, - [1870] = {.lex_state = 221, .external_lex_state = 16}, - [1871] = {.lex_state = 221, .external_lex_state = 16}, - [1872] = {.lex_state = 221, .external_lex_state = 16}, - [1873] = {.lex_state = 186, .external_lex_state = 20}, - [1874] = {.lex_state = 221, .external_lex_state = 16}, - [1875] = {.lex_state = 186, .external_lex_state = 20}, - [1876] = {.lex_state = 221, .external_lex_state = 16}, - [1877] = {.lex_state = 186, .external_lex_state = 20}, - [1878] = {.lex_state = 186, .external_lex_state = 20}, - [1879] = {.lex_state = 309, .external_lex_state = 7}, - [1880] = {.lex_state = 141}, - [1881] = {.lex_state = 326, .external_lex_state = 10}, - [1882] = {.lex_state = 163}, - [1883] = {.lex_state = 168}, - [1884] = {.lex_state = 326, .external_lex_state = 10}, - [1885] = {.lex_state = 173, .external_lex_state = 6}, - [1886] = {.lex_state = 20, .external_lex_state = 2}, - [1887] = {.lex_state = 20, .external_lex_state = 2}, - [1888] = {.lex_state = 20, .external_lex_state = 2}, - [1889] = {.lex_state = 191, .external_lex_state = 14}, - [1890] = {.lex_state = 311, .external_lex_state = 22}, - [1891] = {.lex_state = 311, .external_lex_state = 22}, - [1892] = {.lex_state = 103, .external_lex_state = 16}, - [1893] = {.lex_state = 191, .external_lex_state = 14}, - [1894] = {.lex_state = 282, .external_lex_state = 16}, - [1895] = {.lex_state = 191, .external_lex_state = 14}, - [1896] = {.lex_state = 221, .external_lex_state = 16}, - [1897] = {.lex_state = 191, .external_lex_state = 14}, - [1898] = {.lex_state = 221, .external_lex_state = 16}, - [1899] = {.lex_state = 221, .external_lex_state = 16}, - [1900] = {.lex_state = 191, .external_lex_state = 14}, - [1901] = {.lex_state = 191, .external_lex_state = 10}, - [1902] = {.lex_state = 311, .external_lex_state = 22}, - [1903] = {.lex_state = 311, .external_lex_state = 22}, - [1904] = {.lex_state = 103, .external_lex_state = 16}, - [1905] = {.lex_state = 191, .external_lex_state = 10}, - [1906] = {.lex_state = 282, .external_lex_state = 16}, - [1907] = {.lex_state = 191, .external_lex_state = 10}, - [1908] = {.lex_state = 221, .external_lex_state = 16}, - [1909] = {.lex_state = 191, .external_lex_state = 10}, - [1910] = {.lex_state = 221, .external_lex_state = 16}, - [1911] = {.lex_state = 221, .external_lex_state = 16}, - [1912] = {.lex_state = 191, .external_lex_state = 10}, - [1913] = {.lex_state = 182, .external_lex_state = 5}, - [1914] = {.lex_state = 182, .external_lex_state = 5}, - [1915] = {.lex_state = 311, .external_lex_state = 22}, - [1916] = {.lex_state = 311, .external_lex_state = 22}, - [1917] = {.lex_state = 103, .external_lex_state = 16}, - [1918] = {.lex_state = 182, .external_lex_state = 5}, - [1919] = {.lex_state = 182, .external_lex_state = 5}, - [1920] = {.lex_state = 251, .external_lex_state = 5}, - [1921] = {.lex_state = 251, .external_lex_state = 5}, - [1922] = {.lex_state = 251, .external_lex_state = 5}, - [1923] = {.lex_state = 282, .external_lex_state = 16}, - [1924] = {.lex_state = 251, .external_lex_state = 5}, - [1925] = {.lex_state = 221, .external_lex_state = 16}, - [1926] = {.lex_state = 103}, - [1927] = {.lex_state = 221, .external_lex_state = 16}, - [1928] = {.lex_state = 221, .external_lex_state = 16}, - [1929] = {.lex_state = 221, .external_lex_state = 16}, - [1930] = {.lex_state = 251, .external_lex_state = 5}, - [1931] = {.lex_state = 221, .external_lex_state = 16}, - [1932] = {.lex_state = 251, .external_lex_state = 5}, - [1933] = {.lex_state = 221, .external_lex_state = 16}, - [1934] = {.lex_state = 251, .external_lex_state = 5}, - [1935] = {.lex_state = 251, .external_lex_state = 5}, - [1936] = {.lex_state = 212, .external_lex_state = 11}, - [1937] = {.lex_state = 212, .external_lex_state = 11}, - [1938] = {.lex_state = 311, .external_lex_state = 22}, - [1939] = {.lex_state = 311, .external_lex_state = 22}, - [1940] = {.lex_state = 103, .external_lex_state = 16}, - [1941] = {.lex_state = 212, .external_lex_state = 11}, - [1942] = {.lex_state = 212, .external_lex_state = 11}, - [1943] = {.lex_state = 214, .external_lex_state = 13}, - [1944] = {.lex_state = 214, .external_lex_state = 13}, - [1945] = {.lex_state = 311, .external_lex_state = 22}, - [1946] = {.lex_state = 311, .external_lex_state = 22}, - [1947] = {.lex_state = 103, .external_lex_state = 16}, - [1948] = {.lex_state = 214, .external_lex_state = 13}, - [1949] = {.lex_state = 214, .external_lex_state = 13}, - [1950] = {.lex_state = 191, .external_lex_state = 3}, - [1951] = {.lex_state = 149, .external_lex_state = 14}, - [1952] = {.lex_state = 149, .external_lex_state = 14}, - [1953] = {.lex_state = 311, .external_lex_state = 22}, - [1954] = {.lex_state = 311, .external_lex_state = 22}, - [1955] = {.lex_state = 103, .external_lex_state = 16}, - [1956] = {.lex_state = 149, .external_lex_state = 14}, - [1957] = {.lex_state = 149, .external_lex_state = 14}, - [1958] = {.lex_state = 149, .external_lex_state = 10}, - [1959] = {.lex_state = 149, .external_lex_state = 10}, - [1960] = {.lex_state = 311, .external_lex_state = 22}, - [1961] = {.lex_state = 311, .external_lex_state = 22}, - [1962] = {.lex_state = 103, .external_lex_state = 16}, - [1963] = {.lex_state = 149, .external_lex_state = 10}, - [1964] = {.lex_state = 149, .external_lex_state = 10}, - [1965] = {.lex_state = 141, .external_lex_state = 15}, - [1966] = {.lex_state = 141, .external_lex_state = 15}, - [1967] = {.lex_state = 311, .external_lex_state = 22}, - [1968] = {.lex_state = 311, .external_lex_state = 22}, - [1969] = {.lex_state = 103, .external_lex_state = 16}, - [1970] = {.lex_state = 141, .external_lex_state = 15}, - [1971] = {.lex_state = 141, .external_lex_state = 15}, - [1972] = {.lex_state = 163, .external_lex_state = 13}, - [1973] = {.lex_state = 163, .external_lex_state = 13}, - [1974] = {.lex_state = 311, .external_lex_state = 22}, - [1975] = {.lex_state = 311, .external_lex_state = 22}, - [1976] = {.lex_state = 103, .external_lex_state = 16}, - [1977] = {.lex_state = 163, .external_lex_state = 13}, - [1978] = {.lex_state = 163, .external_lex_state = 13}, - [1979] = {.lex_state = 221, .external_lex_state = 22}, - [1980] = {.lex_state = 221, .external_lex_state = 16}, - [1981] = {.lex_state = 221, .external_lex_state = 22}, - [1982] = {.lex_state = 221, .external_lex_state = 16}, - [1983] = {.lex_state = 311, .external_lex_state = 22}, - [1984] = {.lex_state = 311, .external_lex_state = 22}, - [1985] = {.lex_state = 311, .external_lex_state = 22}, - [1986] = {.lex_state = 282, .external_lex_state = 16}, - [1987] = {.lex_state = 311, .external_lex_state = 22}, - [1988] = {.lex_state = 221, .external_lex_state = 16}, - [1989] = {.lex_state = 103}, - [1990] = {.lex_state = 221, .external_lex_state = 16}, - [1991] = {.lex_state = 221, .external_lex_state = 16}, - [1992] = {.lex_state = 221, .external_lex_state = 16}, - [1993] = {.lex_state = 311, .external_lex_state = 22}, - [1994] = {.lex_state = 221, .external_lex_state = 16}, - [1995] = {.lex_state = 311, .external_lex_state = 22}, - [1996] = {.lex_state = 221, .external_lex_state = 16}, - [1997] = {.lex_state = 311, .external_lex_state = 22}, - [1998] = {.lex_state = 311, .external_lex_state = 22}, - [1999] = {.lex_state = 221, .external_lex_state = 22}, - [2000] = {.lex_state = 311, .external_lex_state = 22}, - [2001] = {.lex_state = 311, .external_lex_state = 22}, - [2002] = {.lex_state = 103, .external_lex_state = 16}, - [2003] = {.lex_state = 221, .external_lex_state = 22}, - [2004] = {.lex_state = 282, .external_lex_state = 16}, - [2005] = {.lex_state = 221, .external_lex_state = 22}, - [2006] = {.lex_state = 221, .external_lex_state = 16}, - [2007] = {.lex_state = 221, .external_lex_state = 22}, - [2008] = {.lex_state = 221, .external_lex_state = 16}, - [2009] = {.lex_state = 221, .external_lex_state = 16}, - [2010] = {.lex_state = 221, .external_lex_state = 22}, - [2011] = {.lex_state = 156, .external_lex_state = 5}, - [2012] = {.lex_state = 156, .external_lex_state = 5}, - [2013] = {.lex_state = 239, .external_lex_state = 2}, - [2014] = {.lex_state = 239, .external_lex_state = 15}, - [2015] = {.lex_state = 239, .external_lex_state = 15}, - [2016] = {.lex_state = 239, .external_lex_state = 15}, - [2017] = {.lex_state = 282, .external_lex_state = 16}, - [2018] = {.lex_state = 239, .external_lex_state = 15}, - [2019] = {.lex_state = 221, .external_lex_state = 16}, - [2020] = {.lex_state = 103}, - [2021] = {.lex_state = 221, .external_lex_state = 16}, - [2022] = {.lex_state = 221, .external_lex_state = 16}, - [2023] = {.lex_state = 221, .external_lex_state = 16}, - [2024] = {.lex_state = 239, .external_lex_state = 15}, - [2025] = {.lex_state = 221, .external_lex_state = 16}, - [2026] = {.lex_state = 239, .external_lex_state = 15}, - [2027] = {.lex_state = 221, .external_lex_state = 16}, - [2028] = {.lex_state = 239, .external_lex_state = 15}, - [2029] = {.lex_state = 239, .external_lex_state = 15}, - [2030] = {.lex_state = 103}, - [2031] = {.lex_state = 284, .external_lex_state = 18}, - [2032] = {.lex_state = 103}, - [2033] = {.lex_state = 103}, - [2034] = {.lex_state = 103}, - [2035] = {.lex_state = 103}, - [2036] = {.lex_state = 103}, - [2037] = {.lex_state = 141}, - [2038] = {.lex_state = 303}, - [2039] = {.lex_state = 103}, - [2040] = {.lex_state = 103}, - [2041] = {.lex_state = 141}, - [2042] = {.lex_state = 303}, - [2043] = {.lex_state = 313, .external_lex_state = 18}, - [2044] = {.lex_state = 321, .external_lex_state = 18}, - [2045] = {.lex_state = 141}, - [2046] = {.lex_state = 328, .external_lex_state = 13}, - [2047] = {.lex_state = 163}, - [2048] = {.lex_state = 168}, - [2049] = {.lex_state = 328, .external_lex_state = 13}, - [2050] = {.lex_state = 173, .external_lex_state = 6}, - [2051] = {.lex_state = 20, .external_lex_state = 2}, - [2052] = {.lex_state = 20, .external_lex_state = 2}, - [2053] = {.lex_state = 20, .external_lex_state = 2}, + [1870] = {.lex_state = 249, .external_lex_state = 2}, + [1871] = {.lex_state = 103}, + [1872] = {.lex_state = 241, .external_lex_state = 2}, + [1873] = {.lex_state = 297, .external_lex_state = 18}, + [1874] = {.lex_state = 192, .external_lex_state = 4}, + [1875] = {.lex_state = 257, .external_lex_state = 5}, + [1876] = {.lex_state = 257, .external_lex_state = 5}, + [1877] = {.lex_state = 257, .external_lex_state = 5}, + [1878] = {.lex_state = 284, .external_lex_state = 16}, + [1879] = {.lex_state = 257, .external_lex_state = 5}, + [1880] = {.lex_state = 288}, + [1881] = {.lex_state = 286, .external_lex_state = 16}, + [1882] = {.lex_state = 103}, + [1883] = {.lex_state = 226, .external_lex_state = 16}, + [1884] = {.lex_state = 226, .external_lex_state = 16}, + [1885] = {.lex_state = 226, .external_lex_state = 16}, + [1886] = {.lex_state = 257, .external_lex_state = 5}, + [1887] = {.lex_state = 288}, + [1888] = {.lex_state = 286, .external_lex_state = 16}, + [1889] = {.lex_state = 257, .external_lex_state = 5}, + [1890] = {.lex_state = 288}, + [1891] = {.lex_state = 286, .external_lex_state = 16}, + [1892] = {.lex_state = 257, .external_lex_state = 5}, + [1893] = {.lex_state = 257, .external_lex_state = 5}, + [1894] = {.lex_state = 299, .external_lex_state = 24}, + [1895] = {.lex_state = 299, .external_lex_state = 24}, + [1896] = {.lex_state = 103}, + [1897] = {.lex_state = 226, .external_lex_state = 16}, + [1898] = {.lex_state = 235, .external_lex_state = 6}, + [1899] = {.lex_state = 226, .external_lex_state = 16}, + [1900] = {.lex_state = 226, .external_lex_state = 16}, + [1901] = {.lex_state = 253, .external_lex_state = 7}, + [1902] = {.lex_state = 299, .external_lex_state = 24}, + [1903] = {.lex_state = 103}, + [1904] = {.lex_state = 103}, + [1905] = {.lex_state = 259, .external_lex_state = 11}, + [1906] = {.lex_state = 320, .external_lex_state = 22}, + [1907] = {.lex_state = 320, .external_lex_state = 22}, + [1908] = {.lex_state = 103, .external_lex_state = 16}, + [1909] = {.lex_state = 286, .external_lex_state = 16}, + [1910] = {.lex_state = 259, .external_lex_state = 11}, + [1911] = {.lex_state = 284, .external_lex_state = 16}, + [1912] = {.lex_state = 259, .external_lex_state = 11}, + [1913] = {.lex_state = 288}, + [1914] = {.lex_state = 286, .external_lex_state = 16}, + [1915] = {.lex_state = 259, .external_lex_state = 11}, + [1916] = {.lex_state = 288}, + [1917] = {.lex_state = 286, .external_lex_state = 16}, + [1918] = {.lex_state = 288}, + [1919] = {.lex_state = 286, .external_lex_state = 16}, + [1920] = {.lex_state = 286, .external_lex_state = 16}, + [1921] = {.lex_state = 259, .external_lex_state = 11}, + [1922] = {.lex_state = 286, .external_lex_state = 16}, + [1923] = {.lex_state = 306, .external_lex_state = 13}, + [1924] = {.lex_state = 306, .external_lex_state = 13}, + [1925] = {.lex_state = 306, .external_lex_state = 13}, + [1926] = {.lex_state = 284, .external_lex_state = 16}, + [1927] = {.lex_state = 306, .external_lex_state = 13}, + [1928] = {.lex_state = 288}, + [1929] = {.lex_state = 286, .external_lex_state = 16}, + [1930] = {.lex_state = 103}, + [1931] = {.lex_state = 226, .external_lex_state = 16}, + [1932] = {.lex_state = 226, .external_lex_state = 16}, + [1933] = {.lex_state = 226, .external_lex_state = 16}, + [1934] = {.lex_state = 306, .external_lex_state = 13}, + [1935] = {.lex_state = 288}, + [1936] = {.lex_state = 286, .external_lex_state = 16}, + [1937] = {.lex_state = 306, .external_lex_state = 13}, + [1938] = {.lex_state = 288}, + [1939] = {.lex_state = 286, .external_lex_state = 16}, + [1940] = {.lex_state = 306, .external_lex_state = 13}, + [1941] = {.lex_state = 306, .external_lex_state = 13}, + [1942] = {.lex_state = 181, .external_lex_state = 20}, + [1943] = {.lex_state = 320, .external_lex_state = 22}, + [1944] = {.lex_state = 320, .external_lex_state = 22}, + [1945] = {.lex_state = 103, .external_lex_state = 16}, + [1946] = {.lex_state = 286, .external_lex_state = 16}, + [1947] = {.lex_state = 181, .external_lex_state = 20}, + [1948] = {.lex_state = 284, .external_lex_state = 16}, + [1949] = {.lex_state = 181, .external_lex_state = 20}, + [1950] = {.lex_state = 288}, + [1951] = {.lex_state = 286, .external_lex_state = 16}, + [1952] = {.lex_state = 181, .external_lex_state = 20}, + [1953] = {.lex_state = 288}, + [1954] = {.lex_state = 286, .external_lex_state = 16}, + [1955] = {.lex_state = 288}, + [1956] = {.lex_state = 286, .external_lex_state = 16}, + [1957] = {.lex_state = 286, .external_lex_state = 16}, + [1958] = {.lex_state = 181, .external_lex_state = 20}, + [1959] = {.lex_state = 286, .external_lex_state = 16}, + [1960] = {.lex_state = 308, .external_lex_state = 10}, + [1961] = {.lex_state = 308, .external_lex_state = 10}, + [1962] = {.lex_state = 308, .external_lex_state = 10}, + [1963] = {.lex_state = 284, .external_lex_state = 16}, + [1964] = {.lex_state = 308, .external_lex_state = 10}, + [1965] = {.lex_state = 288}, + [1966] = {.lex_state = 286, .external_lex_state = 16}, + [1967] = {.lex_state = 103}, + [1968] = {.lex_state = 226, .external_lex_state = 16}, + [1969] = {.lex_state = 226, .external_lex_state = 16}, + [1970] = {.lex_state = 226, .external_lex_state = 16}, + [1971] = {.lex_state = 308, .external_lex_state = 10}, + [1972] = {.lex_state = 288}, + [1973] = {.lex_state = 286, .external_lex_state = 16}, + [1974] = {.lex_state = 308, .external_lex_state = 10}, + [1975] = {.lex_state = 288}, + [1976] = {.lex_state = 286, .external_lex_state = 16}, + [1977] = {.lex_state = 308, .external_lex_state = 10}, + [1978] = {.lex_state = 308, .external_lex_state = 10}, + [1979] = {.lex_state = 261, .external_lex_state = 2}, + [1980] = {.lex_state = 192, .external_lex_state = 4}, + [1981] = {.lex_state = 267, .external_lex_state = 2}, + [1982] = {.lex_state = 310, .external_lex_state = 2}, + [1983] = {.lex_state = 310, .external_lex_state = 2}, + [1984] = {.lex_state = 192, .external_lex_state = 4}, + [1985] = {.lex_state = 103}, + [1986] = {.lex_state = 141}, + [1987] = {.lex_state = 141}, + [1988] = {.lex_state = 332, .external_lex_state = 2}, + [1989] = {.lex_state = 137}, + [1990] = {.lex_state = 326, .external_lex_state = 13}, + [1991] = {.lex_state = 326, .external_lex_state = 13}, + [1992] = {.lex_state = 164}, + [1993] = {.lex_state = 326, .external_lex_state = 13}, + [1994] = {.lex_state = 326, .external_lex_state = 13}, + [1995] = {.lex_state = 326, .external_lex_state = 13}, + [1996] = {.lex_state = 332, .external_lex_state = 2}, + [1997] = {.lex_state = 137}, + [1998] = {.lex_state = 103}, + [1999] = {.lex_state = 226, .external_lex_state = 16}, + [2000] = {.lex_state = 235, .external_lex_state = 6}, + [2001] = {.lex_state = 226, .external_lex_state = 16}, + [2002] = {.lex_state = 226, .external_lex_state = 16}, + [2003] = {.lex_state = 103}, + [2004] = {.lex_state = 241, .external_lex_state = 2}, + [2005] = {.lex_state = 103}, + [2006] = {.lex_state = 249, .external_lex_state = 2}, + [2007] = {.lex_state = 103}, + [2008] = {.lex_state = 241, .external_lex_state = 2}, + [2009] = {.lex_state = 192, .external_lex_state = 4}, + [2010] = {.lex_state = 103}, + [2011] = {.lex_state = 141}, + [2012] = {.lex_state = 192, .external_lex_state = 4}, + [2013] = {.lex_state = 141}, + [2014] = {.lex_state = 192, .external_lex_state = 4}, + [2015] = {.lex_state = 103}, + [2016] = {.lex_state = 192, .external_lex_state = 4}, + [2017] = {.lex_state = 141}, + [2018] = {.lex_state = 189, .external_lex_state = 10}, + [2019] = {.lex_state = 189, .external_lex_state = 10}, + [2020] = {.lex_state = 189, .external_lex_state = 10}, + [2021] = {.lex_state = 286, .external_lex_state = 16}, + [2022] = {.lex_state = 320, .external_lex_state = 22}, + [2023] = {.lex_state = 320, .external_lex_state = 22}, + [2024] = {.lex_state = 103, .external_lex_state = 16}, + [2025] = {.lex_state = 286, .external_lex_state = 16}, + [2026] = {.lex_state = 189, .external_lex_state = 10}, + [2027] = {.lex_state = 286, .external_lex_state = 16}, + [2028] = {.lex_state = 189, .external_lex_state = 10}, + [2029] = {.lex_state = 286, .external_lex_state = 16}, + [2030] = {.lex_state = 189, .external_lex_state = 10}, + [2031] = {.lex_state = 286, .external_lex_state = 16}, + [2032] = {.lex_state = 189, .external_lex_state = 10}, + [2033] = {.lex_state = 286, .external_lex_state = 16}, + [2034] = {.lex_state = 192, .external_lex_state = 4}, + [2035] = {.lex_state = 328, .external_lex_state = 10}, + [2036] = {.lex_state = 328, .external_lex_state = 10}, + [2037] = {.lex_state = 192, .external_lex_state = 4}, + [2038] = {.lex_state = 141}, + [2039] = {.lex_state = 328, .external_lex_state = 10}, + [2040] = {.lex_state = 328, .external_lex_state = 10}, + [2041] = {.lex_state = 164}, + [2042] = {.lex_state = 328, .external_lex_state = 10}, + [2043] = {.lex_state = 328, .external_lex_state = 10}, + [2044] = {.lex_state = 328, .external_lex_state = 10}, + [2045] = {.lex_state = 103}, + [2046] = {.lex_state = 226, .external_lex_state = 16}, + [2047] = {.lex_state = 235, .external_lex_state = 6}, + [2048] = {.lex_state = 226, .external_lex_state = 16}, + [2049] = {.lex_state = 226, .external_lex_state = 16}, + [2050] = {.lex_state = 103}, + [2051] = {.lex_state = 241, .external_lex_state = 2}, + [2052] = {.lex_state = 103}, + [2053] = {.lex_state = 249, .external_lex_state = 2}, [2054] = {.lex_state = 103}, - [2055] = {.lex_state = 103}, - [2056] = {.lex_state = 232, .external_lex_state = 6}, - [2057] = {.lex_state = 234}, - [2058] = {.lex_state = 232, .external_lex_state = 23}, - [2059] = {.lex_state = 311, .external_lex_state = 22}, - [2060] = {.lex_state = 311, .external_lex_state = 22}, - [2061] = {.lex_state = 103, .external_lex_state = 16}, - [2062] = {.lex_state = 232, .external_lex_state = 23}, - [2063] = {.lex_state = 282, .external_lex_state = 16}, - [2064] = {.lex_state = 232, .external_lex_state = 23}, - [2065] = {.lex_state = 221, .external_lex_state = 16}, - [2066] = {.lex_state = 232, .external_lex_state = 23}, - [2067] = {.lex_state = 221, .external_lex_state = 16}, - [2068] = {.lex_state = 221, .external_lex_state = 16}, - [2069] = {.lex_state = 232, .external_lex_state = 23}, - [2070] = {.lex_state = 232, .external_lex_state = 13}, - [2071] = {.lex_state = 311, .external_lex_state = 22}, - [2072] = {.lex_state = 311, .external_lex_state = 22}, - [2073] = {.lex_state = 103, .external_lex_state = 16}, - [2074] = {.lex_state = 232, .external_lex_state = 13}, - [2075] = {.lex_state = 282, .external_lex_state = 16}, - [2076] = {.lex_state = 232, .external_lex_state = 13}, - [2077] = {.lex_state = 221, .external_lex_state = 16}, - [2078] = {.lex_state = 232, .external_lex_state = 13}, - [2079] = {.lex_state = 221, .external_lex_state = 16}, - [2080] = {.lex_state = 221, .external_lex_state = 16}, - [2081] = {.lex_state = 232, .external_lex_state = 13}, - [2082] = {.lex_state = 234, .external_lex_state = 17}, - [2083] = {.lex_state = 234, .external_lex_state = 17}, - [2084] = {.lex_state = 311, .external_lex_state = 22}, - [2085] = {.lex_state = 311, .external_lex_state = 22}, - [2086] = {.lex_state = 103, .external_lex_state = 16}, - [2087] = {.lex_state = 234, .external_lex_state = 17}, - [2088] = {.lex_state = 234, .external_lex_state = 17}, - [2089] = {.lex_state = 103}, - [2090] = {.lex_state = 286, .external_lex_state = 17}, - [2091] = {.lex_state = 286, .external_lex_state = 17}, - [2092] = {.lex_state = 286, .external_lex_state = 17}, - [2093] = {.lex_state = 282, .external_lex_state = 16}, - [2094] = {.lex_state = 286, .external_lex_state = 17}, - [2095] = {.lex_state = 221, .external_lex_state = 16}, - [2096] = {.lex_state = 103}, - [2097] = {.lex_state = 221, .external_lex_state = 16}, - [2098] = {.lex_state = 221, .external_lex_state = 16}, - [2099] = {.lex_state = 221, .external_lex_state = 16}, - [2100] = {.lex_state = 286, .external_lex_state = 17}, - [2101] = {.lex_state = 221, .external_lex_state = 16}, - [2102] = {.lex_state = 286, .external_lex_state = 17}, - [2103] = {.lex_state = 221, .external_lex_state = 16}, - [2104] = {.lex_state = 286, .external_lex_state = 17}, - [2105] = {.lex_state = 286, .external_lex_state = 17}, - [2106] = {.lex_state = 284, .external_lex_state = 18}, - [2107] = {.lex_state = 247, .external_lex_state = 15}, - [2108] = {.lex_state = 247, .external_lex_state = 15}, - [2109] = {.lex_state = 247, .external_lex_state = 15}, - [2110] = {.lex_state = 282, .external_lex_state = 16}, - [2111] = {.lex_state = 247, .external_lex_state = 15}, - [2112] = {.lex_state = 221, .external_lex_state = 16}, - [2113] = {.lex_state = 103}, - [2114] = {.lex_state = 221, .external_lex_state = 16}, - [2115] = {.lex_state = 221, .external_lex_state = 16}, - [2116] = {.lex_state = 221, .external_lex_state = 16}, - [2117] = {.lex_state = 247, .external_lex_state = 15}, - [2118] = {.lex_state = 221, .external_lex_state = 16}, - [2119] = {.lex_state = 247, .external_lex_state = 15}, - [2120] = {.lex_state = 221, .external_lex_state = 16}, - [2121] = {.lex_state = 247, .external_lex_state = 15}, - [2122] = {.lex_state = 247, .external_lex_state = 15}, - [2123] = {.lex_state = 315, .external_lex_state = 18}, - [2124] = {.lex_state = 141}, - [2125] = {.lex_state = 330, .external_lex_state = 13}, - [2126] = {.lex_state = 163}, - [2127] = {.lex_state = 168}, - [2128] = {.lex_state = 330, .external_lex_state = 13}, - [2129] = {.lex_state = 173, .external_lex_state = 6}, - [2130] = {.lex_state = 20, .external_lex_state = 2}, - [2131] = {.lex_state = 20, .external_lex_state = 2}, - [2132] = {.lex_state = 20, .external_lex_state = 2}, - [2133] = {.lex_state = 241, .external_lex_state = 23}, - [2134] = {.lex_state = 311, .external_lex_state = 22}, - [2135] = {.lex_state = 311, .external_lex_state = 22}, - [2136] = {.lex_state = 103, .external_lex_state = 16}, - [2137] = {.lex_state = 241, .external_lex_state = 23}, - [2138] = {.lex_state = 282, .external_lex_state = 16}, - [2139] = {.lex_state = 241, .external_lex_state = 23}, - [2140] = {.lex_state = 221, .external_lex_state = 16}, - [2141] = {.lex_state = 241, .external_lex_state = 23}, - [2142] = {.lex_state = 221, .external_lex_state = 16}, - [2143] = {.lex_state = 221, .external_lex_state = 16}, - [2144] = {.lex_state = 241, .external_lex_state = 23}, - [2145] = {.lex_state = 241, .external_lex_state = 13}, - [2146] = {.lex_state = 311, .external_lex_state = 22}, - [2147] = {.lex_state = 311, .external_lex_state = 22}, - [2148] = {.lex_state = 103, .external_lex_state = 16}, - [2149] = {.lex_state = 241, .external_lex_state = 13}, - [2150] = {.lex_state = 282, .external_lex_state = 16}, - [2151] = {.lex_state = 241, .external_lex_state = 13}, - [2152] = {.lex_state = 221, .external_lex_state = 16}, - [2153] = {.lex_state = 241, .external_lex_state = 13}, - [2154] = {.lex_state = 221, .external_lex_state = 16}, - [2155] = {.lex_state = 221, .external_lex_state = 16}, - [2156] = {.lex_state = 241, .external_lex_state = 13}, - [2157] = {.lex_state = 243, .external_lex_state = 17}, - [2158] = {.lex_state = 243, .external_lex_state = 17}, - [2159] = {.lex_state = 311, .external_lex_state = 22}, - [2160] = {.lex_state = 311, .external_lex_state = 22}, - [2161] = {.lex_state = 103, .external_lex_state = 16}, - [2162] = {.lex_state = 243, .external_lex_state = 17}, - [2163] = {.lex_state = 243, .external_lex_state = 17}, - [2164] = {.lex_state = 288, .external_lex_state = 17}, - [2165] = {.lex_state = 288, .external_lex_state = 17}, - [2166] = {.lex_state = 288, .external_lex_state = 17}, - [2167] = {.lex_state = 282, .external_lex_state = 16}, - [2168] = {.lex_state = 288, .external_lex_state = 17}, - [2169] = {.lex_state = 221, .external_lex_state = 16}, - [2170] = {.lex_state = 103}, - [2171] = {.lex_state = 221, .external_lex_state = 16}, - [2172] = {.lex_state = 221, .external_lex_state = 16}, - [2173] = {.lex_state = 221, .external_lex_state = 16}, - [2174] = {.lex_state = 288, .external_lex_state = 17}, - [2175] = {.lex_state = 221, .external_lex_state = 16}, - [2176] = {.lex_state = 288, .external_lex_state = 17}, - [2177] = {.lex_state = 221, .external_lex_state = 16}, - [2178] = {.lex_state = 288, .external_lex_state = 17}, - [2179] = {.lex_state = 288, .external_lex_state = 17}, - [2180] = {.lex_state = 255, .external_lex_state = 5}, - [2181] = {.lex_state = 311, .external_lex_state = 22}, - [2182] = {.lex_state = 311, .external_lex_state = 22}, - [2183] = {.lex_state = 103, .external_lex_state = 16}, - [2184] = {.lex_state = 255, .external_lex_state = 5}, - [2185] = {.lex_state = 282, .external_lex_state = 16}, - [2186] = {.lex_state = 255, .external_lex_state = 5}, - [2187] = {.lex_state = 221, .external_lex_state = 16}, - [2188] = {.lex_state = 255, .external_lex_state = 5}, - [2189] = {.lex_state = 221, .external_lex_state = 16}, - [2190] = {.lex_state = 221, .external_lex_state = 16}, - [2191] = {.lex_state = 255, .external_lex_state = 5}, - [2192] = {.lex_state = 282, .external_lex_state = 16}, - [2193] = {.lex_state = 290, .external_lex_state = 24}, - [2194] = {.lex_state = 221, .external_lex_state = 16}, - [2195] = {.lex_state = 103}, - [2196] = {.lex_state = 221, .external_lex_state = 16}, - [2197] = {.lex_state = 221, .external_lex_state = 16}, - [2198] = {.lex_state = 221, .external_lex_state = 16}, - [2199] = {.lex_state = 290, .external_lex_state = 24}, - [2200] = {.lex_state = 221, .external_lex_state = 16}, - [2201] = {.lex_state = 290, .external_lex_state = 24}, - [2202] = {.lex_state = 221, .external_lex_state = 16}, - [2203] = {.lex_state = 257, .external_lex_state = 11}, - [2204] = {.lex_state = 257, .external_lex_state = 11}, - [2205] = {.lex_state = 311, .external_lex_state = 22}, - [2206] = {.lex_state = 311, .external_lex_state = 22}, - [2207] = {.lex_state = 103, .external_lex_state = 16}, - [2208] = {.lex_state = 257, .external_lex_state = 11}, - [2209] = {.lex_state = 257, .external_lex_state = 11}, - [2210] = {.lex_state = 297, .external_lex_state = 13}, - [2211] = {.lex_state = 311, .external_lex_state = 22}, - [2212] = {.lex_state = 311, .external_lex_state = 22}, - [2213] = {.lex_state = 103, .external_lex_state = 16}, - [2214] = {.lex_state = 297, .external_lex_state = 13}, - [2215] = {.lex_state = 282, .external_lex_state = 16}, - [2216] = {.lex_state = 297, .external_lex_state = 13}, - [2217] = {.lex_state = 221, .external_lex_state = 16}, - [2218] = {.lex_state = 297, .external_lex_state = 13}, - [2219] = {.lex_state = 221, .external_lex_state = 16}, - [2220] = {.lex_state = 221, .external_lex_state = 16}, - [2221] = {.lex_state = 297, .external_lex_state = 13}, - [2222] = {.lex_state = 180, .external_lex_state = 20}, - [2223] = {.lex_state = 180, .external_lex_state = 20}, - [2224] = {.lex_state = 311, .external_lex_state = 22}, - [2225] = {.lex_state = 311, .external_lex_state = 22}, - [2226] = {.lex_state = 103, .external_lex_state = 16}, - [2227] = {.lex_state = 180, .external_lex_state = 20}, - [2228] = {.lex_state = 180, .external_lex_state = 20}, - [2229] = {.lex_state = 299, .external_lex_state = 10}, - [2230] = {.lex_state = 311, .external_lex_state = 22}, - [2231] = {.lex_state = 311, .external_lex_state = 22}, - [2232] = {.lex_state = 103, .external_lex_state = 16}, - [2233] = {.lex_state = 299, .external_lex_state = 10}, - [2234] = {.lex_state = 282, .external_lex_state = 16}, - [2235] = {.lex_state = 299, .external_lex_state = 10}, - [2236] = {.lex_state = 221, .external_lex_state = 16}, - [2237] = {.lex_state = 299, .external_lex_state = 10}, - [2238] = {.lex_state = 221, .external_lex_state = 16}, - [2239] = {.lex_state = 221, .external_lex_state = 16}, - [2240] = {.lex_state = 299, .external_lex_state = 10}, - [2241] = {.lex_state = 191, .external_lex_state = 4}, - [2242] = {.lex_state = 259, .external_lex_state = 2}, - [2243] = {.lex_state = 265, .external_lex_state = 2}, - [2244] = {.lex_state = 191, .external_lex_state = 4}, - [2245] = {.lex_state = 317, .external_lex_state = 13}, - [2246] = {.lex_state = 317, .external_lex_state = 13}, - [2247] = {.lex_state = 317, .external_lex_state = 13}, - [2248] = {.lex_state = 137}, - [2249] = {.lex_state = 303}, - [2250] = {.lex_state = 323, .external_lex_state = 2}, - [2251] = {.lex_state = 149, .external_lex_state = 4}, - [2252] = {.lex_state = 180, .external_lex_state = 8}, - [2253] = {.lex_state = 323, .external_lex_state = 2}, - [2254] = {.lex_state = 323, .external_lex_state = 2}, - [2255] = {.lex_state = 137}, - [2256] = {.lex_state = 317, .external_lex_state = 13}, - [2257] = {.lex_state = 317, .external_lex_state = 13}, - [2258] = {.lex_state = 303}, - [2259] = {.lex_state = 323, .external_lex_state = 2}, - [2260] = {.lex_state = 323, .external_lex_state = 2}, - [2261] = {.lex_state = 282, .external_lex_state = 16}, - [2262] = {.lex_state = 317, .external_lex_state = 13}, - [2263] = {.lex_state = 221, .external_lex_state = 16}, + [2055] = {.lex_state = 241, .external_lex_state = 2}, + [2056] = {.lex_state = 187, .external_lex_state = 20}, + [2057] = {.lex_state = 187, .external_lex_state = 20}, + [2058] = {.lex_state = 187, .external_lex_state = 20}, + [2059] = {.lex_state = 284, .external_lex_state = 16}, + [2060] = {.lex_state = 187, .external_lex_state = 20}, + [2061] = {.lex_state = 288}, + [2062] = {.lex_state = 286, .external_lex_state = 16}, + [2063] = {.lex_state = 103}, + [2064] = {.lex_state = 226, .external_lex_state = 16}, + [2065] = {.lex_state = 226, .external_lex_state = 16}, + [2066] = {.lex_state = 226, .external_lex_state = 16}, + [2067] = {.lex_state = 187, .external_lex_state = 20}, + [2068] = {.lex_state = 288}, + [2069] = {.lex_state = 286, .external_lex_state = 16}, + [2070] = {.lex_state = 187, .external_lex_state = 20}, + [2071] = {.lex_state = 288}, + [2072] = {.lex_state = 286, .external_lex_state = 16}, + [2073] = {.lex_state = 187, .external_lex_state = 20}, + [2074] = {.lex_state = 187, .external_lex_state = 20}, + [2075] = {.lex_state = 318, .external_lex_state = 7}, + [2076] = {.lex_state = 141}, + [2077] = {.lex_state = 335, .external_lex_state = 10}, + [2078] = {.lex_state = 164}, + [2079] = {.lex_state = 169}, + [2080] = {.lex_state = 335, .external_lex_state = 10}, + [2081] = {.lex_state = 174, .external_lex_state = 6}, + [2082] = {.lex_state = 20, .external_lex_state = 2}, + [2083] = {.lex_state = 20, .external_lex_state = 2}, + [2084] = {.lex_state = 20, .external_lex_state = 2}, + [2085] = {.lex_state = 192, .external_lex_state = 14}, + [2086] = {.lex_state = 320, .external_lex_state = 22}, + [2087] = {.lex_state = 320, .external_lex_state = 22}, + [2088] = {.lex_state = 103, .external_lex_state = 16}, + [2089] = {.lex_state = 286, .external_lex_state = 16}, + [2090] = {.lex_state = 192, .external_lex_state = 14}, + [2091] = {.lex_state = 284, .external_lex_state = 16}, + [2092] = {.lex_state = 192, .external_lex_state = 14}, + [2093] = {.lex_state = 288}, + [2094] = {.lex_state = 286, .external_lex_state = 16}, + [2095] = {.lex_state = 192, .external_lex_state = 14}, + [2096] = {.lex_state = 288}, + [2097] = {.lex_state = 286, .external_lex_state = 16}, + [2098] = {.lex_state = 288}, + [2099] = {.lex_state = 286, .external_lex_state = 16}, + [2100] = {.lex_state = 286, .external_lex_state = 16}, + [2101] = {.lex_state = 192, .external_lex_state = 14}, + [2102] = {.lex_state = 286, .external_lex_state = 16}, + [2103] = {.lex_state = 192, .external_lex_state = 10}, + [2104] = {.lex_state = 320, .external_lex_state = 22}, + [2105] = {.lex_state = 320, .external_lex_state = 22}, + [2106] = {.lex_state = 103, .external_lex_state = 16}, + [2107] = {.lex_state = 286, .external_lex_state = 16}, + [2108] = {.lex_state = 192, .external_lex_state = 10}, + [2109] = {.lex_state = 284, .external_lex_state = 16}, + [2110] = {.lex_state = 192, .external_lex_state = 10}, + [2111] = {.lex_state = 288}, + [2112] = {.lex_state = 286, .external_lex_state = 16}, + [2113] = {.lex_state = 192, .external_lex_state = 10}, + [2114] = {.lex_state = 288}, + [2115] = {.lex_state = 286, .external_lex_state = 16}, + [2116] = {.lex_state = 288}, + [2117] = {.lex_state = 286, .external_lex_state = 16}, + [2118] = {.lex_state = 286, .external_lex_state = 16}, + [2119] = {.lex_state = 192, .external_lex_state = 10}, + [2120] = {.lex_state = 286, .external_lex_state = 16}, + [2121] = {.lex_state = 183, .external_lex_state = 5}, + [2122] = {.lex_state = 183, .external_lex_state = 5}, + [2123] = {.lex_state = 183, .external_lex_state = 5}, + [2124] = {.lex_state = 286, .external_lex_state = 16}, + [2125] = {.lex_state = 320, .external_lex_state = 22}, + [2126] = {.lex_state = 320, .external_lex_state = 22}, + [2127] = {.lex_state = 103, .external_lex_state = 16}, + [2128] = {.lex_state = 286, .external_lex_state = 16}, + [2129] = {.lex_state = 183, .external_lex_state = 5}, + [2130] = {.lex_state = 286, .external_lex_state = 16}, + [2131] = {.lex_state = 183, .external_lex_state = 5}, + [2132] = {.lex_state = 286, .external_lex_state = 16}, + [2133] = {.lex_state = 183, .external_lex_state = 5}, + [2134] = {.lex_state = 286, .external_lex_state = 16}, + [2135] = {.lex_state = 183, .external_lex_state = 5}, + [2136] = {.lex_state = 286, .external_lex_state = 16}, + [2137] = {.lex_state = 253, .external_lex_state = 5}, + [2138] = {.lex_state = 253, .external_lex_state = 5}, + [2139] = {.lex_state = 253, .external_lex_state = 5}, + [2140] = {.lex_state = 284, .external_lex_state = 16}, + [2141] = {.lex_state = 253, .external_lex_state = 5}, + [2142] = {.lex_state = 288}, + [2143] = {.lex_state = 286, .external_lex_state = 16}, + [2144] = {.lex_state = 103}, + [2145] = {.lex_state = 226, .external_lex_state = 16}, + [2146] = {.lex_state = 226, .external_lex_state = 16}, + [2147] = {.lex_state = 226, .external_lex_state = 16}, + [2148] = {.lex_state = 253, .external_lex_state = 5}, + [2149] = {.lex_state = 288}, + [2150] = {.lex_state = 286, .external_lex_state = 16}, + [2151] = {.lex_state = 253, .external_lex_state = 5}, + [2152] = {.lex_state = 288}, + [2153] = {.lex_state = 286, .external_lex_state = 16}, + [2154] = {.lex_state = 253, .external_lex_state = 5}, + [2155] = {.lex_state = 253, .external_lex_state = 5}, + [2156] = {.lex_state = 217, .external_lex_state = 11}, + [2157] = {.lex_state = 217, .external_lex_state = 11}, + [2158] = {.lex_state = 217, .external_lex_state = 11}, + [2159] = {.lex_state = 286, .external_lex_state = 16}, + [2160] = {.lex_state = 320, .external_lex_state = 22}, + [2161] = {.lex_state = 320, .external_lex_state = 22}, + [2162] = {.lex_state = 103, .external_lex_state = 16}, + [2163] = {.lex_state = 286, .external_lex_state = 16}, + [2164] = {.lex_state = 217, .external_lex_state = 11}, + [2165] = {.lex_state = 286, .external_lex_state = 16}, + [2166] = {.lex_state = 217, .external_lex_state = 11}, + [2167] = {.lex_state = 286, .external_lex_state = 16}, + [2168] = {.lex_state = 217, .external_lex_state = 11}, + [2169] = {.lex_state = 286, .external_lex_state = 16}, + [2170] = {.lex_state = 217, .external_lex_state = 11}, + [2171] = {.lex_state = 286, .external_lex_state = 16}, + [2172] = {.lex_state = 219, .external_lex_state = 13}, + [2173] = {.lex_state = 219, .external_lex_state = 13}, + [2174] = {.lex_state = 219, .external_lex_state = 13}, + [2175] = {.lex_state = 286, .external_lex_state = 16}, + [2176] = {.lex_state = 320, .external_lex_state = 22}, + [2177] = {.lex_state = 320, .external_lex_state = 22}, + [2178] = {.lex_state = 103, .external_lex_state = 16}, + [2179] = {.lex_state = 286, .external_lex_state = 16}, + [2180] = {.lex_state = 219, .external_lex_state = 13}, + [2181] = {.lex_state = 286, .external_lex_state = 16}, + [2182] = {.lex_state = 219, .external_lex_state = 13}, + [2183] = {.lex_state = 286, .external_lex_state = 16}, + [2184] = {.lex_state = 219, .external_lex_state = 13}, + [2185] = {.lex_state = 286, .external_lex_state = 16}, + [2186] = {.lex_state = 219, .external_lex_state = 13}, + [2187] = {.lex_state = 286, .external_lex_state = 16}, + [2188] = {.lex_state = 192, .external_lex_state = 3}, + [2189] = {.lex_state = 152, .external_lex_state = 14}, + [2190] = {.lex_state = 152, .external_lex_state = 14}, + [2191] = {.lex_state = 152, .external_lex_state = 14}, + [2192] = {.lex_state = 286, .external_lex_state = 16}, + [2193] = {.lex_state = 320, .external_lex_state = 22}, + [2194] = {.lex_state = 320, .external_lex_state = 22}, + [2195] = {.lex_state = 103, .external_lex_state = 16}, + [2196] = {.lex_state = 286, .external_lex_state = 16}, + [2197] = {.lex_state = 152, .external_lex_state = 14}, + [2198] = {.lex_state = 286, .external_lex_state = 16}, + [2199] = {.lex_state = 152, .external_lex_state = 14}, + [2200] = {.lex_state = 286, .external_lex_state = 16}, + [2201] = {.lex_state = 152, .external_lex_state = 14}, + [2202] = {.lex_state = 286, .external_lex_state = 16}, + [2203] = {.lex_state = 152, .external_lex_state = 14}, + [2204] = {.lex_state = 286, .external_lex_state = 16}, + [2205] = {.lex_state = 152, .external_lex_state = 10}, + [2206] = {.lex_state = 152, .external_lex_state = 10}, + [2207] = {.lex_state = 152, .external_lex_state = 10}, + [2208] = {.lex_state = 286, .external_lex_state = 16}, + [2209] = {.lex_state = 320, .external_lex_state = 22}, + [2210] = {.lex_state = 320, .external_lex_state = 22}, + [2211] = {.lex_state = 103, .external_lex_state = 16}, + [2212] = {.lex_state = 286, .external_lex_state = 16}, + [2213] = {.lex_state = 152, .external_lex_state = 10}, + [2214] = {.lex_state = 286, .external_lex_state = 16}, + [2215] = {.lex_state = 152, .external_lex_state = 10}, + [2216] = {.lex_state = 286, .external_lex_state = 16}, + [2217] = {.lex_state = 152, .external_lex_state = 10}, + [2218] = {.lex_state = 286, .external_lex_state = 16}, + [2219] = {.lex_state = 152, .external_lex_state = 10}, + [2220] = {.lex_state = 286, .external_lex_state = 16}, + [2221] = {.lex_state = 141, .external_lex_state = 15}, + [2222] = {.lex_state = 141, .external_lex_state = 15}, + [2223] = {.lex_state = 141, .external_lex_state = 15}, + [2224] = {.lex_state = 286, .external_lex_state = 16}, + [2225] = {.lex_state = 320, .external_lex_state = 22}, + [2226] = {.lex_state = 320, .external_lex_state = 22}, + [2227] = {.lex_state = 103, .external_lex_state = 16}, + [2228] = {.lex_state = 286, .external_lex_state = 16}, + [2229] = {.lex_state = 141, .external_lex_state = 15}, + [2230] = {.lex_state = 286, .external_lex_state = 16}, + [2231] = {.lex_state = 141, .external_lex_state = 15}, + [2232] = {.lex_state = 286, .external_lex_state = 16}, + [2233] = {.lex_state = 141, .external_lex_state = 15}, + [2234] = {.lex_state = 286, .external_lex_state = 16}, + [2235] = {.lex_state = 141, .external_lex_state = 15}, + [2236] = {.lex_state = 286, .external_lex_state = 16}, + [2237] = {.lex_state = 164, .external_lex_state = 13}, + [2238] = {.lex_state = 164, .external_lex_state = 13}, + [2239] = {.lex_state = 164, .external_lex_state = 13}, + [2240] = {.lex_state = 286, .external_lex_state = 16}, + [2241] = {.lex_state = 320, .external_lex_state = 22}, + [2242] = {.lex_state = 320, .external_lex_state = 22}, + [2243] = {.lex_state = 103, .external_lex_state = 16}, + [2244] = {.lex_state = 286, .external_lex_state = 16}, + [2245] = {.lex_state = 164, .external_lex_state = 13}, + [2246] = {.lex_state = 286, .external_lex_state = 16}, + [2247] = {.lex_state = 164, .external_lex_state = 13}, + [2248] = {.lex_state = 286, .external_lex_state = 16}, + [2249] = {.lex_state = 164, .external_lex_state = 13}, + [2250] = {.lex_state = 286, .external_lex_state = 16}, + [2251] = {.lex_state = 164, .external_lex_state = 13}, + [2252] = {.lex_state = 286, .external_lex_state = 16}, + [2253] = {.lex_state = 226, .external_lex_state = 22}, + [2254] = {.lex_state = 226, .external_lex_state = 16}, + [2255] = {.lex_state = 226, .external_lex_state = 22}, + [2256] = {.lex_state = 226, .external_lex_state = 16}, + [2257] = {.lex_state = 320, .external_lex_state = 22}, + [2258] = {.lex_state = 320, .external_lex_state = 22}, + [2259] = {.lex_state = 320, .external_lex_state = 22}, + [2260] = {.lex_state = 284, .external_lex_state = 16}, + [2261] = {.lex_state = 320, .external_lex_state = 22}, + [2262] = {.lex_state = 288}, + [2263] = {.lex_state = 286, .external_lex_state = 16}, [2264] = {.lex_state = 103}, - [2265] = {.lex_state = 221, .external_lex_state = 16}, - [2266] = {.lex_state = 221, .external_lex_state = 16}, - [2267] = {.lex_state = 221, .external_lex_state = 16}, - [2268] = {.lex_state = 317, .external_lex_state = 13}, - [2269] = {.lex_state = 221, .external_lex_state = 16}, - [2270] = {.lex_state = 317, .external_lex_state = 13}, - [2271] = {.lex_state = 221, .external_lex_state = 16}, - [2272] = {.lex_state = 317, .external_lex_state = 13}, - [2273] = {.lex_state = 317, .external_lex_state = 13}, - [2274] = {.lex_state = 191, .external_lex_state = 4}, - [2275] = {.lex_state = 317, .external_lex_state = 13}, - [2276] = {.lex_state = 317, .external_lex_state = 13}, - [2277] = {.lex_state = 137}, - [2278] = {.lex_state = 103}, - [2279] = {.lex_state = 191, .external_lex_state = 4}, - [2280] = {.lex_state = 103}, - [2281] = {.lex_state = 188, .external_lex_state = 10}, - [2282] = {.lex_state = 188, .external_lex_state = 10}, - [2283] = {.lex_state = 319, .external_lex_state = 10}, - [2284] = {.lex_state = 319, .external_lex_state = 10}, - [2285] = {.lex_state = 319, .external_lex_state = 10}, - [2286] = {.lex_state = 282, .external_lex_state = 16}, - [2287] = {.lex_state = 319, .external_lex_state = 10}, - [2288] = {.lex_state = 221, .external_lex_state = 16}, - [2289] = {.lex_state = 103}, - [2290] = {.lex_state = 221, .external_lex_state = 16}, - [2291] = {.lex_state = 221, .external_lex_state = 16}, - [2292] = {.lex_state = 221, .external_lex_state = 16}, - [2293] = {.lex_state = 319, .external_lex_state = 10}, - [2294] = {.lex_state = 221, .external_lex_state = 16}, - [2295] = {.lex_state = 319, .external_lex_state = 10}, - [2296] = {.lex_state = 221, .external_lex_state = 16}, - [2297] = {.lex_state = 319, .external_lex_state = 10}, - [2298] = {.lex_state = 319, .external_lex_state = 10}, - [2299] = {.lex_state = 186, .external_lex_state = 20}, - [2300] = {.lex_state = 311, .external_lex_state = 22}, - [2301] = {.lex_state = 311, .external_lex_state = 22}, - [2302] = {.lex_state = 103, .external_lex_state = 16}, - [2303] = {.lex_state = 186, .external_lex_state = 20}, - [2304] = {.lex_state = 282, .external_lex_state = 16}, - [2305] = {.lex_state = 186, .external_lex_state = 20}, - [2306] = {.lex_state = 221, .external_lex_state = 16}, - [2307] = {.lex_state = 186, .external_lex_state = 20}, - [2308] = {.lex_state = 221, .external_lex_state = 16}, - [2309] = {.lex_state = 221, .external_lex_state = 16}, - [2310] = {.lex_state = 186, .external_lex_state = 20}, - [2311] = {.lex_state = 326, .external_lex_state = 10}, - [2312] = {.lex_state = 326, .external_lex_state = 10}, - [2313] = {.lex_state = 141}, - [2314] = {.lex_state = 326, .external_lex_state = 10}, - [2315] = {.lex_state = 326, .external_lex_state = 10}, - [2316] = {.lex_state = 163}, - [2317] = {.lex_state = 326, .external_lex_state = 10}, - [2318] = {.lex_state = 326, .external_lex_state = 10}, - [2319] = {.lex_state = 326, .external_lex_state = 10}, - [2320] = {.lex_state = 103}, - [2321] = {.lex_state = 221, .external_lex_state = 16}, - [2322] = {.lex_state = 230, .external_lex_state = 6}, - [2323] = {.lex_state = 221, .external_lex_state = 16}, - [2324] = {.lex_state = 221, .external_lex_state = 16}, + [2265] = {.lex_state = 226, .external_lex_state = 16}, + [2266] = {.lex_state = 226, .external_lex_state = 16}, + [2267] = {.lex_state = 226, .external_lex_state = 16}, + [2268] = {.lex_state = 320, .external_lex_state = 22}, + [2269] = {.lex_state = 288}, + [2270] = {.lex_state = 286, .external_lex_state = 16}, + [2271] = {.lex_state = 320, .external_lex_state = 22}, + [2272] = {.lex_state = 288}, + [2273] = {.lex_state = 286, .external_lex_state = 16}, + [2274] = {.lex_state = 320, .external_lex_state = 22}, + [2275] = {.lex_state = 320, .external_lex_state = 22}, + [2276] = {.lex_state = 286, .external_lex_state = 22}, + [2277] = {.lex_state = 320, .external_lex_state = 22}, + [2278] = {.lex_state = 320, .external_lex_state = 22}, + [2279] = {.lex_state = 103, .external_lex_state = 16}, + [2280] = {.lex_state = 286, .external_lex_state = 16}, + [2281] = {.lex_state = 286, .external_lex_state = 22}, + [2282] = {.lex_state = 284, .external_lex_state = 16}, + [2283] = {.lex_state = 286, .external_lex_state = 22}, + [2284] = {.lex_state = 288}, + [2285] = {.lex_state = 286, .external_lex_state = 16}, + [2286] = {.lex_state = 286, .external_lex_state = 22}, + [2287] = {.lex_state = 288}, + [2288] = {.lex_state = 286, .external_lex_state = 16}, + [2289] = {.lex_state = 288}, + [2290] = {.lex_state = 286, .external_lex_state = 16}, + [2291] = {.lex_state = 286, .external_lex_state = 16}, + [2292] = {.lex_state = 286, .external_lex_state = 22}, + [2293] = {.lex_state = 286, .external_lex_state = 16}, + [2294] = {.lex_state = 161, .external_lex_state = 5}, + [2295] = {.lex_state = 161, .external_lex_state = 5}, + [2296] = {.lex_state = 161, .external_lex_state = 5}, + [2297] = {.lex_state = 161, .external_lex_state = 5}, + [2298] = {.lex_state = 286, .external_lex_state = 16}, + [2299] = {.lex_state = 161, .external_lex_state = 5}, + [2300] = {.lex_state = 286, .external_lex_state = 16}, + [2301] = {.lex_state = 161, .external_lex_state = 5}, + [2302] = {.lex_state = 286, .external_lex_state = 16}, + [2303] = {.lex_state = 161, .external_lex_state = 5}, + [2304] = {.lex_state = 161, .external_lex_state = 5}, + [2305] = {.lex_state = 241, .external_lex_state = 2}, + [2306] = {.lex_state = 241, .external_lex_state = 15}, + [2307] = {.lex_state = 241, .external_lex_state = 15}, + [2308] = {.lex_state = 241, .external_lex_state = 15}, + [2309] = {.lex_state = 284, .external_lex_state = 16}, + [2310] = {.lex_state = 241, .external_lex_state = 15}, + [2311] = {.lex_state = 288}, + [2312] = {.lex_state = 286, .external_lex_state = 16}, + [2313] = {.lex_state = 103}, + [2314] = {.lex_state = 226, .external_lex_state = 16}, + [2315] = {.lex_state = 226, .external_lex_state = 16}, + [2316] = {.lex_state = 226, .external_lex_state = 16}, + [2317] = {.lex_state = 241, .external_lex_state = 15}, + [2318] = {.lex_state = 288}, + [2319] = {.lex_state = 286, .external_lex_state = 16}, + [2320] = {.lex_state = 241, .external_lex_state = 15}, + [2321] = {.lex_state = 288}, + [2322] = {.lex_state = 286, .external_lex_state = 16}, + [2323] = {.lex_state = 241, .external_lex_state = 15}, + [2324] = {.lex_state = 241, .external_lex_state = 15}, [2325] = {.lex_state = 103}, - [2326] = {.lex_state = 239, .external_lex_state = 2}, + [2326] = {.lex_state = 293, .external_lex_state = 18}, [2327] = {.lex_state = 103}, - [2328] = {.lex_state = 247, .external_lex_state = 2}, + [2328] = {.lex_state = 103}, [2329] = {.lex_state = 103}, - [2330] = {.lex_state = 239, .external_lex_state = 2}, - [2331] = {.lex_state = 191, .external_lex_state = 14}, - [2332] = {.lex_state = 191, .external_lex_state = 14}, - [2333] = {.lex_state = 311, .external_lex_state = 22}, - [2334] = {.lex_state = 311, .external_lex_state = 22}, - [2335] = {.lex_state = 103, .external_lex_state = 16}, - [2336] = {.lex_state = 191, .external_lex_state = 14}, - [2337] = {.lex_state = 191, .external_lex_state = 14}, - [2338] = {.lex_state = 191, .external_lex_state = 10}, - [2339] = {.lex_state = 191, .external_lex_state = 10}, - [2340] = {.lex_state = 311, .external_lex_state = 22}, - [2341] = {.lex_state = 311, .external_lex_state = 22}, - [2342] = {.lex_state = 103, .external_lex_state = 16}, - [2343] = {.lex_state = 191, .external_lex_state = 10}, - [2344] = {.lex_state = 191, .external_lex_state = 10}, - [2345] = {.lex_state = 182, .external_lex_state = 5}, - [2346] = {.lex_state = 182, .external_lex_state = 5}, - [2347] = {.lex_state = 251, .external_lex_state = 5}, - [2348] = {.lex_state = 311, .external_lex_state = 22}, - [2349] = {.lex_state = 311, .external_lex_state = 22}, - [2350] = {.lex_state = 103, .external_lex_state = 16}, - [2351] = {.lex_state = 251, .external_lex_state = 5}, - [2352] = {.lex_state = 282, .external_lex_state = 16}, - [2353] = {.lex_state = 251, .external_lex_state = 5}, - [2354] = {.lex_state = 221, .external_lex_state = 16}, - [2355] = {.lex_state = 251, .external_lex_state = 5}, - [2356] = {.lex_state = 221, .external_lex_state = 16}, - [2357] = {.lex_state = 221, .external_lex_state = 16}, - [2358] = {.lex_state = 251, .external_lex_state = 5}, - [2359] = {.lex_state = 212, .external_lex_state = 11}, - [2360] = {.lex_state = 212, .external_lex_state = 11}, - [2361] = {.lex_state = 214, .external_lex_state = 13}, - [2362] = {.lex_state = 214, .external_lex_state = 13}, - [2363] = {.lex_state = 149, .external_lex_state = 14}, - [2364] = {.lex_state = 149, .external_lex_state = 14}, - [2365] = {.lex_state = 149, .external_lex_state = 10}, - [2366] = {.lex_state = 149, .external_lex_state = 10}, - [2367] = {.lex_state = 141, .external_lex_state = 15}, - [2368] = {.lex_state = 141, .external_lex_state = 15}, - [2369] = {.lex_state = 163, .external_lex_state = 13}, - [2370] = {.lex_state = 163, .external_lex_state = 13}, - [2371] = {.lex_state = 221, .external_lex_state = 16}, - [2372] = {.lex_state = 221, .external_lex_state = 16}, - [2373] = {.lex_state = 311, .external_lex_state = 22}, - [2374] = {.lex_state = 311, .external_lex_state = 22}, - [2375] = {.lex_state = 311, .external_lex_state = 22}, - [2376] = {.lex_state = 103, .external_lex_state = 16}, - [2377] = {.lex_state = 311, .external_lex_state = 22}, - [2378] = {.lex_state = 282, .external_lex_state = 16}, - [2379] = {.lex_state = 311, .external_lex_state = 22}, - [2380] = {.lex_state = 221, .external_lex_state = 16}, - [2381] = {.lex_state = 311, .external_lex_state = 22}, - [2382] = {.lex_state = 221, .external_lex_state = 16}, - [2383] = {.lex_state = 221, .external_lex_state = 16}, - [2384] = {.lex_state = 311, .external_lex_state = 22}, - [2385] = {.lex_state = 221, .external_lex_state = 22}, - [2386] = {.lex_state = 221, .external_lex_state = 22}, - [2387] = {.lex_state = 311, .external_lex_state = 22}, - [2388] = {.lex_state = 311, .external_lex_state = 22}, - [2389] = {.lex_state = 103, .external_lex_state = 16}, - [2390] = {.lex_state = 221, .external_lex_state = 22}, - [2391] = {.lex_state = 221, .external_lex_state = 22}, - [2392] = {.lex_state = 239, .external_lex_state = 15}, - [2393] = {.lex_state = 311, .external_lex_state = 22}, - [2394] = {.lex_state = 311, .external_lex_state = 22}, + [2330] = {.lex_state = 103}, + [2331] = {.lex_state = 103}, + [2332] = {.lex_state = 141}, + [2333] = {.lex_state = 312}, + [2334] = {.lex_state = 103}, + [2335] = {.lex_state = 103}, + [2336] = {.lex_state = 141}, + [2337] = {.lex_state = 312}, + [2338] = {.lex_state = 322, .external_lex_state = 18}, + [2339] = {.lex_state = 330, .external_lex_state = 18}, + [2340] = {.lex_state = 141}, + [2341] = {.lex_state = 337, .external_lex_state = 13}, + [2342] = {.lex_state = 164}, + [2343] = {.lex_state = 169}, + [2344] = {.lex_state = 337, .external_lex_state = 13}, + [2345] = {.lex_state = 174, .external_lex_state = 6}, + [2346] = {.lex_state = 20, .external_lex_state = 2}, + [2347] = {.lex_state = 20, .external_lex_state = 2}, + [2348] = {.lex_state = 20, .external_lex_state = 2}, + [2349] = {.lex_state = 103}, + [2350] = {.lex_state = 103}, + [2351] = {.lex_state = 237, .external_lex_state = 6}, + [2352] = {.lex_state = 241}, + [2353] = {.lex_state = 237, .external_lex_state = 23}, + [2354] = {.lex_state = 320, .external_lex_state = 22}, + [2355] = {.lex_state = 320, .external_lex_state = 22}, + [2356] = {.lex_state = 103, .external_lex_state = 16}, + [2357] = {.lex_state = 286, .external_lex_state = 16}, + [2358] = {.lex_state = 237, .external_lex_state = 23}, + [2359] = {.lex_state = 284, .external_lex_state = 16}, + [2360] = {.lex_state = 237, .external_lex_state = 23}, + [2361] = {.lex_state = 288}, + [2362] = {.lex_state = 286, .external_lex_state = 16}, + [2363] = {.lex_state = 237, .external_lex_state = 23}, + [2364] = {.lex_state = 288}, + [2365] = {.lex_state = 286, .external_lex_state = 16}, + [2366] = {.lex_state = 288}, + [2367] = {.lex_state = 286, .external_lex_state = 16}, + [2368] = {.lex_state = 286, .external_lex_state = 16}, + [2369] = {.lex_state = 237, .external_lex_state = 23}, + [2370] = {.lex_state = 286, .external_lex_state = 16}, + [2371] = {.lex_state = 237, .external_lex_state = 13}, + [2372] = {.lex_state = 320, .external_lex_state = 22}, + [2373] = {.lex_state = 320, .external_lex_state = 22}, + [2374] = {.lex_state = 103, .external_lex_state = 16}, + [2375] = {.lex_state = 286, .external_lex_state = 16}, + [2376] = {.lex_state = 237, .external_lex_state = 13}, + [2377] = {.lex_state = 284, .external_lex_state = 16}, + [2378] = {.lex_state = 237, .external_lex_state = 13}, + [2379] = {.lex_state = 288}, + [2380] = {.lex_state = 286, .external_lex_state = 16}, + [2381] = {.lex_state = 237, .external_lex_state = 13}, + [2382] = {.lex_state = 288}, + [2383] = {.lex_state = 286, .external_lex_state = 16}, + [2384] = {.lex_state = 288}, + [2385] = {.lex_state = 286, .external_lex_state = 16}, + [2386] = {.lex_state = 286, .external_lex_state = 16}, + [2387] = {.lex_state = 237, .external_lex_state = 13}, + [2388] = {.lex_state = 286, .external_lex_state = 16}, + [2389] = {.lex_state = 143, .external_lex_state = 17}, + [2390] = {.lex_state = 143, .external_lex_state = 17}, + [2391] = {.lex_state = 143, .external_lex_state = 17}, + [2392] = {.lex_state = 286, .external_lex_state = 16}, + [2393] = {.lex_state = 320, .external_lex_state = 22}, + [2394] = {.lex_state = 320, .external_lex_state = 22}, [2395] = {.lex_state = 103, .external_lex_state = 16}, - [2396] = {.lex_state = 239, .external_lex_state = 15}, - [2397] = {.lex_state = 282, .external_lex_state = 16}, - [2398] = {.lex_state = 239, .external_lex_state = 15}, - [2399] = {.lex_state = 221, .external_lex_state = 16}, - [2400] = {.lex_state = 239, .external_lex_state = 15}, - [2401] = {.lex_state = 221, .external_lex_state = 16}, - [2402] = {.lex_state = 221, .external_lex_state = 16}, - [2403] = {.lex_state = 239, .external_lex_state = 15}, - [2404] = {.lex_state = 259, .external_lex_state = 2}, + [2396] = {.lex_state = 286, .external_lex_state = 16}, + [2397] = {.lex_state = 143, .external_lex_state = 17}, + [2398] = {.lex_state = 286, .external_lex_state = 16}, + [2399] = {.lex_state = 143, .external_lex_state = 17}, + [2400] = {.lex_state = 286, .external_lex_state = 16}, + [2401] = {.lex_state = 143, .external_lex_state = 17}, + [2402] = {.lex_state = 286, .external_lex_state = 16}, + [2403] = {.lex_state = 143, .external_lex_state = 17}, + [2404] = {.lex_state = 286, .external_lex_state = 16}, [2405] = {.lex_state = 103}, - [2406] = {.lex_state = 103}, - [2407] = {.lex_state = 103}, - [2408] = {.lex_state = 103}, - [2409] = {.lex_state = 103}, - [2410] = {.lex_state = 103}, - [2411] = {.lex_state = 141}, - [2412] = {.lex_state = 103}, + [2406] = {.lex_state = 295, .external_lex_state = 17}, + [2407] = {.lex_state = 295, .external_lex_state = 17}, + [2408] = {.lex_state = 295, .external_lex_state = 17}, + [2409] = {.lex_state = 284, .external_lex_state = 16}, + [2410] = {.lex_state = 295, .external_lex_state = 17}, + [2411] = {.lex_state = 288}, + [2412] = {.lex_state = 286, .external_lex_state = 16}, [2413] = {.lex_state = 103}, - [2414] = {.lex_state = 103}, - [2415] = {.lex_state = 141}, - [2416] = {.lex_state = 103}, - [2417] = {.lex_state = 328, .external_lex_state = 13}, - [2418] = {.lex_state = 328, .external_lex_state = 13}, - [2419] = {.lex_state = 103}, - [2420] = {.lex_state = 141}, - [2421] = {.lex_state = 328, .external_lex_state = 13}, - [2422] = {.lex_state = 328, .external_lex_state = 13}, - [2423] = {.lex_state = 163}, - [2424] = {.lex_state = 328, .external_lex_state = 13}, - [2425] = {.lex_state = 328, .external_lex_state = 13}, - [2426] = {.lex_state = 328, .external_lex_state = 13}, - [2427] = {.lex_state = 103}, - [2428] = {.lex_state = 221, .external_lex_state = 16}, - [2429] = {.lex_state = 230, .external_lex_state = 6}, - [2430] = {.lex_state = 221, .external_lex_state = 16}, - [2431] = {.lex_state = 221, .external_lex_state = 16}, - [2432] = {.lex_state = 103}, - [2433] = {.lex_state = 239, .external_lex_state = 2}, - [2434] = {.lex_state = 103}, - [2435] = {.lex_state = 247, .external_lex_state = 2}, - [2436] = {.lex_state = 103}, - [2437] = {.lex_state = 239, .external_lex_state = 2}, - [2438] = {.lex_state = 232, .external_lex_state = 6}, - [2439] = {.lex_state = 232, .external_lex_state = 23}, - [2440] = {.lex_state = 232, .external_lex_state = 23}, - [2441] = {.lex_state = 311, .external_lex_state = 22}, - [2442] = {.lex_state = 311, .external_lex_state = 22}, - [2443] = {.lex_state = 103, .external_lex_state = 16}, - [2444] = {.lex_state = 232, .external_lex_state = 23}, - [2445] = {.lex_state = 232, .external_lex_state = 23}, - [2446] = {.lex_state = 232, .external_lex_state = 13}, - [2447] = {.lex_state = 232, .external_lex_state = 13}, - [2448] = {.lex_state = 311, .external_lex_state = 22}, - [2449] = {.lex_state = 311, .external_lex_state = 22}, - [2450] = {.lex_state = 103, .external_lex_state = 16}, - [2451] = {.lex_state = 232, .external_lex_state = 13}, - [2452] = {.lex_state = 232, .external_lex_state = 13}, - [2453] = {.lex_state = 234, .external_lex_state = 17}, - [2454] = {.lex_state = 234, .external_lex_state = 17}, - [2455] = {.lex_state = 286, .external_lex_state = 17}, - [2456] = {.lex_state = 311, .external_lex_state = 22}, - [2457] = {.lex_state = 311, .external_lex_state = 22}, + [2414] = {.lex_state = 226, .external_lex_state = 16}, + [2415] = {.lex_state = 226, .external_lex_state = 16}, + [2416] = {.lex_state = 226, .external_lex_state = 16}, + [2417] = {.lex_state = 295, .external_lex_state = 17}, + [2418] = {.lex_state = 288}, + [2419] = {.lex_state = 286, .external_lex_state = 16}, + [2420] = {.lex_state = 295, .external_lex_state = 17}, + [2421] = {.lex_state = 288}, + [2422] = {.lex_state = 286, .external_lex_state = 16}, + [2423] = {.lex_state = 295, .external_lex_state = 17}, + [2424] = {.lex_state = 295, .external_lex_state = 17}, + [2425] = {.lex_state = 293, .external_lex_state = 18}, + [2426] = {.lex_state = 249, .external_lex_state = 15}, + [2427] = {.lex_state = 249, .external_lex_state = 15}, + [2428] = {.lex_state = 249, .external_lex_state = 15}, + [2429] = {.lex_state = 284, .external_lex_state = 16}, + [2430] = {.lex_state = 249, .external_lex_state = 15}, + [2431] = {.lex_state = 288}, + [2432] = {.lex_state = 286, .external_lex_state = 16}, + [2433] = {.lex_state = 103}, + [2434] = {.lex_state = 226, .external_lex_state = 16}, + [2435] = {.lex_state = 226, .external_lex_state = 16}, + [2436] = {.lex_state = 226, .external_lex_state = 16}, + [2437] = {.lex_state = 249, .external_lex_state = 15}, + [2438] = {.lex_state = 288}, + [2439] = {.lex_state = 286, .external_lex_state = 16}, + [2440] = {.lex_state = 249, .external_lex_state = 15}, + [2441] = {.lex_state = 288}, + [2442] = {.lex_state = 286, .external_lex_state = 16}, + [2443] = {.lex_state = 249, .external_lex_state = 15}, + [2444] = {.lex_state = 249, .external_lex_state = 15}, + [2445] = {.lex_state = 324, .external_lex_state = 18}, + [2446] = {.lex_state = 141}, + [2447] = {.lex_state = 339, .external_lex_state = 13}, + [2448] = {.lex_state = 164}, + [2449] = {.lex_state = 169}, + [2450] = {.lex_state = 339, .external_lex_state = 13}, + [2451] = {.lex_state = 174, .external_lex_state = 6}, + [2452] = {.lex_state = 20, .external_lex_state = 2}, + [2453] = {.lex_state = 20, .external_lex_state = 2}, + [2454] = {.lex_state = 20, .external_lex_state = 2}, + [2455] = {.lex_state = 243, .external_lex_state = 23}, + [2456] = {.lex_state = 320, .external_lex_state = 22}, + [2457] = {.lex_state = 320, .external_lex_state = 22}, [2458] = {.lex_state = 103, .external_lex_state = 16}, - [2459] = {.lex_state = 286, .external_lex_state = 17}, - [2460] = {.lex_state = 282, .external_lex_state = 16}, - [2461] = {.lex_state = 286, .external_lex_state = 17}, - [2462] = {.lex_state = 221, .external_lex_state = 16}, - [2463] = {.lex_state = 286, .external_lex_state = 17}, - [2464] = {.lex_state = 221, .external_lex_state = 16}, - [2465] = {.lex_state = 221, .external_lex_state = 16}, - [2466] = {.lex_state = 286, .external_lex_state = 17}, - [2467] = {.lex_state = 247, .external_lex_state = 15}, - [2468] = {.lex_state = 311, .external_lex_state = 22}, - [2469] = {.lex_state = 311, .external_lex_state = 22}, - [2470] = {.lex_state = 103, .external_lex_state = 16}, - [2471] = {.lex_state = 247, .external_lex_state = 15}, - [2472] = {.lex_state = 282, .external_lex_state = 16}, - [2473] = {.lex_state = 247, .external_lex_state = 15}, - [2474] = {.lex_state = 221, .external_lex_state = 16}, - [2475] = {.lex_state = 247, .external_lex_state = 15}, - [2476] = {.lex_state = 221, .external_lex_state = 16}, - [2477] = {.lex_state = 221, .external_lex_state = 16}, - [2478] = {.lex_state = 247, .external_lex_state = 15}, - [2479] = {.lex_state = 330, .external_lex_state = 13}, - [2480] = {.lex_state = 330, .external_lex_state = 13}, - [2481] = {.lex_state = 141}, - [2482] = {.lex_state = 330, .external_lex_state = 13}, - [2483] = {.lex_state = 330, .external_lex_state = 13}, - [2484] = {.lex_state = 163}, - [2485] = {.lex_state = 330, .external_lex_state = 13}, - [2486] = {.lex_state = 330, .external_lex_state = 13}, - [2487] = {.lex_state = 330, .external_lex_state = 13}, - [2488] = {.lex_state = 103}, - [2489] = {.lex_state = 221, .external_lex_state = 16}, - [2490] = {.lex_state = 230, .external_lex_state = 6}, - [2491] = {.lex_state = 221, .external_lex_state = 16}, - [2492] = {.lex_state = 221, .external_lex_state = 16}, - [2493] = {.lex_state = 103}, - [2494] = {.lex_state = 239, .external_lex_state = 2}, - [2495] = {.lex_state = 103}, - [2496] = {.lex_state = 247, .external_lex_state = 2}, - [2497] = {.lex_state = 103}, - [2498] = {.lex_state = 239, .external_lex_state = 2}, - [2499] = {.lex_state = 241, .external_lex_state = 23}, - [2500] = {.lex_state = 241, .external_lex_state = 23}, - [2501] = {.lex_state = 311, .external_lex_state = 22}, - [2502] = {.lex_state = 311, .external_lex_state = 22}, - [2503] = {.lex_state = 103, .external_lex_state = 16}, - [2504] = {.lex_state = 241, .external_lex_state = 23}, - [2505] = {.lex_state = 241, .external_lex_state = 23}, - [2506] = {.lex_state = 241, .external_lex_state = 13}, - [2507] = {.lex_state = 241, .external_lex_state = 13}, - [2508] = {.lex_state = 311, .external_lex_state = 22}, - [2509] = {.lex_state = 311, .external_lex_state = 22}, - [2510] = {.lex_state = 103, .external_lex_state = 16}, - [2511] = {.lex_state = 241, .external_lex_state = 13}, - [2512] = {.lex_state = 241, .external_lex_state = 13}, - [2513] = {.lex_state = 243, .external_lex_state = 17}, - [2514] = {.lex_state = 243, .external_lex_state = 17}, - [2515] = {.lex_state = 288, .external_lex_state = 17}, - [2516] = {.lex_state = 311, .external_lex_state = 22}, - [2517] = {.lex_state = 311, .external_lex_state = 22}, - [2518] = {.lex_state = 103, .external_lex_state = 16}, - [2519] = {.lex_state = 288, .external_lex_state = 17}, - [2520] = {.lex_state = 282, .external_lex_state = 16}, - [2521] = {.lex_state = 288, .external_lex_state = 17}, - [2522] = {.lex_state = 221, .external_lex_state = 16}, - [2523] = {.lex_state = 288, .external_lex_state = 17}, - [2524] = {.lex_state = 221, .external_lex_state = 16}, - [2525] = {.lex_state = 221, .external_lex_state = 16}, - [2526] = {.lex_state = 288, .external_lex_state = 17}, - [2527] = {.lex_state = 255, .external_lex_state = 5}, - [2528] = {.lex_state = 255, .external_lex_state = 5}, - [2529] = {.lex_state = 311, .external_lex_state = 22}, - [2530] = {.lex_state = 311, .external_lex_state = 22}, - [2531] = {.lex_state = 103, .external_lex_state = 16}, - [2532] = {.lex_state = 255, .external_lex_state = 5}, - [2533] = {.lex_state = 255, .external_lex_state = 5}, - [2534] = {.lex_state = 290, .external_lex_state = 24}, - [2535] = {.lex_state = 311, .external_lex_state = 22}, - [2536] = {.lex_state = 311, .external_lex_state = 22}, - [2537] = {.lex_state = 103, .external_lex_state = 16}, - [2538] = {.lex_state = 290, .external_lex_state = 24}, - [2539] = {.lex_state = 282, .external_lex_state = 16}, - [2540] = {.lex_state = 290, .external_lex_state = 24}, - [2541] = {.lex_state = 221, .external_lex_state = 16}, - [2542] = {.lex_state = 290, .external_lex_state = 24}, - [2543] = {.lex_state = 221, .external_lex_state = 16}, - [2544] = {.lex_state = 221, .external_lex_state = 16}, - [2545] = {.lex_state = 290, .external_lex_state = 24}, - [2546] = {.lex_state = 257, .external_lex_state = 11}, - [2547] = {.lex_state = 257, .external_lex_state = 11}, - [2548] = {.lex_state = 297, .external_lex_state = 13}, - [2549] = {.lex_state = 297, .external_lex_state = 13}, - [2550] = {.lex_state = 311, .external_lex_state = 22}, - [2551] = {.lex_state = 311, .external_lex_state = 22}, - [2552] = {.lex_state = 103, .external_lex_state = 16}, - [2553] = {.lex_state = 297, .external_lex_state = 13}, - [2554] = {.lex_state = 297, .external_lex_state = 13}, - [2555] = {.lex_state = 180, .external_lex_state = 20}, - [2556] = {.lex_state = 180, .external_lex_state = 20}, - [2557] = {.lex_state = 299, .external_lex_state = 10}, - [2558] = {.lex_state = 299, .external_lex_state = 10}, - [2559] = {.lex_state = 311, .external_lex_state = 22}, - [2560] = {.lex_state = 311, .external_lex_state = 22}, - [2561] = {.lex_state = 103, .external_lex_state = 16}, - [2562] = {.lex_state = 299, .external_lex_state = 10}, - [2563] = {.lex_state = 299, .external_lex_state = 10}, - [2564] = {.lex_state = 191, .external_lex_state = 4}, - [2565] = {.lex_state = 323, .external_lex_state = 2}, - [2566] = {.lex_state = 303}, - [2567] = {.lex_state = 323, .external_lex_state = 2}, - [2568] = {.lex_state = 323, .external_lex_state = 2}, - [2569] = {.lex_state = 303}, - [2570] = {.lex_state = 323, .external_lex_state = 2}, - [2571] = {.lex_state = 317, .external_lex_state = 13}, - [2572] = {.lex_state = 311, .external_lex_state = 22}, - [2573] = {.lex_state = 311, .external_lex_state = 22}, - [2574] = {.lex_state = 103, .external_lex_state = 16}, - [2575] = {.lex_state = 317, .external_lex_state = 13}, - [2576] = {.lex_state = 282, .external_lex_state = 16}, - [2577] = {.lex_state = 317, .external_lex_state = 13}, - [2578] = {.lex_state = 221, .external_lex_state = 16}, - [2579] = {.lex_state = 317, .external_lex_state = 13}, - [2580] = {.lex_state = 221, .external_lex_state = 16}, - [2581] = {.lex_state = 221, .external_lex_state = 16}, - [2582] = {.lex_state = 317, .external_lex_state = 13}, - [2583] = {.lex_state = 177, .external_lex_state = 2}, - [2584] = {.lex_state = 137}, - [2585] = {.lex_state = 177, .external_lex_state = 2}, - [2586] = {.lex_state = 137}, - [2587] = {.lex_state = 191, .external_lex_state = 4}, - [2588] = {.lex_state = 191, .external_lex_state = 4}, - [2589] = {.lex_state = 319, .external_lex_state = 10}, - [2590] = {.lex_state = 311, .external_lex_state = 22}, - [2591] = {.lex_state = 311, .external_lex_state = 22}, - [2592] = {.lex_state = 103, .external_lex_state = 16}, - [2593] = {.lex_state = 319, .external_lex_state = 10}, - [2594] = {.lex_state = 282, .external_lex_state = 16}, - [2595] = {.lex_state = 319, .external_lex_state = 10}, - [2596] = {.lex_state = 221, .external_lex_state = 16}, - [2597] = {.lex_state = 319, .external_lex_state = 10}, - [2598] = {.lex_state = 221, .external_lex_state = 16}, - [2599] = {.lex_state = 221, .external_lex_state = 16}, - [2600] = {.lex_state = 319, .external_lex_state = 10}, - [2601] = {.lex_state = 186, .external_lex_state = 20}, - [2602] = {.lex_state = 186, .external_lex_state = 20}, - [2603] = {.lex_state = 311, .external_lex_state = 22}, - [2604] = {.lex_state = 311, .external_lex_state = 22}, - [2605] = {.lex_state = 103, .external_lex_state = 16}, - [2606] = {.lex_state = 186, .external_lex_state = 20}, - [2607] = {.lex_state = 186, .external_lex_state = 20}, - [2608] = {.lex_state = 326, .external_lex_state = 10}, - [2609] = {.lex_state = 326, .external_lex_state = 10}, - [2610] = {.lex_state = 326, .external_lex_state = 10}, - [2611] = {.lex_state = 282, .external_lex_state = 16}, - [2612] = {.lex_state = 326, .external_lex_state = 10}, - [2613] = {.lex_state = 221, .external_lex_state = 16}, - [2614] = {.lex_state = 103}, - [2615] = {.lex_state = 221, .external_lex_state = 16}, - [2616] = {.lex_state = 221, .external_lex_state = 16}, - [2617] = {.lex_state = 221, .external_lex_state = 16}, - [2618] = {.lex_state = 326, .external_lex_state = 10}, - [2619] = {.lex_state = 221, .external_lex_state = 16}, - [2620] = {.lex_state = 326, .external_lex_state = 10}, - [2621] = {.lex_state = 221, .external_lex_state = 16}, - [2622] = {.lex_state = 326, .external_lex_state = 10}, - [2623] = {.lex_state = 326, .external_lex_state = 10}, - [2624] = {.lex_state = 191, .external_lex_state = 14}, - [2625] = {.lex_state = 191, .external_lex_state = 14}, - [2626] = {.lex_state = 191, .external_lex_state = 10}, - [2627] = {.lex_state = 191, .external_lex_state = 10}, - [2628] = {.lex_state = 251, .external_lex_state = 5}, - [2629] = {.lex_state = 251, .external_lex_state = 5}, - [2630] = {.lex_state = 311, .external_lex_state = 22}, - [2631] = {.lex_state = 311, .external_lex_state = 22}, - [2632] = {.lex_state = 103, .external_lex_state = 16}, - [2633] = {.lex_state = 251, .external_lex_state = 5}, - [2634] = {.lex_state = 251, .external_lex_state = 5}, - [2635] = {.lex_state = 311, .external_lex_state = 22}, - [2636] = {.lex_state = 311, .external_lex_state = 22}, - [2637] = {.lex_state = 311, .external_lex_state = 22}, - [2638] = {.lex_state = 311, .external_lex_state = 22}, - [2639] = {.lex_state = 103, .external_lex_state = 16}, - [2640] = {.lex_state = 311, .external_lex_state = 22}, - [2641] = {.lex_state = 311, .external_lex_state = 22}, - [2642] = {.lex_state = 221, .external_lex_state = 22}, - [2643] = {.lex_state = 221, .external_lex_state = 22}, - [2644] = {.lex_state = 239, .external_lex_state = 15}, - [2645] = {.lex_state = 239, .external_lex_state = 15}, - [2646] = {.lex_state = 311, .external_lex_state = 22}, - [2647] = {.lex_state = 311, .external_lex_state = 22}, - [2648] = {.lex_state = 103, .external_lex_state = 16}, - [2649] = {.lex_state = 239, .external_lex_state = 15}, - [2650] = {.lex_state = 239, .external_lex_state = 15}, - [2651] = {.lex_state = 103}, - [2652] = {.lex_state = 259, .external_lex_state = 2}, - [2653] = {.lex_state = 103}, - [2654] = {.lex_state = 103}, - [2655] = {.lex_state = 103}, - [2656] = {.lex_state = 103}, - [2657] = {.lex_state = 103}, - [2658] = {.lex_state = 328, .external_lex_state = 13}, - [2659] = {.lex_state = 328, .external_lex_state = 13}, - [2660] = {.lex_state = 328, .external_lex_state = 13}, - [2661] = {.lex_state = 282, .external_lex_state = 16}, - [2662] = {.lex_state = 328, .external_lex_state = 13}, - [2663] = {.lex_state = 221, .external_lex_state = 16}, - [2664] = {.lex_state = 103}, - [2665] = {.lex_state = 221, .external_lex_state = 16}, - [2666] = {.lex_state = 221, .external_lex_state = 16}, - [2667] = {.lex_state = 221, .external_lex_state = 16}, - [2668] = {.lex_state = 328, .external_lex_state = 13}, - [2669] = {.lex_state = 221, .external_lex_state = 16}, - [2670] = {.lex_state = 328, .external_lex_state = 13}, - [2671] = {.lex_state = 221, .external_lex_state = 16}, - [2672] = {.lex_state = 328, .external_lex_state = 13}, - [2673] = {.lex_state = 328, .external_lex_state = 13}, - [2674] = {.lex_state = 232, .external_lex_state = 23}, - [2675] = {.lex_state = 232, .external_lex_state = 23}, - [2676] = {.lex_state = 232, .external_lex_state = 13}, - [2677] = {.lex_state = 232, .external_lex_state = 13}, - [2678] = {.lex_state = 286, .external_lex_state = 17}, - [2679] = {.lex_state = 286, .external_lex_state = 17}, - [2680] = {.lex_state = 311, .external_lex_state = 22}, - [2681] = {.lex_state = 311, .external_lex_state = 22}, - [2682] = {.lex_state = 103, .external_lex_state = 16}, - [2683] = {.lex_state = 286, .external_lex_state = 17}, - [2684] = {.lex_state = 286, .external_lex_state = 17}, - [2685] = {.lex_state = 247, .external_lex_state = 15}, - [2686] = {.lex_state = 247, .external_lex_state = 15}, - [2687] = {.lex_state = 311, .external_lex_state = 22}, - [2688] = {.lex_state = 311, .external_lex_state = 22}, - [2689] = {.lex_state = 103, .external_lex_state = 16}, - [2690] = {.lex_state = 247, .external_lex_state = 15}, - [2691] = {.lex_state = 247, .external_lex_state = 15}, - [2692] = {.lex_state = 330, .external_lex_state = 13}, - [2693] = {.lex_state = 330, .external_lex_state = 13}, - [2694] = {.lex_state = 330, .external_lex_state = 13}, - [2695] = {.lex_state = 282, .external_lex_state = 16}, - [2696] = {.lex_state = 330, .external_lex_state = 13}, - [2697] = {.lex_state = 221, .external_lex_state = 16}, - [2698] = {.lex_state = 103}, - [2699] = {.lex_state = 221, .external_lex_state = 16}, - [2700] = {.lex_state = 221, .external_lex_state = 16}, - [2701] = {.lex_state = 221, .external_lex_state = 16}, - [2702] = {.lex_state = 330, .external_lex_state = 13}, - [2703] = {.lex_state = 221, .external_lex_state = 16}, - [2704] = {.lex_state = 330, .external_lex_state = 13}, - [2705] = {.lex_state = 221, .external_lex_state = 16}, - [2706] = {.lex_state = 330, .external_lex_state = 13}, - [2707] = {.lex_state = 330, .external_lex_state = 13}, - [2708] = {.lex_state = 241, .external_lex_state = 23}, - [2709] = {.lex_state = 241, .external_lex_state = 23}, - [2710] = {.lex_state = 241, .external_lex_state = 13}, - [2711] = {.lex_state = 241, .external_lex_state = 13}, - [2712] = {.lex_state = 288, .external_lex_state = 17}, - [2713] = {.lex_state = 288, .external_lex_state = 17}, - [2714] = {.lex_state = 311, .external_lex_state = 22}, - [2715] = {.lex_state = 311, .external_lex_state = 22}, - [2716] = {.lex_state = 103, .external_lex_state = 16}, - [2717] = {.lex_state = 288, .external_lex_state = 17}, - [2718] = {.lex_state = 288, .external_lex_state = 17}, - [2719] = {.lex_state = 255, .external_lex_state = 5}, - [2720] = {.lex_state = 255, .external_lex_state = 5}, - [2721] = {.lex_state = 290, .external_lex_state = 24}, - [2722] = {.lex_state = 290, .external_lex_state = 24}, - [2723] = {.lex_state = 311, .external_lex_state = 22}, - [2724] = {.lex_state = 311, .external_lex_state = 22}, - [2725] = {.lex_state = 103, .external_lex_state = 16}, - [2726] = {.lex_state = 290, .external_lex_state = 24}, - [2727] = {.lex_state = 290, .external_lex_state = 24}, - [2728] = {.lex_state = 297, .external_lex_state = 13}, - [2729] = {.lex_state = 297, .external_lex_state = 13}, - [2730] = {.lex_state = 299, .external_lex_state = 10}, - [2731] = {.lex_state = 299, .external_lex_state = 10}, - [2732] = {.lex_state = 303}, - [2733] = {.lex_state = 303}, - [2734] = {.lex_state = 317, .external_lex_state = 13}, - [2735] = {.lex_state = 317, .external_lex_state = 13}, - [2736] = {.lex_state = 311, .external_lex_state = 22}, - [2737] = {.lex_state = 311, .external_lex_state = 22}, - [2738] = {.lex_state = 103, .external_lex_state = 16}, - [2739] = {.lex_state = 317, .external_lex_state = 13}, - [2740] = {.lex_state = 317, .external_lex_state = 13}, - [2741] = {.lex_state = 141}, - [2742] = {.lex_state = 177, .external_lex_state = 2}, - [2743] = {.lex_state = 177, .external_lex_state = 2}, - [2744] = {.lex_state = 141}, - [2745] = {.lex_state = 177, .external_lex_state = 2}, - [2746] = {.lex_state = 177, .external_lex_state = 2}, - [2747] = {.lex_state = 319, .external_lex_state = 10}, - [2748] = {.lex_state = 319, .external_lex_state = 10}, - [2749] = {.lex_state = 311, .external_lex_state = 22}, - [2750] = {.lex_state = 311, .external_lex_state = 22}, - [2751] = {.lex_state = 103, .external_lex_state = 16}, - [2752] = {.lex_state = 319, .external_lex_state = 10}, - [2753] = {.lex_state = 319, .external_lex_state = 10}, - [2754] = {.lex_state = 186, .external_lex_state = 20}, - [2755] = {.lex_state = 186, .external_lex_state = 20}, - [2756] = {.lex_state = 326, .external_lex_state = 10}, - [2757] = {.lex_state = 311, .external_lex_state = 22}, - [2758] = {.lex_state = 311, .external_lex_state = 22}, + [2459] = {.lex_state = 286, .external_lex_state = 16}, + [2460] = {.lex_state = 243, .external_lex_state = 23}, + [2461] = {.lex_state = 284, .external_lex_state = 16}, + [2462] = {.lex_state = 243, .external_lex_state = 23}, + [2463] = {.lex_state = 288}, + [2464] = {.lex_state = 286, .external_lex_state = 16}, + [2465] = {.lex_state = 243, .external_lex_state = 23}, + [2466] = {.lex_state = 288}, + [2467] = {.lex_state = 286, .external_lex_state = 16}, + [2468] = {.lex_state = 288}, + [2469] = {.lex_state = 286, .external_lex_state = 16}, + [2470] = {.lex_state = 286, .external_lex_state = 16}, + [2471] = {.lex_state = 243, .external_lex_state = 23}, + [2472] = {.lex_state = 286, .external_lex_state = 16}, + [2473] = {.lex_state = 243, .external_lex_state = 13}, + [2474] = {.lex_state = 320, .external_lex_state = 22}, + [2475] = {.lex_state = 320, .external_lex_state = 22}, + [2476] = {.lex_state = 103, .external_lex_state = 16}, + [2477] = {.lex_state = 286, .external_lex_state = 16}, + [2478] = {.lex_state = 243, .external_lex_state = 13}, + [2479] = {.lex_state = 284, .external_lex_state = 16}, + [2480] = {.lex_state = 243, .external_lex_state = 13}, + [2481] = {.lex_state = 288}, + [2482] = {.lex_state = 286, .external_lex_state = 16}, + [2483] = {.lex_state = 243, .external_lex_state = 13}, + [2484] = {.lex_state = 288}, + [2485] = {.lex_state = 286, .external_lex_state = 16}, + [2486] = {.lex_state = 288}, + [2487] = {.lex_state = 286, .external_lex_state = 16}, + [2488] = {.lex_state = 286, .external_lex_state = 16}, + [2489] = {.lex_state = 243, .external_lex_state = 13}, + [2490] = {.lex_state = 286, .external_lex_state = 16}, + [2491] = {.lex_state = 245, .external_lex_state = 17}, + [2492] = {.lex_state = 245, .external_lex_state = 17}, + [2493] = {.lex_state = 245, .external_lex_state = 17}, + [2494] = {.lex_state = 286, .external_lex_state = 16}, + [2495] = {.lex_state = 320, .external_lex_state = 22}, + [2496] = {.lex_state = 320, .external_lex_state = 22}, + [2497] = {.lex_state = 103, .external_lex_state = 16}, + [2498] = {.lex_state = 286, .external_lex_state = 16}, + [2499] = {.lex_state = 245, .external_lex_state = 17}, + [2500] = {.lex_state = 286, .external_lex_state = 16}, + [2501] = {.lex_state = 245, .external_lex_state = 17}, + [2502] = {.lex_state = 286, .external_lex_state = 16}, + [2503] = {.lex_state = 245, .external_lex_state = 17}, + [2504] = {.lex_state = 286, .external_lex_state = 16}, + [2505] = {.lex_state = 245, .external_lex_state = 17}, + [2506] = {.lex_state = 286, .external_lex_state = 16}, + [2507] = {.lex_state = 297, .external_lex_state = 17}, + [2508] = {.lex_state = 297, .external_lex_state = 17}, + [2509] = {.lex_state = 297, .external_lex_state = 17}, + [2510] = {.lex_state = 284, .external_lex_state = 16}, + [2511] = {.lex_state = 297, .external_lex_state = 17}, + [2512] = {.lex_state = 288}, + [2513] = {.lex_state = 286, .external_lex_state = 16}, + [2514] = {.lex_state = 103}, + [2515] = {.lex_state = 226, .external_lex_state = 16}, + [2516] = {.lex_state = 226, .external_lex_state = 16}, + [2517] = {.lex_state = 226, .external_lex_state = 16}, + [2518] = {.lex_state = 297, .external_lex_state = 17}, + [2519] = {.lex_state = 288}, + [2520] = {.lex_state = 286, .external_lex_state = 16}, + [2521] = {.lex_state = 297, .external_lex_state = 17}, + [2522] = {.lex_state = 288}, + [2523] = {.lex_state = 286, .external_lex_state = 16}, + [2524] = {.lex_state = 297, .external_lex_state = 17}, + [2525] = {.lex_state = 297, .external_lex_state = 17}, + [2526] = {.lex_state = 257, .external_lex_state = 5}, + [2527] = {.lex_state = 320, .external_lex_state = 22}, + [2528] = {.lex_state = 320, .external_lex_state = 22}, + [2529] = {.lex_state = 103, .external_lex_state = 16}, + [2530] = {.lex_state = 286, .external_lex_state = 16}, + [2531] = {.lex_state = 257, .external_lex_state = 5}, + [2532] = {.lex_state = 284, .external_lex_state = 16}, + [2533] = {.lex_state = 257, .external_lex_state = 5}, + [2534] = {.lex_state = 288}, + [2535] = {.lex_state = 286, .external_lex_state = 16}, + [2536] = {.lex_state = 257, .external_lex_state = 5}, + [2537] = {.lex_state = 288}, + [2538] = {.lex_state = 286, .external_lex_state = 16}, + [2539] = {.lex_state = 288}, + [2540] = {.lex_state = 286, .external_lex_state = 16}, + [2541] = {.lex_state = 286, .external_lex_state = 16}, + [2542] = {.lex_state = 257, .external_lex_state = 5}, + [2543] = {.lex_state = 286, .external_lex_state = 16}, + [2544] = {.lex_state = 284, .external_lex_state = 16}, + [2545] = {.lex_state = 299, .external_lex_state = 24}, + [2546] = {.lex_state = 288}, + [2547] = {.lex_state = 286, .external_lex_state = 16}, + [2548] = {.lex_state = 103}, + [2549] = {.lex_state = 226, .external_lex_state = 16}, + [2550] = {.lex_state = 226, .external_lex_state = 16}, + [2551] = {.lex_state = 226, .external_lex_state = 16}, + [2552] = {.lex_state = 299, .external_lex_state = 24}, + [2553] = {.lex_state = 288}, + [2554] = {.lex_state = 286, .external_lex_state = 16}, + [2555] = {.lex_state = 299, .external_lex_state = 24}, + [2556] = {.lex_state = 288}, + [2557] = {.lex_state = 286, .external_lex_state = 16}, + [2558] = {.lex_state = 259, .external_lex_state = 11}, + [2559] = {.lex_state = 259, .external_lex_state = 11}, + [2560] = {.lex_state = 259, .external_lex_state = 11}, + [2561] = {.lex_state = 286, .external_lex_state = 16}, + [2562] = {.lex_state = 320, .external_lex_state = 22}, + [2563] = {.lex_state = 320, .external_lex_state = 22}, + [2564] = {.lex_state = 103, .external_lex_state = 16}, + [2565] = {.lex_state = 286, .external_lex_state = 16}, + [2566] = {.lex_state = 259, .external_lex_state = 11}, + [2567] = {.lex_state = 286, .external_lex_state = 16}, + [2568] = {.lex_state = 259, .external_lex_state = 11}, + [2569] = {.lex_state = 286, .external_lex_state = 16}, + [2570] = {.lex_state = 259, .external_lex_state = 11}, + [2571] = {.lex_state = 286, .external_lex_state = 16}, + [2572] = {.lex_state = 259, .external_lex_state = 11}, + [2573] = {.lex_state = 286, .external_lex_state = 16}, + [2574] = {.lex_state = 306, .external_lex_state = 13}, + [2575] = {.lex_state = 320, .external_lex_state = 22}, + [2576] = {.lex_state = 320, .external_lex_state = 22}, + [2577] = {.lex_state = 103, .external_lex_state = 16}, + [2578] = {.lex_state = 286, .external_lex_state = 16}, + [2579] = {.lex_state = 306, .external_lex_state = 13}, + [2580] = {.lex_state = 284, .external_lex_state = 16}, + [2581] = {.lex_state = 306, .external_lex_state = 13}, + [2582] = {.lex_state = 288}, + [2583] = {.lex_state = 286, .external_lex_state = 16}, + [2584] = {.lex_state = 306, .external_lex_state = 13}, + [2585] = {.lex_state = 288}, + [2586] = {.lex_state = 286, .external_lex_state = 16}, + [2587] = {.lex_state = 288}, + [2588] = {.lex_state = 286, .external_lex_state = 16}, + [2589] = {.lex_state = 286, .external_lex_state = 16}, + [2590] = {.lex_state = 306, .external_lex_state = 13}, + [2591] = {.lex_state = 286, .external_lex_state = 16}, + [2592] = {.lex_state = 181, .external_lex_state = 20}, + [2593] = {.lex_state = 181, .external_lex_state = 20}, + [2594] = {.lex_state = 181, .external_lex_state = 20}, + [2595] = {.lex_state = 286, .external_lex_state = 16}, + [2596] = {.lex_state = 320, .external_lex_state = 22}, + [2597] = {.lex_state = 320, .external_lex_state = 22}, + [2598] = {.lex_state = 103, .external_lex_state = 16}, + [2599] = {.lex_state = 286, .external_lex_state = 16}, + [2600] = {.lex_state = 181, .external_lex_state = 20}, + [2601] = {.lex_state = 286, .external_lex_state = 16}, + [2602] = {.lex_state = 181, .external_lex_state = 20}, + [2603] = {.lex_state = 286, .external_lex_state = 16}, + [2604] = {.lex_state = 181, .external_lex_state = 20}, + [2605] = {.lex_state = 286, .external_lex_state = 16}, + [2606] = {.lex_state = 181, .external_lex_state = 20}, + [2607] = {.lex_state = 286, .external_lex_state = 16}, + [2608] = {.lex_state = 308, .external_lex_state = 10}, + [2609] = {.lex_state = 320, .external_lex_state = 22}, + [2610] = {.lex_state = 320, .external_lex_state = 22}, + [2611] = {.lex_state = 103, .external_lex_state = 16}, + [2612] = {.lex_state = 286, .external_lex_state = 16}, + [2613] = {.lex_state = 308, .external_lex_state = 10}, + [2614] = {.lex_state = 284, .external_lex_state = 16}, + [2615] = {.lex_state = 308, .external_lex_state = 10}, + [2616] = {.lex_state = 288}, + [2617] = {.lex_state = 286, .external_lex_state = 16}, + [2618] = {.lex_state = 308, .external_lex_state = 10}, + [2619] = {.lex_state = 288}, + [2620] = {.lex_state = 286, .external_lex_state = 16}, + [2621] = {.lex_state = 288}, + [2622] = {.lex_state = 286, .external_lex_state = 16}, + [2623] = {.lex_state = 286, .external_lex_state = 16}, + [2624] = {.lex_state = 308, .external_lex_state = 10}, + [2625] = {.lex_state = 286, .external_lex_state = 16}, + [2626] = {.lex_state = 192, .external_lex_state = 4}, + [2627] = {.lex_state = 261, .external_lex_state = 2}, + [2628] = {.lex_state = 267, .external_lex_state = 2}, + [2629] = {.lex_state = 192, .external_lex_state = 4}, + [2630] = {.lex_state = 326, .external_lex_state = 13}, + [2631] = {.lex_state = 326, .external_lex_state = 13}, + [2632] = {.lex_state = 326, .external_lex_state = 13}, + [2633] = {.lex_state = 137}, + [2634] = {.lex_state = 312}, + [2635] = {.lex_state = 332, .external_lex_state = 2}, + [2636] = {.lex_state = 152, .external_lex_state = 4}, + [2637] = {.lex_state = 181, .external_lex_state = 8}, + [2638] = {.lex_state = 332, .external_lex_state = 2}, + [2639] = {.lex_state = 332, .external_lex_state = 2}, + [2640] = {.lex_state = 137}, + [2641] = {.lex_state = 326, .external_lex_state = 13}, + [2642] = {.lex_state = 326, .external_lex_state = 13}, + [2643] = {.lex_state = 312}, + [2644] = {.lex_state = 332, .external_lex_state = 2}, + [2645] = {.lex_state = 332, .external_lex_state = 2}, + [2646] = {.lex_state = 284, .external_lex_state = 16}, + [2647] = {.lex_state = 326, .external_lex_state = 13}, + [2648] = {.lex_state = 288}, + [2649] = {.lex_state = 286, .external_lex_state = 16}, + [2650] = {.lex_state = 103}, + [2651] = {.lex_state = 226, .external_lex_state = 16}, + [2652] = {.lex_state = 226, .external_lex_state = 16}, + [2653] = {.lex_state = 226, .external_lex_state = 16}, + [2654] = {.lex_state = 326, .external_lex_state = 13}, + [2655] = {.lex_state = 288}, + [2656] = {.lex_state = 286, .external_lex_state = 16}, + [2657] = {.lex_state = 326, .external_lex_state = 13}, + [2658] = {.lex_state = 288}, + [2659] = {.lex_state = 286, .external_lex_state = 16}, + [2660] = {.lex_state = 326, .external_lex_state = 13}, + [2661] = {.lex_state = 326, .external_lex_state = 13}, + [2662] = {.lex_state = 192, .external_lex_state = 4}, + [2663] = {.lex_state = 326, .external_lex_state = 13}, + [2664] = {.lex_state = 326, .external_lex_state = 13}, + [2665] = {.lex_state = 137}, + [2666] = {.lex_state = 103}, + [2667] = {.lex_state = 192, .external_lex_state = 4}, + [2668] = {.lex_state = 103}, + [2669] = {.lex_state = 189, .external_lex_state = 10}, + [2670] = {.lex_state = 189, .external_lex_state = 10}, + [2671] = {.lex_state = 189, .external_lex_state = 10}, + [2672] = {.lex_state = 189, .external_lex_state = 10}, + [2673] = {.lex_state = 286, .external_lex_state = 16}, + [2674] = {.lex_state = 189, .external_lex_state = 10}, + [2675] = {.lex_state = 286, .external_lex_state = 16}, + [2676] = {.lex_state = 189, .external_lex_state = 10}, + [2677] = {.lex_state = 286, .external_lex_state = 16}, + [2678] = {.lex_state = 189, .external_lex_state = 10}, + [2679] = {.lex_state = 189, .external_lex_state = 10}, + [2680] = {.lex_state = 328, .external_lex_state = 10}, + [2681] = {.lex_state = 328, .external_lex_state = 10}, + [2682] = {.lex_state = 328, .external_lex_state = 10}, + [2683] = {.lex_state = 284, .external_lex_state = 16}, + [2684] = {.lex_state = 328, .external_lex_state = 10}, + [2685] = {.lex_state = 288}, + [2686] = {.lex_state = 286, .external_lex_state = 16}, + [2687] = {.lex_state = 103}, + [2688] = {.lex_state = 226, .external_lex_state = 16}, + [2689] = {.lex_state = 226, .external_lex_state = 16}, + [2690] = {.lex_state = 226, .external_lex_state = 16}, + [2691] = {.lex_state = 328, .external_lex_state = 10}, + [2692] = {.lex_state = 288}, + [2693] = {.lex_state = 286, .external_lex_state = 16}, + [2694] = {.lex_state = 328, .external_lex_state = 10}, + [2695] = {.lex_state = 288}, + [2696] = {.lex_state = 286, .external_lex_state = 16}, + [2697] = {.lex_state = 328, .external_lex_state = 10}, + [2698] = {.lex_state = 328, .external_lex_state = 10}, + [2699] = {.lex_state = 187, .external_lex_state = 20}, + [2700] = {.lex_state = 320, .external_lex_state = 22}, + [2701] = {.lex_state = 320, .external_lex_state = 22}, + [2702] = {.lex_state = 103, .external_lex_state = 16}, + [2703] = {.lex_state = 286, .external_lex_state = 16}, + [2704] = {.lex_state = 187, .external_lex_state = 20}, + [2705] = {.lex_state = 284, .external_lex_state = 16}, + [2706] = {.lex_state = 187, .external_lex_state = 20}, + [2707] = {.lex_state = 288}, + [2708] = {.lex_state = 286, .external_lex_state = 16}, + [2709] = {.lex_state = 187, .external_lex_state = 20}, + [2710] = {.lex_state = 288}, + [2711] = {.lex_state = 286, .external_lex_state = 16}, + [2712] = {.lex_state = 288}, + [2713] = {.lex_state = 286, .external_lex_state = 16}, + [2714] = {.lex_state = 286, .external_lex_state = 16}, + [2715] = {.lex_state = 187, .external_lex_state = 20}, + [2716] = {.lex_state = 286, .external_lex_state = 16}, + [2717] = {.lex_state = 335, .external_lex_state = 10}, + [2718] = {.lex_state = 335, .external_lex_state = 10}, + [2719] = {.lex_state = 141}, + [2720] = {.lex_state = 335, .external_lex_state = 10}, + [2721] = {.lex_state = 335, .external_lex_state = 10}, + [2722] = {.lex_state = 164}, + [2723] = {.lex_state = 335, .external_lex_state = 10}, + [2724] = {.lex_state = 335, .external_lex_state = 10}, + [2725] = {.lex_state = 335, .external_lex_state = 10}, + [2726] = {.lex_state = 103}, + [2727] = {.lex_state = 226, .external_lex_state = 16}, + [2728] = {.lex_state = 235, .external_lex_state = 6}, + [2729] = {.lex_state = 226, .external_lex_state = 16}, + [2730] = {.lex_state = 226, .external_lex_state = 16}, + [2731] = {.lex_state = 103}, + [2732] = {.lex_state = 241, .external_lex_state = 2}, + [2733] = {.lex_state = 103}, + [2734] = {.lex_state = 249, .external_lex_state = 2}, + [2735] = {.lex_state = 103}, + [2736] = {.lex_state = 241, .external_lex_state = 2}, + [2737] = {.lex_state = 192, .external_lex_state = 14}, + [2738] = {.lex_state = 192, .external_lex_state = 14}, + [2739] = {.lex_state = 192, .external_lex_state = 14}, + [2740] = {.lex_state = 286, .external_lex_state = 16}, + [2741] = {.lex_state = 320, .external_lex_state = 22}, + [2742] = {.lex_state = 320, .external_lex_state = 22}, + [2743] = {.lex_state = 103, .external_lex_state = 16}, + [2744] = {.lex_state = 286, .external_lex_state = 16}, + [2745] = {.lex_state = 192, .external_lex_state = 14}, + [2746] = {.lex_state = 286, .external_lex_state = 16}, + [2747] = {.lex_state = 192, .external_lex_state = 14}, + [2748] = {.lex_state = 286, .external_lex_state = 16}, + [2749] = {.lex_state = 192, .external_lex_state = 14}, + [2750] = {.lex_state = 286, .external_lex_state = 16}, + [2751] = {.lex_state = 192, .external_lex_state = 14}, + [2752] = {.lex_state = 286, .external_lex_state = 16}, + [2753] = {.lex_state = 192, .external_lex_state = 10}, + [2754] = {.lex_state = 192, .external_lex_state = 10}, + [2755] = {.lex_state = 192, .external_lex_state = 10}, + [2756] = {.lex_state = 286, .external_lex_state = 16}, + [2757] = {.lex_state = 320, .external_lex_state = 22}, + [2758] = {.lex_state = 320, .external_lex_state = 22}, [2759] = {.lex_state = 103, .external_lex_state = 16}, - [2760] = {.lex_state = 326, .external_lex_state = 10}, - [2761] = {.lex_state = 282, .external_lex_state = 16}, - [2762] = {.lex_state = 326, .external_lex_state = 10}, - [2763] = {.lex_state = 221, .external_lex_state = 16}, - [2764] = {.lex_state = 326, .external_lex_state = 10}, - [2765] = {.lex_state = 221, .external_lex_state = 16}, - [2766] = {.lex_state = 221, .external_lex_state = 16}, - [2767] = {.lex_state = 326, .external_lex_state = 10}, - [2768] = {.lex_state = 251, .external_lex_state = 5}, - [2769] = {.lex_state = 251, .external_lex_state = 5}, - [2770] = {.lex_state = 311, .external_lex_state = 22}, - [2771] = {.lex_state = 311, .external_lex_state = 22}, - [2772] = {.lex_state = 239, .external_lex_state = 15}, - [2773] = {.lex_state = 239, .external_lex_state = 15}, - [2774] = {.lex_state = 103}, - [2775] = {.lex_state = 103}, - [2776] = {.lex_state = 103}, - [2777] = {.lex_state = 328, .external_lex_state = 13}, - [2778] = {.lex_state = 311, .external_lex_state = 22}, - [2779] = {.lex_state = 311, .external_lex_state = 22}, - [2780] = {.lex_state = 103, .external_lex_state = 16}, - [2781] = {.lex_state = 328, .external_lex_state = 13}, - [2782] = {.lex_state = 282, .external_lex_state = 16}, - [2783] = {.lex_state = 328, .external_lex_state = 13}, - [2784] = {.lex_state = 221, .external_lex_state = 16}, - [2785] = {.lex_state = 328, .external_lex_state = 13}, - [2786] = {.lex_state = 221, .external_lex_state = 16}, - [2787] = {.lex_state = 221, .external_lex_state = 16}, - [2788] = {.lex_state = 328, .external_lex_state = 13}, - [2789] = {.lex_state = 286, .external_lex_state = 17}, - [2790] = {.lex_state = 286, .external_lex_state = 17}, - [2791] = {.lex_state = 247, .external_lex_state = 15}, - [2792] = {.lex_state = 247, .external_lex_state = 15}, - [2793] = {.lex_state = 330, .external_lex_state = 13}, - [2794] = {.lex_state = 311, .external_lex_state = 22}, - [2795] = {.lex_state = 311, .external_lex_state = 22}, - [2796] = {.lex_state = 103, .external_lex_state = 16}, - [2797] = {.lex_state = 330, .external_lex_state = 13}, - [2798] = {.lex_state = 282, .external_lex_state = 16}, - [2799] = {.lex_state = 330, .external_lex_state = 13}, - [2800] = {.lex_state = 221, .external_lex_state = 16}, - [2801] = {.lex_state = 330, .external_lex_state = 13}, - [2802] = {.lex_state = 221, .external_lex_state = 16}, - [2803] = {.lex_state = 221, .external_lex_state = 16}, - [2804] = {.lex_state = 330, .external_lex_state = 13}, - [2805] = {.lex_state = 288, .external_lex_state = 17}, - [2806] = {.lex_state = 288, .external_lex_state = 17}, - [2807] = {.lex_state = 290, .external_lex_state = 24}, - [2808] = {.lex_state = 290, .external_lex_state = 24}, - [2809] = {.lex_state = 317, .external_lex_state = 13}, - [2810] = {.lex_state = 317, .external_lex_state = 13}, - [2811] = {.lex_state = 141}, - [2812] = {.lex_state = 177, .external_lex_state = 2}, - [2813] = {.lex_state = 177, .external_lex_state = 2}, - [2814] = {.lex_state = 141}, - [2815] = {.lex_state = 177, .external_lex_state = 2}, - [2816] = {.lex_state = 319, .external_lex_state = 10}, - [2817] = {.lex_state = 319, .external_lex_state = 10}, - [2818] = {.lex_state = 326, .external_lex_state = 10}, - [2819] = {.lex_state = 326, .external_lex_state = 10}, - [2820] = {.lex_state = 311, .external_lex_state = 22}, - [2821] = {.lex_state = 311, .external_lex_state = 22}, - [2822] = {.lex_state = 103, .external_lex_state = 16}, - [2823] = {.lex_state = 326, .external_lex_state = 10}, - [2824] = {.lex_state = 326, .external_lex_state = 10}, - [2825] = {.lex_state = 328, .external_lex_state = 13}, - [2826] = {.lex_state = 328, .external_lex_state = 13}, - [2827] = {.lex_state = 311, .external_lex_state = 22}, - [2828] = {.lex_state = 311, .external_lex_state = 22}, - [2829] = {.lex_state = 103, .external_lex_state = 16}, - [2830] = {.lex_state = 328, .external_lex_state = 13}, - [2831] = {.lex_state = 328, .external_lex_state = 13}, - [2832] = {.lex_state = 330, .external_lex_state = 13}, - [2833] = {.lex_state = 330, .external_lex_state = 13}, - [2834] = {.lex_state = 311, .external_lex_state = 22}, - [2835] = {.lex_state = 311, .external_lex_state = 22}, - [2836] = {.lex_state = 103, .external_lex_state = 16}, - [2837] = {.lex_state = 330, .external_lex_state = 13}, - [2838] = {.lex_state = 330, .external_lex_state = 13}, - [2839] = {.lex_state = 141}, - [2840] = {.lex_state = 141}, - [2841] = {.lex_state = 326, .external_lex_state = 10}, - [2842] = {.lex_state = 326, .external_lex_state = 10}, - [2843] = {.lex_state = 328, .external_lex_state = 13}, - [2844] = {.lex_state = 328, .external_lex_state = 13}, - [2845] = {.lex_state = 330, .external_lex_state = 13}, - [2846] = {.lex_state = 330, .external_lex_state = 13}, + [2760] = {.lex_state = 286, .external_lex_state = 16}, + [2761] = {.lex_state = 192, .external_lex_state = 10}, + [2762] = {.lex_state = 286, .external_lex_state = 16}, + [2763] = {.lex_state = 192, .external_lex_state = 10}, + [2764] = {.lex_state = 286, .external_lex_state = 16}, + [2765] = {.lex_state = 192, .external_lex_state = 10}, + [2766] = {.lex_state = 286, .external_lex_state = 16}, + [2767] = {.lex_state = 192, .external_lex_state = 10}, + [2768] = {.lex_state = 286, .external_lex_state = 16}, + [2769] = {.lex_state = 183, .external_lex_state = 5}, + [2770] = {.lex_state = 183, .external_lex_state = 5}, + [2771] = {.lex_state = 183, .external_lex_state = 5}, + [2772] = {.lex_state = 183, .external_lex_state = 5}, + [2773] = {.lex_state = 286, .external_lex_state = 16}, + [2774] = {.lex_state = 183, .external_lex_state = 5}, + [2775] = {.lex_state = 286, .external_lex_state = 16}, + [2776] = {.lex_state = 183, .external_lex_state = 5}, + [2777] = {.lex_state = 286, .external_lex_state = 16}, + [2778] = {.lex_state = 183, .external_lex_state = 5}, + [2779] = {.lex_state = 183, .external_lex_state = 5}, + [2780] = {.lex_state = 253, .external_lex_state = 5}, + [2781] = {.lex_state = 320, .external_lex_state = 22}, + [2782] = {.lex_state = 320, .external_lex_state = 22}, + [2783] = {.lex_state = 103, .external_lex_state = 16}, + [2784] = {.lex_state = 286, .external_lex_state = 16}, + [2785] = {.lex_state = 253, .external_lex_state = 5}, + [2786] = {.lex_state = 284, .external_lex_state = 16}, + [2787] = {.lex_state = 253, .external_lex_state = 5}, + [2788] = {.lex_state = 288}, + [2789] = {.lex_state = 286, .external_lex_state = 16}, + [2790] = {.lex_state = 253, .external_lex_state = 5}, + [2791] = {.lex_state = 288}, + [2792] = {.lex_state = 286, .external_lex_state = 16}, + [2793] = {.lex_state = 288}, + [2794] = {.lex_state = 286, .external_lex_state = 16}, + [2795] = {.lex_state = 286, .external_lex_state = 16}, + [2796] = {.lex_state = 253, .external_lex_state = 5}, + [2797] = {.lex_state = 286, .external_lex_state = 16}, + [2798] = {.lex_state = 217, .external_lex_state = 11}, + [2799] = {.lex_state = 217, .external_lex_state = 11}, + [2800] = {.lex_state = 217, .external_lex_state = 11}, + [2801] = {.lex_state = 217, .external_lex_state = 11}, + [2802] = {.lex_state = 286, .external_lex_state = 16}, + [2803] = {.lex_state = 217, .external_lex_state = 11}, + [2804] = {.lex_state = 286, .external_lex_state = 16}, + [2805] = {.lex_state = 217, .external_lex_state = 11}, + [2806] = {.lex_state = 286, .external_lex_state = 16}, + [2807] = {.lex_state = 217, .external_lex_state = 11}, + [2808] = {.lex_state = 217, .external_lex_state = 11}, + [2809] = {.lex_state = 219, .external_lex_state = 13}, + [2810] = {.lex_state = 219, .external_lex_state = 13}, + [2811] = {.lex_state = 219, .external_lex_state = 13}, + [2812] = {.lex_state = 219, .external_lex_state = 13}, + [2813] = {.lex_state = 286, .external_lex_state = 16}, + [2814] = {.lex_state = 219, .external_lex_state = 13}, + [2815] = {.lex_state = 286, .external_lex_state = 16}, + [2816] = {.lex_state = 219, .external_lex_state = 13}, + [2817] = {.lex_state = 286, .external_lex_state = 16}, + [2818] = {.lex_state = 219, .external_lex_state = 13}, + [2819] = {.lex_state = 219, .external_lex_state = 13}, + [2820] = {.lex_state = 152, .external_lex_state = 14}, + [2821] = {.lex_state = 152, .external_lex_state = 14}, + [2822] = {.lex_state = 152, .external_lex_state = 14}, + [2823] = {.lex_state = 152, .external_lex_state = 14}, + [2824] = {.lex_state = 286, .external_lex_state = 16}, + [2825] = {.lex_state = 152, .external_lex_state = 14}, + [2826] = {.lex_state = 286, .external_lex_state = 16}, + [2827] = {.lex_state = 152, .external_lex_state = 14}, + [2828] = {.lex_state = 286, .external_lex_state = 16}, + [2829] = {.lex_state = 152, .external_lex_state = 14}, + [2830] = {.lex_state = 152, .external_lex_state = 14}, + [2831] = {.lex_state = 152, .external_lex_state = 10}, + [2832] = {.lex_state = 152, .external_lex_state = 10}, + [2833] = {.lex_state = 152, .external_lex_state = 10}, + [2834] = {.lex_state = 152, .external_lex_state = 10}, + [2835] = {.lex_state = 286, .external_lex_state = 16}, + [2836] = {.lex_state = 152, .external_lex_state = 10}, + [2837] = {.lex_state = 286, .external_lex_state = 16}, + [2838] = {.lex_state = 152, .external_lex_state = 10}, + [2839] = {.lex_state = 286, .external_lex_state = 16}, + [2840] = {.lex_state = 152, .external_lex_state = 10}, + [2841] = {.lex_state = 152, .external_lex_state = 10}, + [2842] = {.lex_state = 141, .external_lex_state = 15}, + [2843] = {.lex_state = 141, .external_lex_state = 15}, + [2844] = {.lex_state = 141, .external_lex_state = 15}, + [2845] = {.lex_state = 141, .external_lex_state = 15}, + [2846] = {.lex_state = 286, .external_lex_state = 16}, + [2847] = {.lex_state = 141, .external_lex_state = 15}, + [2848] = {.lex_state = 286, .external_lex_state = 16}, + [2849] = {.lex_state = 141, .external_lex_state = 15}, + [2850] = {.lex_state = 286, .external_lex_state = 16}, + [2851] = {.lex_state = 141, .external_lex_state = 15}, + [2852] = {.lex_state = 141, .external_lex_state = 15}, + [2853] = {.lex_state = 164, .external_lex_state = 13}, + [2854] = {.lex_state = 164, .external_lex_state = 13}, + [2855] = {.lex_state = 164, .external_lex_state = 13}, + [2856] = {.lex_state = 164, .external_lex_state = 13}, + [2857] = {.lex_state = 286, .external_lex_state = 16}, + [2858] = {.lex_state = 164, .external_lex_state = 13}, + [2859] = {.lex_state = 286, .external_lex_state = 16}, + [2860] = {.lex_state = 164, .external_lex_state = 13}, + [2861] = {.lex_state = 286, .external_lex_state = 16}, + [2862] = {.lex_state = 164, .external_lex_state = 13}, + [2863] = {.lex_state = 164, .external_lex_state = 13}, + [2864] = {.lex_state = 226, .external_lex_state = 16}, + [2865] = {.lex_state = 226, .external_lex_state = 16}, + [2866] = {.lex_state = 320, .external_lex_state = 22}, + [2867] = {.lex_state = 320, .external_lex_state = 22}, + [2868] = {.lex_state = 320, .external_lex_state = 22}, + [2869] = {.lex_state = 103, .external_lex_state = 16}, + [2870] = {.lex_state = 286, .external_lex_state = 16}, + [2871] = {.lex_state = 320, .external_lex_state = 22}, + [2872] = {.lex_state = 284, .external_lex_state = 16}, + [2873] = {.lex_state = 320, .external_lex_state = 22}, + [2874] = {.lex_state = 288}, + [2875] = {.lex_state = 286, .external_lex_state = 16}, + [2876] = {.lex_state = 320, .external_lex_state = 22}, + [2877] = {.lex_state = 288}, + [2878] = {.lex_state = 286, .external_lex_state = 16}, + [2879] = {.lex_state = 288}, + [2880] = {.lex_state = 286, .external_lex_state = 16}, + [2881] = {.lex_state = 286, .external_lex_state = 16}, + [2882] = {.lex_state = 320, .external_lex_state = 22}, + [2883] = {.lex_state = 286, .external_lex_state = 16}, + [2884] = {.lex_state = 286, .external_lex_state = 22}, + [2885] = {.lex_state = 286, .external_lex_state = 22}, + [2886] = {.lex_state = 286, .external_lex_state = 22}, + [2887] = {.lex_state = 286, .external_lex_state = 16}, + [2888] = {.lex_state = 320, .external_lex_state = 22}, + [2889] = {.lex_state = 320, .external_lex_state = 22}, + [2890] = {.lex_state = 103, .external_lex_state = 16}, + [2891] = {.lex_state = 286, .external_lex_state = 16}, + [2892] = {.lex_state = 286, .external_lex_state = 22}, + [2893] = {.lex_state = 286, .external_lex_state = 16}, + [2894] = {.lex_state = 286, .external_lex_state = 22}, + [2895] = {.lex_state = 286, .external_lex_state = 16}, + [2896] = {.lex_state = 286, .external_lex_state = 22}, + [2897] = {.lex_state = 286, .external_lex_state = 16}, + [2898] = {.lex_state = 286, .external_lex_state = 22}, + [2899] = {.lex_state = 286, .external_lex_state = 16}, + [2900] = {.lex_state = 161, .external_lex_state = 5}, + [2901] = {.lex_state = 161, .external_lex_state = 5}, + [2902] = {.lex_state = 161, .external_lex_state = 5}, + [2903] = {.lex_state = 241, .external_lex_state = 15}, + [2904] = {.lex_state = 320, .external_lex_state = 22}, + [2905] = {.lex_state = 320, .external_lex_state = 22}, + [2906] = {.lex_state = 103, .external_lex_state = 16}, + [2907] = {.lex_state = 286, .external_lex_state = 16}, + [2908] = {.lex_state = 241, .external_lex_state = 15}, + [2909] = {.lex_state = 284, .external_lex_state = 16}, + [2910] = {.lex_state = 241, .external_lex_state = 15}, + [2911] = {.lex_state = 288}, + [2912] = {.lex_state = 286, .external_lex_state = 16}, + [2913] = {.lex_state = 241, .external_lex_state = 15}, + [2914] = {.lex_state = 288}, + [2915] = {.lex_state = 286, .external_lex_state = 16}, + [2916] = {.lex_state = 288}, + [2917] = {.lex_state = 286, .external_lex_state = 16}, + [2918] = {.lex_state = 286, .external_lex_state = 16}, + [2919] = {.lex_state = 241, .external_lex_state = 15}, + [2920] = {.lex_state = 286, .external_lex_state = 16}, + [2921] = {.lex_state = 261, .external_lex_state = 2}, + [2922] = {.lex_state = 103}, + [2923] = {.lex_state = 103}, + [2924] = {.lex_state = 103}, + [2925] = {.lex_state = 103}, + [2926] = {.lex_state = 103}, + [2927] = {.lex_state = 103}, + [2928] = {.lex_state = 141}, + [2929] = {.lex_state = 103}, + [2930] = {.lex_state = 103}, + [2931] = {.lex_state = 103}, + [2932] = {.lex_state = 141}, + [2933] = {.lex_state = 103}, + [2934] = {.lex_state = 337, .external_lex_state = 13}, + [2935] = {.lex_state = 337, .external_lex_state = 13}, + [2936] = {.lex_state = 103}, + [2937] = {.lex_state = 141}, + [2938] = {.lex_state = 337, .external_lex_state = 13}, + [2939] = {.lex_state = 337, .external_lex_state = 13}, + [2940] = {.lex_state = 164}, + [2941] = {.lex_state = 337, .external_lex_state = 13}, + [2942] = {.lex_state = 337, .external_lex_state = 13}, + [2943] = {.lex_state = 337, .external_lex_state = 13}, + [2944] = {.lex_state = 103}, + [2945] = {.lex_state = 226, .external_lex_state = 16}, + [2946] = {.lex_state = 235, .external_lex_state = 6}, + [2947] = {.lex_state = 226, .external_lex_state = 16}, + [2948] = {.lex_state = 226, .external_lex_state = 16}, + [2949] = {.lex_state = 103}, + [2950] = {.lex_state = 241, .external_lex_state = 2}, + [2951] = {.lex_state = 103}, + [2952] = {.lex_state = 249, .external_lex_state = 2}, + [2953] = {.lex_state = 103}, + [2954] = {.lex_state = 241, .external_lex_state = 2}, + [2955] = {.lex_state = 237, .external_lex_state = 6}, + [2956] = {.lex_state = 237, .external_lex_state = 23}, + [2957] = {.lex_state = 237, .external_lex_state = 23}, + [2958] = {.lex_state = 237, .external_lex_state = 23}, + [2959] = {.lex_state = 286, .external_lex_state = 16}, + [2960] = {.lex_state = 320, .external_lex_state = 22}, + [2961] = {.lex_state = 320, .external_lex_state = 22}, + [2962] = {.lex_state = 103, .external_lex_state = 16}, + [2963] = {.lex_state = 286, .external_lex_state = 16}, + [2964] = {.lex_state = 237, .external_lex_state = 23}, + [2965] = {.lex_state = 286, .external_lex_state = 16}, + [2966] = {.lex_state = 237, .external_lex_state = 23}, + [2967] = {.lex_state = 286, .external_lex_state = 16}, + [2968] = {.lex_state = 237, .external_lex_state = 23}, + [2969] = {.lex_state = 286, .external_lex_state = 16}, + [2970] = {.lex_state = 237, .external_lex_state = 23}, + [2971] = {.lex_state = 286, .external_lex_state = 16}, + [2972] = {.lex_state = 237, .external_lex_state = 13}, + [2973] = {.lex_state = 237, .external_lex_state = 13}, + [2974] = {.lex_state = 237, .external_lex_state = 13}, + [2975] = {.lex_state = 286, .external_lex_state = 16}, + [2976] = {.lex_state = 320, .external_lex_state = 22}, + [2977] = {.lex_state = 320, .external_lex_state = 22}, + [2978] = {.lex_state = 103, .external_lex_state = 16}, + [2979] = {.lex_state = 286, .external_lex_state = 16}, + [2980] = {.lex_state = 237, .external_lex_state = 13}, + [2981] = {.lex_state = 286, .external_lex_state = 16}, + [2982] = {.lex_state = 237, .external_lex_state = 13}, + [2983] = {.lex_state = 286, .external_lex_state = 16}, + [2984] = {.lex_state = 237, .external_lex_state = 13}, + [2985] = {.lex_state = 286, .external_lex_state = 16}, + [2986] = {.lex_state = 237, .external_lex_state = 13}, + [2987] = {.lex_state = 286, .external_lex_state = 16}, + [2988] = {.lex_state = 143, .external_lex_state = 17}, + [2989] = {.lex_state = 143, .external_lex_state = 17}, + [2990] = {.lex_state = 143, .external_lex_state = 17}, + [2991] = {.lex_state = 143, .external_lex_state = 17}, + [2992] = {.lex_state = 286, .external_lex_state = 16}, + [2993] = {.lex_state = 143, .external_lex_state = 17}, + [2994] = {.lex_state = 286, .external_lex_state = 16}, + [2995] = {.lex_state = 143, .external_lex_state = 17}, + [2996] = {.lex_state = 286, .external_lex_state = 16}, + [2997] = {.lex_state = 143, .external_lex_state = 17}, + [2998] = {.lex_state = 143, .external_lex_state = 17}, + [2999] = {.lex_state = 295, .external_lex_state = 17}, + [3000] = {.lex_state = 320, .external_lex_state = 22}, + [3001] = {.lex_state = 320, .external_lex_state = 22}, + [3002] = {.lex_state = 103, .external_lex_state = 16}, + [3003] = {.lex_state = 286, .external_lex_state = 16}, + [3004] = {.lex_state = 295, .external_lex_state = 17}, + [3005] = {.lex_state = 284, .external_lex_state = 16}, + [3006] = {.lex_state = 295, .external_lex_state = 17}, + [3007] = {.lex_state = 288}, + [3008] = {.lex_state = 286, .external_lex_state = 16}, + [3009] = {.lex_state = 295, .external_lex_state = 17}, + [3010] = {.lex_state = 288}, + [3011] = {.lex_state = 286, .external_lex_state = 16}, + [3012] = {.lex_state = 288}, + [3013] = {.lex_state = 286, .external_lex_state = 16}, + [3014] = {.lex_state = 286, .external_lex_state = 16}, + [3015] = {.lex_state = 295, .external_lex_state = 17}, + [3016] = {.lex_state = 286, .external_lex_state = 16}, + [3017] = {.lex_state = 249, .external_lex_state = 15}, + [3018] = {.lex_state = 320, .external_lex_state = 22}, + [3019] = {.lex_state = 320, .external_lex_state = 22}, + [3020] = {.lex_state = 103, .external_lex_state = 16}, + [3021] = {.lex_state = 286, .external_lex_state = 16}, + [3022] = {.lex_state = 249, .external_lex_state = 15}, + [3023] = {.lex_state = 284, .external_lex_state = 16}, + [3024] = {.lex_state = 249, .external_lex_state = 15}, + [3025] = {.lex_state = 288}, + [3026] = {.lex_state = 286, .external_lex_state = 16}, + [3027] = {.lex_state = 249, .external_lex_state = 15}, + [3028] = {.lex_state = 288}, + [3029] = {.lex_state = 286, .external_lex_state = 16}, + [3030] = {.lex_state = 288}, + [3031] = {.lex_state = 286, .external_lex_state = 16}, + [3032] = {.lex_state = 286, .external_lex_state = 16}, + [3033] = {.lex_state = 249, .external_lex_state = 15}, + [3034] = {.lex_state = 286, .external_lex_state = 16}, + [3035] = {.lex_state = 339, .external_lex_state = 13}, + [3036] = {.lex_state = 339, .external_lex_state = 13}, + [3037] = {.lex_state = 141}, + [3038] = {.lex_state = 339, .external_lex_state = 13}, + [3039] = {.lex_state = 339, .external_lex_state = 13}, + [3040] = {.lex_state = 164}, + [3041] = {.lex_state = 339, .external_lex_state = 13}, + [3042] = {.lex_state = 339, .external_lex_state = 13}, + [3043] = {.lex_state = 339, .external_lex_state = 13}, + [3044] = {.lex_state = 103}, + [3045] = {.lex_state = 226, .external_lex_state = 16}, + [3046] = {.lex_state = 235, .external_lex_state = 6}, + [3047] = {.lex_state = 226, .external_lex_state = 16}, + [3048] = {.lex_state = 226, .external_lex_state = 16}, + [3049] = {.lex_state = 103}, + [3050] = {.lex_state = 241, .external_lex_state = 2}, + [3051] = {.lex_state = 103}, + [3052] = {.lex_state = 249, .external_lex_state = 2}, + [3053] = {.lex_state = 103}, + [3054] = {.lex_state = 241, .external_lex_state = 2}, + [3055] = {.lex_state = 243, .external_lex_state = 23}, + [3056] = {.lex_state = 243, .external_lex_state = 23}, + [3057] = {.lex_state = 243, .external_lex_state = 23}, + [3058] = {.lex_state = 286, .external_lex_state = 16}, + [3059] = {.lex_state = 320, .external_lex_state = 22}, + [3060] = {.lex_state = 320, .external_lex_state = 22}, + [3061] = {.lex_state = 103, .external_lex_state = 16}, + [3062] = {.lex_state = 286, .external_lex_state = 16}, + [3063] = {.lex_state = 243, .external_lex_state = 23}, + [3064] = {.lex_state = 286, .external_lex_state = 16}, + [3065] = {.lex_state = 243, .external_lex_state = 23}, + [3066] = {.lex_state = 286, .external_lex_state = 16}, + [3067] = {.lex_state = 243, .external_lex_state = 23}, + [3068] = {.lex_state = 286, .external_lex_state = 16}, + [3069] = {.lex_state = 243, .external_lex_state = 23}, + [3070] = {.lex_state = 286, .external_lex_state = 16}, + [3071] = {.lex_state = 243, .external_lex_state = 13}, + [3072] = {.lex_state = 243, .external_lex_state = 13}, + [3073] = {.lex_state = 243, .external_lex_state = 13}, + [3074] = {.lex_state = 286, .external_lex_state = 16}, + [3075] = {.lex_state = 320, .external_lex_state = 22}, + [3076] = {.lex_state = 320, .external_lex_state = 22}, + [3077] = {.lex_state = 103, .external_lex_state = 16}, + [3078] = {.lex_state = 286, .external_lex_state = 16}, + [3079] = {.lex_state = 243, .external_lex_state = 13}, + [3080] = {.lex_state = 286, .external_lex_state = 16}, + [3081] = {.lex_state = 243, .external_lex_state = 13}, + [3082] = {.lex_state = 286, .external_lex_state = 16}, + [3083] = {.lex_state = 243, .external_lex_state = 13}, + [3084] = {.lex_state = 286, .external_lex_state = 16}, + [3085] = {.lex_state = 243, .external_lex_state = 13}, + [3086] = {.lex_state = 286, .external_lex_state = 16}, + [3087] = {.lex_state = 245, .external_lex_state = 17}, + [3088] = {.lex_state = 245, .external_lex_state = 17}, + [3089] = {.lex_state = 245, .external_lex_state = 17}, + [3090] = {.lex_state = 245, .external_lex_state = 17}, + [3091] = {.lex_state = 286, .external_lex_state = 16}, + [3092] = {.lex_state = 245, .external_lex_state = 17}, + [3093] = {.lex_state = 286, .external_lex_state = 16}, + [3094] = {.lex_state = 245, .external_lex_state = 17}, + [3095] = {.lex_state = 286, .external_lex_state = 16}, + [3096] = {.lex_state = 245, .external_lex_state = 17}, + [3097] = {.lex_state = 245, .external_lex_state = 17}, + [3098] = {.lex_state = 297, .external_lex_state = 17}, + [3099] = {.lex_state = 320, .external_lex_state = 22}, + [3100] = {.lex_state = 320, .external_lex_state = 22}, + [3101] = {.lex_state = 103, .external_lex_state = 16}, + [3102] = {.lex_state = 286, .external_lex_state = 16}, + [3103] = {.lex_state = 297, .external_lex_state = 17}, + [3104] = {.lex_state = 284, .external_lex_state = 16}, + [3105] = {.lex_state = 297, .external_lex_state = 17}, + [3106] = {.lex_state = 288}, + [3107] = {.lex_state = 286, .external_lex_state = 16}, + [3108] = {.lex_state = 297, .external_lex_state = 17}, + [3109] = {.lex_state = 288}, + [3110] = {.lex_state = 286, .external_lex_state = 16}, + [3111] = {.lex_state = 288}, + [3112] = {.lex_state = 286, .external_lex_state = 16}, + [3113] = {.lex_state = 286, .external_lex_state = 16}, + [3114] = {.lex_state = 297, .external_lex_state = 17}, + [3115] = {.lex_state = 286, .external_lex_state = 16}, + [3116] = {.lex_state = 257, .external_lex_state = 5}, + [3117] = {.lex_state = 257, .external_lex_state = 5}, + [3118] = {.lex_state = 257, .external_lex_state = 5}, + [3119] = {.lex_state = 286, .external_lex_state = 16}, + [3120] = {.lex_state = 320, .external_lex_state = 22}, + [3121] = {.lex_state = 320, .external_lex_state = 22}, + [3122] = {.lex_state = 103, .external_lex_state = 16}, + [3123] = {.lex_state = 286, .external_lex_state = 16}, + [3124] = {.lex_state = 257, .external_lex_state = 5}, + [3125] = {.lex_state = 286, .external_lex_state = 16}, + [3126] = {.lex_state = 257, .external_lex_state = 5}, + [3127] = {.lex_state = 286, .external_lex_state = 16}, + [3128] = {.lex_state = 257, .external_lex_state = 5}, + [3129] = {.lex_state = 286, .external_lex_state = 16}, + [3130] = {.lex_state = 257, .external_lex_state = 5}, + [3131] = {.lex_state = 286, .external_lex_state = 16}, + [3132] = {.lex_state = 299, .external_lex_state = 24}, + [3133] = {.lex_state = 320, .external_lex_state = 22}, + [3134] = {.lex_state = 320, .external_lex_state = 22}, + [3135] = {.lex_state = 103, .external_lex_state = 16}, + [3136] = {.lex_state = 286, .external_lex_state = 16}, + [3137] = {.lex_state = 299, .external_lex_state = 24}, + [3138] = {.lex_state = 284, .external_lex_state = 16}, + [3139] = {.lex_state = 299, .external_lex_state = 24}, + [3140] = {.lex_state = 288}, + [3141] = {.lex_state = 286, .external_lex_state = 16}, + [3142] = {.lex_state = 299, .external_lex_state = 24}, + [3143] = {.lex_state = 288}, + [3144] = {.lex_state = 286, .external_lex_state = 16}, + [3145] = {.lex_state = 288}, + [3146] = {.lex_state = 286, .external_lex_state = 16}, + [3147] = {.lex_state = 286, .external_lex_state = 16}, + [3148] = {.lex_state = 299, .external_lex_state = 24}, + [3149] = {.lex_state = 286, .external_lex_state = 16}, + [3150] = {.lex_state = 259, .external_lex_state = 11}, + [3151] = {.lex_state = 259, .external_lex_state = 11}, + [3152] = {.lex_state = 259, .external_lex_state = 11}, + [3153] = {.lex_state = 259, .external_lex_state = 11}, + [3154] = {.lex_state = 286, .external_lex_state = 16}, + [3155] = {.lex_state = 259, .external_lex_state = 11}, + [3156] = {.lex_state = 286, .external_lex_state = 16}, + [3157] = {.lex_state = 259, .external_lex_state = 11}, + [3158] = {.lex_state = 286, .external_lex_state = 16}, + [3159] = {.lex_state = 259, .external_lex_state = 11}, + [3160] = {.lex_state = 259, .external_lex_state = 11}, + [3161] = {.lex_state = 306, .external_lex_state = 13}, + [3162] = {.lex_state = 306, .external_lex_state = 13}, + [3163] = {.lex_state = 306, .external_lex_state = 13}, + [3164] = {.lex_state = 286, .external_lex_state = 16}, + [3165] = {.lex_state = 320, .external_lex_state = 22}, + [3166] = {.lex_state = 320, .external_lex_state = 22}, + [3167] = {.lex_state = 103, .external_lex_state = 16}, + [3168] = {.lex_state = 286, .external_lex_state = 16}, + [3169] = {.lex_state = 306, .external_lex_state = 13}, + [3170] = {.lex_state = 286, .external_lex_state = 16}, + [3171] = {.lex_state = 306, .external_lex_state = 13}, + [3172] = {.lex_state = 286, .external_lex_state = 16}, + [3173] = {.lex_state = 306, .external_lex_state = 13}, + [3174] = {.lex_state = 286, .external_lex_state = 16}, + [3175] = {.lex_state = 306, .external_lex_state = 13}, + [3176] = {.lex_state = 286, .external_lex_state = 16}, + [3177] = {.lex_state = 181, .external_lex_state = 20}, + [3178] = {.lex_state = 181, .external_lex_state = 20}, + [3179] = {.lex_state = 181, .external_lex_state = 20}, + [3180] = {.lex_state = 181, .external_lex_state = 20}, + [3181] = {.lex_state = 286, .external_lex_state = 16}, + [3182] = {.lex_state = 181, .external_lex_state = 20}, + [3183] = {.lex_state = 286, .external_lex_state = 16}, + [3184] = {.lex_state = 181, .external_lex_state = 20}, + [3185] = {.lex_state = 286, .external_lex_state = 16}, + [3186] = {.lex_state = 181, .external_lex_state = 20}, + [3187] = {.lex_state = 181, .external_lex_state = 20}, + [3188] = {.lex_state = 308, .external_lex_state = 10}, + [3189] = {.lex_state = 308, .external_lex_state = 10}, + [3190] = {.lex_state = 308, .external_lex_state = 10}, + [3191] = {.lex_state = 286, .external_lex_state = 16}, + [3192] = {.lex_state = 320, .external_lex_state = 22}, + [3193] = {.lex_state = 320, .external_lex_state = 22}, + [3194] = {.lex_state = 103, .external_lex_state = 16}, + [3195] = {.lex_state = 286, .external_lex_state = 16}, + [3196] = {.lex_state = 308, .external_lex_state = 10}, + [3197] = {.lex_state = 286, .external_lex_state = 16}, + [3198] = {.lex_state = 308, .external_lex_state = 10}, + [3199] = {.lex_state = 286, .external_lex_state = 16}, + [3200] = {.lex_state = 308, .external_lex_state = 10}, + [3201] = {.lex_state = 286, .external_lex_state = 16}, + [3202] = {.lex_state = 308, .external_lex_state = 10}, + [3203] = {.lex_state = 286, .external_lex_state = 16}, + [3204] = {.lex_state = 192, .external_lex_state = 4}, + [3205] = {.lex_state = 332, .external_lex_state = 2}, + [3206] = {.lex_state = 312}, + [3207] = {.lex_state = 332, .external_lex_state = 2}, + [3208] = {.lex_state = 332, .external_lex_state = 2}, + [3209] = {.lex_state = 312}, + [3210] = {.lex_state = 332, .external_lex_state = 2}, + [3211] = {.lex_state = 326, .external_lex_state = 13}, + [3212] = {.lex_state = 320, .external_lex_state = 22}, + [3213] = {.lex_state = 320, .external_lex_state = 22}, + [3214] = {.lex_state = 103, .external_lex_state = 16}, + [3215] = {.lex_state = 286, .external_lex_state = 16}, + [3216] = {.lex_state = 326, .external_lex_state = 13}, + [3217] = {.lex_state = 284, .external_lex_state = 16}, + [3218] = {.lex_state = 326, .external_lex_state = 13}, + [3219] = {.lex_state = 288}, + [3220] = {.lex_state = 286, .external_lex_state = 16}, + [3221] = {.lex_state = 326, .external_lex_state = 13}, + [3222] = {.lex_state = 288}, + [3223] = {.lex_state = 286, .external_lex_state = 16}, + [3224] = {.lex_state = 288}, + [3225] = {.lex_state = 286, .external_lex_state = 16}, + [3226] = {.lex_state = 286, .external_lex_state = 16}, + [3227] = {.lex_state = 326, .external_lex_state = 13}, + [3228] = {.lex_state = 286, .external_lex_state = 16}, + [3229] = {.lex_state = 178, .external_lex_state = 2}, + [3230] = {.lex_state = 137}, + [3231] = {.lex_state = 178, .external_lex_state = 2}, + [3232] = {.lex_state = 137}, + [3233] = {.lex_state = 192, .external_lex_state = 4}, + [3234] = {.lex_state = 192, .external_lex_state = 4}, + [3235] = {.lex_state = 189, .external_lex_state = 10}, + [3236] = {.lex_state = 189, .external_lex_state = 10}, + [3237] = {.lex_state = 189, .external_lex_state = 10}, + [3238] = {.lex_state = 328, .external_lex_state = 10}, + [3239] = {.lex_state = 320, .external_lex_state = 22}, + [3240] = {.lex_state = 320, .external_lex_state = 22}, + [3241] = {.lex_state = 103, .external_lex_state = 16}, + [3242] = {.lex_state = 286, .external_lex_state = 16}, + [3243] = {.lex_state = 328, .external_lex_state = 10}, + [3244] = {.lex_state = 284, .external_lex_state = 16}, + [3245] = {.lex_state = 328, .external_lex_state = 10}, + [3246] = {.lex_state = 288}, + [3247] = {.lex_state = 286, .external_lex_state = 16}, + [3248] = {.lex_state = 328, .external_lex_state = 10}, + [3249] = {.lex_state = 288}, + [3250] = {.lex_state = 286, .external_lex_state = 16}, + [3251] = {.lex_state = 288}, + [3252] = {.lex_state = 286, .external_lex_state = 16}, + [3253] = {.lex_state = 286, .external_lex_state = 16}, + [3254] = {.lex_state = 328, .external_lex_state = 10}, + [3255] = {.lex_state = 286, .external_lex_state = 16}, + [3256] = {.lex_state = 187, .external_lex_state = 20}, + [3257] = {.lex_state = 187, .external_lex_state = 20}, + [3258] = {.lex_state = 187, .external_lex_state = 20}, + [3259] = {.lex_state = 286, .external_lex_state = 16}, + [3260] = {.lex_state = 320, .external_lex_state = 22}, + [3261] = {.lex_state = 320, .external_lex_state = 22}, + [3262] = {.lex_state = 103, .external_lex_state = 16}, + [3263] = {.lex_state = 286, .external_lex_state = 16}, + [3264] = {.lex_state = 187, .external_lex_state = 20}, + [3265] = {.lex_state = 286, .external_lex_state = 16}, + [3266] = {.lex_state = 187, .external_lex_state = 20}, + [3267] = {.lex_state = 286, .external_lex_state = 16}, + [3268] = {.lex_state = 187, .external_lex_state = 20}, + [3269] = {.lex_state = 286, .external_lex_state = 16}, + [3270] = {.lex_state = 187, .external_lex_state = 20}, + [3271] = {.lex_state = 286, .external_lex_state = 16}, + [3272] = {.lex_state = 335, .external_lex_state = 10}, + [3273] = {.lex_state = 335, .external_lex_state = 10}, + [3274] = {.lex_state = 335, .external_lex_state = 10}, + [3275] = {.lex_state = 284, .external_lex_state = 16}, + [3276] = {.lex_state = 335, .external_lex_state = 10}, + [3277] = {.lex_state = 288}, + [3278] = {.lex_state = 286, .external_lex_state = 16}, + [3279] = {.lex_state = 103}, + [3280] = {.lex_state = 226, .external_lex_state = 16}, + [3281] = {.lex_state = 226, .external_lex_state = 16}, + [3282] = {.lex_state = 226, .external_lex_state = 16}, + [3283] = {.lex_state = 335, .external_lex_state = 10}, + [3284] = {.lex_state = 288}, + [3285] = {.lex_state = 286, .external_lex_state = 16}, + [3286] = {.lex_state = 335, .external_lex_state = 10}, + [3287] = {.lex_state = 288}, + [3288] = {.lex_state = 286, .external_lex_state = 16}, + [3289] = {.lex_state = 335, .external_lex_state = 10}, + [3290] = {.lex_state = 335, .external_lex_state = 10}, + [3291] = {.lex_state = 192, .external_lex_state = 14}, + [3292] = {.lex_state = 192, .external_lex_state = 14}, + [3293] = {.lex_state = 192, .external_lex_state = 14}, + [3294] = {.lex_state = 192, .external_lex_state = 14}, + [3295] = {.lex_state = 286, .external_lex_state = 16}, + [3296] = {.lex_state = 192, .external_lex_state = 14}, + [3297] = {.lex_state = 286, .external_lex_state = 16}, + [3298] = {.lex_state = 192, .external_lex_state = 14}, + [3299] = {.lex_state = 286, .external_lex_state = 16}, + [3300] = {.lex_state = 192, .external_lex_state = 14}, + [3301] = {.lex_state = 192, .external_lex_state = 14}, + [3302] = {.lex_state = 192, .external_lex_state = 10}, + [3303] = {.lex_state = 192, .external_lex_state = 10}, + [3304] = {.lex_state = 192, .external_lex_state = 10}, + [3305] = {.lex_state = 192, .external_lex_state = 10}, + [3306] = {.lex_state = 286, .external_lex_state = 16}, + [3307] = {.lex_state = 192, .external_lex_state = 10}, + [3308] = {.lex_state = 286, .external_lex_state = 16}, + [3309] = {.lex_state = 192, .external_lex_state = 10}, + [3310] = {.lex_state = 286, .external_lex_state = 16}, + [3311] = {.lex_state = 192, .external_lex_state = 10}, + [3312] = {.lex_state = 192, .external_lex_state = 10}, + [3313] = {.lex_state = 183, .external_lex_state = 5}, + [3314] = {.lex_state = 183, .external_lex_state = 5}, + [3315] = {.lex_state = 183, .external_lex_state = 5}, + [3316] = {.lex_state = 253, .external_lex_state = 5}, + [3317] = {.lex_state = 253, .external_lex_state = 5}, + [3318] = {.lex_state = 253, .external_lex_state = 5}, + [3319] = {.lex_state = 286, .external_lex_state = 16}, + [3320] = {.lex_state = 320, .external_lex_state = 22}, + [3321] = {.lex_state = 320, .external_lex_state = 22}, + [3322] = {.lex_state = 103, .external_lex_state = 16}, + [3323] = {.lex_state = 286, .external_lex_state = 16}, + [3324] = {.lex_state = 253, .external_lex_state = 5}, + [3325] = {.lex_state = 286, .external_lex_state = 16}, + [3326] = {.lex_state = 253, .external_lex_state = 5}, + [3327] = {.lex_state = 286, .external_lex_state = 16}, + [3328] = {.lex_state = 253, .external_lex_state = 5}, + [3329] = {.lex_state = 286, .external_lex_state = 16}, + [3330] = {.lex_state = 253, .external_lex_state = 5}, + [3331] = {.lex_state = 286, .external_lex_state = 16}, + [3332] = {.lex_state = 217, .external_lex_state = 11}, + [3333] = {.lex_state = 217, .external_lex_state = 11}, + [3334] = {.lex_state = 217, .external_lex_state = 11}, + [3335] = {.lex_state = 219, .external_lex_state = 13}, + [3336] = {.lex_state = 219, .external_lex_state = 13}, + [3337] = {.lex_state = 219, .external_lex_state = 13}, + [3338] = {.lex_state = 152, .external_lex_state = 14}, + [3339] = {.lex_state = 152, .external_lex_state = 14}, + [3340] = {.lex_state = 152, .external_lex_state = 14}, + [3341] = {.lex_state = 152, .external_lex_state = 10}, + [3342] = {.lex_state = 152, .external_lex_state = 10}, + [3343] = {.lex_state = 152, .external_lex_state = 10}, + [3344] = {.lex_state = 141, .external_lex_state = 15}, + [3345] = {.lex_state = 141, .external_lex_state = 15}, + [3346] = {.lex_state = 141, .external_lex_state = 15}, + [3347] = {.lex_state = 164, .external_lex_state = 13}, + [3348] = {.lex_state = 164, .external_lex_state = 13}, + [3349] = {.lex_state = 164, .external_lex_state = 13}, + [3350] = {.lex_state = 320, .external_lex_state = 22}, + [3351] = {.lex_state = 320, .external_lex_state = 22}, + [3352] = {.lex_state = 320, .external_lex_state = 22}, + [3353] = {.lex_state = 286, .external_lex_state = 16}, + [3354] = {.lex_state = 320, .external_lex_state = 22}, + [3355] = {.lex_state = 320, .external_lex_state = 22}, + [3356] = {.lex_state = 103, .external_lex_state = 16}, + [3357] = {.lex_state = 286, .external_lex_state = 16}, + [3358] = {.lex_state = 320, .external_lex_state = 22}, + [3359] = {.lex_state = 286, .external_lex_state = 16}, + [3360] = {.lex_state = 320, .external_lex_state = 22}, + [3361] = {.lex_state = 286, .external_lex_state = 16}, + [3362] = {.lex_state = 320, .external_lex_state = 22}, + [3363] = {.lex_state = 286, .external_lex_state = 16}, + [3364] = {.lex_state = 320, .external_lex_state = 22}, + [3365] = {.lex_state = 286, .external_lex_state = 16}, + [3366] = {.lex_state = 286, .external_lex_state = 22}, + [3367] = {.lex_state = 286, .external_lex_state = 22}, + [3368] = {.lex_state = 286, .external_lex_state = 22}, + [3369] = {.lex_state = 286, .external_lex_state = 22}, + [3370] = {.lex_state = 286, .external_lex_state = 16}, + [3371] = {.lex_state = 286, .external_lex_state = 22}, + [3372] = {.lex_state = 286, .external_lex_state = 16}, + [3373] = {.lex_state = 286, .external_lex_state = 22}, + [3374] = {.lex_state = 286, .external_lex_state = 16}, + [3375] = {.lex_state = 286, .external_lex_state = 22}, + [3376] = {.lex_state = 286, .external_lex_state = 22}, + [3377] = {.lex_state = 241, .external_lex_state = 15}, + [3378] = {.lex_state = 241, .external_lex_state = 15}, + [3379] = {.lex_state = 241, .external_lex_state = 15}, + [3380] = {.lex_state = 286, .external_lex_state = 16}, + [3381] = {.lex_state = 320, .external_lex_state = 22}, + [3382] = {.lex_state = 320, .external_lex_state = 22}, + [3383] = {.lex_state = 103, .external_lex_state = 16}, + [3384] = {.lex_state = 286, .external_lex_state = 16}, + [3385] = {.lex_state = 241, .external_lex_state = 15}, + [3386] = {.lex_state = 286, .external_lex_state = 16}, + [3387] = {.lex_state = 241, .external_lex_state = 15}, + [3388] = {.lex_state = 286, .external_lex_state = 16}, + [3389] = {.lex_state = 241, .external_lex_state = 15}, + [3390] = {.lex_state = 286, .external_lex_state = 16}, + [3391] = {.lex_state = 241, .external_lex_state = 15}, + [3392] = {.lex_state = 286, .external_lex_state = 16}, + [3393] = {.lex_state = 103}, + [3394] = {.lex_state = 261, .external_lex_state = 2}, + [3395] = {.lex_state = 103}, + [3396] = {.lex_state = 103}, + [3397] = {.lex_state = 103}, + [3398] = {.lex_state = 103}, + [3399] = {.lex_state = 103}, + [3400] = {.lex_state = 337, .external_lex_state = 13}, + [3401] = {.lex_state = 337, .external_lex_state = 13}, + [3402] = {.lex_state = 337, .external_lex_state = 13}, + [3403] = {.lex_state = 284, .external_lex_state = 16}, + [3404] = {.lex_state = 337, .external_lex_state = 13}, + [3405] = {.lex_state = 288}, + [3406] = {.lex_state = 286, .external_lex_state = 16}, + [3407] = {.lex_state = 103}, + [3408] = {.lex_state = 226, .external_lex_state = 16}, + [3409] = {.lex_state = 226, .external_lex_state = 16}, + [3410] = {.lex_state = 226, .external_lex_state = 16}, + [3411] = {.lex_state = 337, .external_lex_state = 13}, + [3412] = {.lex_state = 288}, + [3413] = {.lex_state = 286, .external_lex_state = 16}, + [3414] = {.lex_state = 337, .external_lex_state = 13}, + [3415] = {.lex_state = 288}, + [3416] = {.lex_state = 286, .external_lex_state = 16}, + [3417] = {.lex_state = 337, .external_lex_state = 13}, + [3418] = {.lex_state = 337, .external_lex_state = 13}, + [3419] = {.lex_state = 237, .external_lex_state = 23}, + [3420] = {.lex_state = 237, .external_lex_state = 23}, + [3421] = {.lex_state = 237, .external_lex_state = 23}, + [3422] = {.lex_state = 237, .external_lex_state = 23}, + [3423] = {.lex_state = 286, .external_lex_state = 16}, + [3424] = {.lex_state = 237, .external_lex_state = 23}, + [3425] = {.lex_state = 286, .external_lex_state = 16}, + [3426] = {.lex_state = 237, .external_lex_state = 23}, + [3427] = {.lex_state = 286, .external_lex_state = 16}, + [3428] = {.lex_state = 237, .external_lex_state = 23}, + [3429] = {.lex_state = 237, .external_lex_state = 23}, + [3430] = {.lex_state = 237, .external_lex_state = 13}, + [3431] = {.lex_state = 237, .external_lex_state = 13}, + [3432] = {.lex_state = 237, .external_lex_state = 13}, + [3433] = {.lex_state = 237, .external_lex_state = 13}, + [3434] = {.lex_state = 286, .external_lex_state = 16}, + [3435] = {.lex_state = 237, .external_lex_state = 13}, + [3436] = {.lex_state = 286, .external_lex_state = 16}, + [3437] = {.lex_state = 237, .external_lex_state = 13}, + [3438] = {.lex_state = 286, .external_lex_state = 16}, + [3439] = {.lex_state = 237, .external_lex_state = 13}, + [3440] = {.lex_state = 237, .external_lex_state = 13}, + [3441] = {.lex_state = 143, .external_lex_state = 17}, + [3442] = {.lex_state = 143, .external_lex_state = 17}, + [3443] = {.lex_state = 143, .external_lex_state = 17}, + [3444] = {.lex_state = 295, .external_lex_state = 17}, + [3445] = {.lex_state = 295, .external_lex_state = 17}, + [3446] = {.lex_state = 295, .external_lex_state = 17}, + [3447] = {.lex_state = 286, .external_lex_state = 16}, + [3448] = {.lex_state = 320, .external_lex_state = 22}, + [3449] = {.lex_state = 320, .external_lex_state = 22}, + [3450] = {.lex_state = 103, .external_lex_state = 16}, + [3451] = {.lex_state = 286, .external_lex_state = 16}, + [3452] = {.lex_state = 295, .external_lex_state = 17}, + [3453] = {.lex_state = 286, .external_lex_state = 16}, + [3454] = {.lex_state = 295, .external_lex_state = 17}, + [3455] = {.lex_state = 286, .external_lex_state = 16}, + [3456] = {.lex_state = 295, .external_lex_state = 17}, + [3457] = {.lex_state = 286, .external_lex_state = 16}, + [3458] = {.lex_state = 295, .external_lex_state = 17}, + [3459] = {.lex_state = 286, .external_lex_state = 16}, + [3460] = {.lex_state = 249, .external_lex_state = 15}, + [3461] = {.lex_state = 249, .external_lex_state = 15}, + [3462] = {.lex_state = 249, .external_lex_state = 15}, + [3463] = {.lex_state = 286, .external_lex_state = 16}, + [3464] = {.lex_state = 320, .external_lex_state = 22}, + [3465] = {.lex_state = 320, .external_lex_state = 22}, + [3466] = {.lex_state = 103, .external_lex_state = 16}, + [3467] = {.lex_state = 286, .external_lex_state = 16}, + [3468] = {.lex_state = 249, .external_lex_state = 15}, + [3469] = {.lex_state = 286, .external_lex_state = 16}, + [3470] = {.lex_state = 249, .external_lex_state = 15}, + [3471] = {.lex_state = 286, .external_lex_state = 16}, + [3472] = {.lex_state = 249, .external_lex_state = 15}, + [3473] = {.lex_state = 286, .external_lex_state = 16}, + [3474] = {.lex_state = 249, .external_lex_state = 15}, + [3475] = {.lex_state = 286, .external_lex_state = 16}, + [3476] = {.lex_state = 339, .external_lex_state = 13}, + [3477] = {.lex_state = 339, .external_lex_state = 13}, + [3478] = {.lex_state = 339, .external_lex_state = 13}, + [3479] = {.lex_state = 284, .external_lex_state = 16}, + [3480] = {.lex_state = 339, .external_lex_state = 13}, + [3481] = {.lex_state = 288}, + [3482] = {.lex_state = 286, .external_lex_state = 16}, + [3483] = {.lex_state = 103}, + [3484] = {.lex_state = 226, .external_lex_state = 16}, + [3485] = {.lex_state = 226, .external_lex_state = 16}, + [3486] = {.lex_state = 226, .external_lex_state = 16}, + [3487] = {.lex_state = 339, .external_lex_state = 13}, + [3488] = {.lex_state = 288}, + [3489] = {.lex_state = 286, .external_lex_state = 16}, + [3490] = {.lex_state = 339, .external_lex_state = 13}, + [3491] = {.lex_state = 288}, + [3492] = {.lex_state = 286, .external_lex_state = 16}, + [3493] = {.lex_state = 339, .external_lex_state = 13}, + [3494] = {.lex_state = 339, .external_lex_state = 13}, + [3495] = {.lex_state = 243, .external_lex_state = 23}, + [3496] = {.lex_state = 243, .external_lex_state = 23}, + [3497] = {.lex_state = 243, .external_lex_state = 23}, + [3498] = {.lex_state = 243, .external_lex_state = 23}, + [3499] = {.lex_state = 286, .external_lex_state = 16}, + [3500] = {.lex_state = 243, .external_lex_state = 23}, + [3501] = {.lex_state = 286, .external_lex_state = 16}, + [3502] = {.lex_state = 243, .external_lex_state = 23}, + [3503] = {.lex_state = 286, .external_lex_state = 16}, + [3504] = {.lex_state = 243, .external_lex_state = 23}, + [3505] = {.lex_state = 243, .external_lex_state = 23}, + [3506] = {.lex_state = 243, .external_lex_state = 13}, + [3507] = {.lex_state = 243, .external_lex_state = 13}, + [3508] = {.lex_state = 243, .external_lex_state = 13}, + [3509] = {.lex_state = 243, .external_lex_state = 13}, + [3510] = {.lex_state = 286, .external_lex_state = 16}, + [3511] = {.lex_state = 243, .external_lex_state = 13}, + [3512] = {.lex_state = 286, .external_lex_state = 16}, + [3513] = {.lex_state = 243, .external_lex_state = 13}, + [3514] = {.lex_state = 286, .external_lex_state = 16}, + [3515] = {.lex_state = 243, .external_lex_state = 13}, + [3516] = {.lex_state = 243, .external_lex_state = 13}, + [3517] = {.lex_state = 245, .external_lex_state = 17}, + [3518] = {.lex_state = 245, .external_lex_state = 17}, + [3519] = {.lex_state = 245, .external_lex_state = 17}, + [3520] = {.lex_state = 297, .external_lex_state = 17}, + [3521] = {.lex_state = 297, .external_lex_state = 17}, + [3522] = {.lex_state = 297, .external_lex_state = 17}, + [3523] = {.lex_state = 286, .external_lex_state = 16}, + [3524] = {.lex_state = 320, .external_lex_state = 22}, + [3525] = {.lex_state = 320, .external_lex_state = 22}, + [3526] = {.lex_state = 103, .external_lex_state = 16}, + [3527] = {.lex_state = 286, .external_lex_state = 16}, + [3528] = {.lex_state = 297, .external_lex_state = 17}, + [3529] = {.lex_state = 286, .external_lex_state = 16}, + [3530] = {.lex_state = 297, .external_lex_state = 17}, + [3531] = {.lex_state = 286, .external_lex_state = 16}, + [3532] = {.lex_state = 297, .external_lex_state = 17}, + [3533] = {.lex_state = 286, .external_lex_state = 16}, + [3534] = {.lex_state = 297, .external_lex_state = 17}, + [3535] = {.lex_state = 286, .external_lex_state = 16}, + [3536] = {.lex_state = 257, .external_lex_state = 5}, + [3537] = {.lex_state = 257, .external_lex_state = 5}, + [3538] = {.lex_state = 257, .external_lex_state = 5}, + [3539] = {.lex_state = 257, .external_lex_state = 5}, + [3540] = {.lex_state = 286, .external_lex_state = 16}, + [3541] = {.lex_state = 257, .external_lex_state = 5}, + [3542] = {.lex_state = 286, .external_lex_state = 16}, + [3543] = {.lex_state = 257, .external_lex_state = 5}, + [3544] = {.lex_state = 286, .external_lex_state = 16}, + [3545] = {.lex_state = 257, .external_lex_state = 5}, + [3546] = {.lex_state = 257, .external_lex_state = 5}, + [3547] = {.lex_state = 299, .external_lex_state = 24}, + [3548] = {.lex_state = 299, .external_lex_state = 24}, + [3549] = {.lex_state = 299, .external_lex_state = 24}, + [3550] = {.lex_state = 286, .external_lex_state = 16}, + [3551] = {.lex_state = 320, .external_lex_state = 22}, + [3552] = {.lex_state = 320, .external_lex_state = 22}, + [3553] = {.lex_state = 103, .external_lex_state = 16}, + [3554] = {.lex_state = 286, .external_lex_state = 16}, + [3555] = {.lex_state = 299, .external_lex_state = 24}, + [3556] = {.lex_state = 286, .external_lex_state = 16}, + [3557] = {.lex_state = 299, .external_lex_state = 24}, + [3558] = {.lex_state = 286, .external_lex_state = 16}, + [3559] = {.lex_state = 299, .external_lex_state = 24}, + [3560] = {.lex_state = 286, .external_lex_state = 16}, + [3561] = {.lex_state = 299, .external_lex_state = 24}, + [3562] = {.lex_state = 286, .external_lex_state = 16}, + [3563] = {.lex_state = 259, .external_lex_state = 11}, + [3564] = {.lex_state = 259, .external_lex_state = 11}, + [3565] = {.lex_state = 259, .external_lex_state = 11}, + [3566] = {.lex_state = 306, .external_lex_state = 13}, + [3567] = {.lex_state = 306, .external_lex_state = 13}, + [3568] = {.lex_state = 306, .external_lex_state = 13}, + [3569] = {.lex_state = 306, .external_lex_state = 13}, + [3570] = {.lex_state = 286, .external_lex_state = 16}, + [3571] = {.lex_state = 306, .external_lex_state = 13}, + [3572] = {.lex_state = 286, .external_lex_state = 16}, + [3573] = {.lex_state = 306, .external_lex_state = 13}, + [3574] = {.lex_state = 286, .external_lex_state = 16}, + [3575] = {.lex_state = 306, .external_lex_state = 13}, + [3576] = {.lex_state = 306, .external_lex_state = 13}, + [3577] = {.lex_state = 181, .external_lex_state = 20}, + [3578] = {.lex_state = 181, .external_lex_state = 20}, + [3579] = {.lex_state = 181, .external_lex_state = 20}, + [3580] = {.lex_state = 308, .external_lex_state = 10}, + [3581] = {.lex_state = 308, .external_lex_state = 10}, + [3582] = {.lex_state = 308, .external_lex_state = 10}, + [3583] = {.lex_state = 308, .external_lex_state = 10}, + [3584] = {.lex_state = 286, .external_lex_state = 16}, + [3585] = {.lex_state = 308, .external_lex_state = 10}, + [3586] = {.lex_state = 286, .external_lex_state = 16}, + [3587] = {.lex_state = 308, .external_lex_state = 10}, + [3588] = {.lex_state = 286, .external_lex_state = 16}, + [3589] = {.lex_state = 308, .external_lex_state = 10}, + [3590] = {.lex_state = 308, .external_lex_state = 10}, + [3591] = {.lex_state = 312}, + [3592] = {.lex_state = 312}, + [3593] = {.lex_state = 326, .external_lex_state = 13}, + [3594] = {.lex_state = 326, .external_lex_state = 13}, + [3595] = {.lex_state = 326, .external_lex_state = 13}, + [3596] = {.lex_state = 286, .external_lex_state = 16}, + [3597] = {.lex_state = 320, .external_lex_state = 22}, + [3598] = {.lex_state = 320, .external_lex_state = 22}, + [3599] = {.lex_state = 103, .external_lex_state = 16}, + [3600] = {.lex_state = 286, .external_lex_state = 16}, + [3601] = {.lex_state = 326, .external_lex_state = 13}, + [3602] = {.lex_state = 286, .external_lex_state = 16}, + [3603] = {.lex_state = 326, .external_lex_state = 13}, + [3604] = {.lex_state = 286, .external_lex_state = 16}, + [3605] = {.lex_state = 326, .external_lex_state = 13}, + [3606] = {.lex_state = 286, .external_lex_state = 16}, + [3607] = {.lex_state = 326, .external_lex_state = 13}, + [3608] = {.lex_state = 286, .external_lex_state = 16}, + [3609] = {.lex_state = 141}, + [3610] = {.lex_state = 178, .external_lex_state = 2}, + [3611] = {.lex_state = 178, .external_lex_state = 2}, + [3612] = {.lex_state = 141}, + [3613] = {.lex_state = 178, .external_lex_state = 2}, + [3614] = {.lex_state = 178, .external_lex_state = 2}, + [3615] = {.lex_state = 328, .external_lex_state = 10}, + [3616] = {.lex_state = 328, .external_lex_state = 10}, + [3617] = {.lex_state = 328, .external_lex_state = 10}, + [3618] = {.lex_state = 286, .external_lex_state = 16}, + [3619] = {.lex_state = 320, .external_lex_state = 22}, + [3620] = {.lex_state = 320, .external_lex_state = 22}, + [3621] = {.lex_state = 103, .external_lex_state = 16}, + [3622] = {.lex_state = 286, .external_lex_state = 16}, + [3623] = {.lex_state = 328, .external_lex_state = 10}, + [3624] = {.lex_state = 286, .external_lex_state = 16}, + [3625] = {.lex_state = 328, .external_lex_state = 10}, + [3626] = {.lex_state = 286, .external_lex_state = 16}, + [3627] = {.lex_state = 328, .external_lex_state = 10}, + [3628] = {.lex_state = 286, .external_lex_state = 16}, + [3629] = {.lex_state = 328, .external_lex_state = 10}, + [3630] = {.lex_state = 286, .external_lex_state = 16}, + [3631] = {.lex_state = 187, .external_lex_state = 20}, + [3632] = {.lex_state = 187, .external_lex_state = 20}, + [3633] = {.lex_state = 187, .external_lex_state = 20}, + [3634] = {.lex_state = 187, .external_lex_state = 20}, + [3635] = {.lex_state = 286, .external_lex_state = 16}, + [3636] = {.lex_state = 187, .external_lex_state = 20}, + [3637] = {.lex_state = 286, .external_lex_state = 16}, + [3638] = {.lex_state = 187, .external_lex_state = 20}, + [3639] = {.lex_state = 286, .external_lex_state = 16}, + [3640] = {.lex_state = 187, .external_lex_state = 20}, + [3641] = {.lex_state = 187, .external_lex_state = 20}, + [3642] = {.lex_state = 335, .external_lex_state = 10}, + [3643] = {.lex_state = 320, .external_lex_state = 22}, + [3644] = {.lex_state = 320, .external_lex_state = 22}, + [3645] = {.lex_state = 103, .external_lex_state = 16}, + [3646] = {.lex_state = 286, .external_lex_state = 16}, + [3647] = {.lex_state = 335, .external_lex_state = 10}, + [3648] = {.lex_state = 284, .external_lex_state = 16}, + [3649] = {.lex_state = 335, .external_lex_state = 10}, + [3650] = {.lex_state = 288}, + [3651] = {.lex_state = 286, .external_lex_state = 16}, + [3652] = {.lex_state = 335, .external_lex_state = 10}, + [3653] = {.lex_state = 288}, + [3654] = {.lex_state = 286, .external_lex_state = 16}, + [3655] = {.lex_state = 288}, + [3656] = {.lex_state = 286, .external_lex_state = 16}, + [3657] = {.lex_state = 286, .external_lex_state = 16}, + [3658] = {.lex_state = 335, .external_lex_state = 10}, + [3659] = {.lex_state = 286, .external_lex_state = 16}, + [3660] = {.lex_state = 192, .external_lex_state = 14}, + [3661] = {.lex_state = 192, .external_lex_state = 14}, + [3662] = {.lex_state = 192, .external_lex_state = 14}, + [3663] = {.lex_state = 192, .external_lex_state = 10}, + [3664] = {.lex_state = 192, .external_lex_state = 10}, + [3665] = {.lex_state = 192, .external_lex_state = 10}, + [3666] = {.lex_state = 253, .external_lex_state = 5}, + [3667] = {.lex_state = 253, .external_lex_state = 5}, + [3668] = {.lex_state = 253, .external_lex_state = 5}, + [3669] = {.lex_state = 253, .external_lex_state = 5}, + [3670] = {.lex_state = 286, .external_lex_state = 16}, + [3671] = {.lex_state = 253, .external_lex_state = 5}, + [3672] = {.lex_state = 286, .external_lex_state = 16}, + [3673] = {.lex_state = 253, .external_lex_state = 5}, + [3674] = {.lex_state = 286, .external_lex_state = 16}, + [3675] = {.lex_state = 253, .external_lex_state = 5}, + [3676] = {.lex_state = 253, .external_lex_state = 5}, + [3677] = {.lex_state = 320, .external_lex_state = 22}, + [3678] = {.lex_state = 320, .external_lex_state = 22}, + [3679] = {.lex_state = 320, .external_lex_state = 22}, + [3680] = {.lex_state = 320, .external_lex_state = 22}, + [3681] = {.lex_state = 286, .external_lex_state = 16}, + [3682] = {.lex_state = 320, .external_lex_state = 22}, + [3683] = {.lex_state = 286, .external_lex_state = 16}, + [3684] = {.lex_state = 320, .external_lex_state = 22}, + [3685] = {.lex_state = 286, .external_lex_state = 16}, + [3686] = {.lex_state = 320, .external_lex_state = 22}, + [3687] = {.lex_state = 320, .external_lex_state = 22}, + [3688] = {.lex_state = 286, .external_lex_state = 22}, + [3689] = {.lex_state = 286, .external_lex_state = 22}, + [3690] = {.lex_state = 286, .external_lex_state = 22}, + [3691] = {.lex_state = 241, .external_lex_state = 15}, + [3692] = {.lex_state = 241, .external_lex_state = 15}, + [3693] = {.lex_state = 241, .external_lex_state = 15}, + [3694] = {.lex_state = 241, .external_lex_state = 15}, + [3695] = {.lex_state = 286, .external_lex_state = 16}, + [3696] = {.lex_state = 241, .external_lex_state = 15}, + [3697] = {.lex_state = 286, .external_lex_state = 16}, + [3698] = {.lex_state = 241, .external_lex_state = 15}, + [3699] = {.lex_state = 286, .external_lex_state = 16}, + [3700] = {.lex_state = 241, .external_lex_state = 15}, + [3701] = {.lex_state = 241, .external_lex_state = 15}, + [3702] = {.lex_state = 103}, + [3703] = {.lex_state = 103}, + [3704] = {.lex_state = 103}, + [3705] = {.lex_state = 337, .external_lex_state = 13}, + [3706] = {.lex_state = 320, .external_lex_state = 22}, + [3707] = {.lex_state = 320, .external_lex_state = 22}, + [3708] = {.lex_state = 103, .external_lex_state = 16}, + [3709] = {.lex_state = 286, .external_lex_state = 16}, + [3710] = {.lex_state = 337, .external_lex_state = 13}, + [3711] = {.lex_state = 284, .external_lex_state = 16}, + [3712] = {.lex_state = 337, .external_lex_state = 13}, + [3713] = {.lex_state = 288}, + [3714] = {.lex_state = 286, .external_lex_state = 16}, + [3715] = {.lex_state = 337, .external_lex_state = 13}, + [3716] = {.lex_state = 288}, + [3717] = {.lex_state = 286, .external_lex_state = 16}, + [3718] = {.lex_state = 288}, + [3719] = {.lex_state = 286, .external_lex_state = 16}, + [3720] = {.lex_state = 286, .external_lex_state = 16}, + [3721] = {.lex_state = 337, .external_lex_state = 13}, + [3722] = {.lex_state = 286, .external_lex_state = 16}, + [3723] = {.lex_state = 237, .external_lex_state = 23}, + [3724] = {.lex_state = 237, .external_lex_state = 23}, + [3725] = {.lex_state = 237, .external_lex_state = 23}, + [3726] = {.lex_state = 237, .external_lex_state = 13}, + [3727] = {.lex_state = 237, .external_lex_state = 13}, + [3728] = {.lex_state = 237, .external_lex_state = 13}, + [3729] = {.lex_state = 295, .external_lex_state = 17}, + [3730] = {.lex_state = 295, .external_lex_state = 17}, + [3731] = {.lex_state = 295, .external_lex_state = 17}, + [3732] = {.lex_state = 295, .external_lex_state = 17}, + [3733] = {.lex_state = 286, .external_lex_state = 16}, + [3734] = {.lex_state = 295, .external_lex_state = 17}, + [3735] = {.lex_state = 286, .external_lex_state = 16}, + [3736] = {.lex_state = 295, .external_lex_state = 17}, + [3737] = {.lex_state = 286, .external_lex_state = 16}, + [3738] = {.lex_state = 295, .external_lex_state = 17}, + [3739] = {.lex_state = 295, .external_lex_state = 17}, + [3740] = {.lex_state = 249, .external_lex_state = 15}, + [3741] = {.lex_state = 249, .external_lex_state = 15}, + [3742] = {.lex_state = 249, .external_lex_state = 15}, + [3743] = {.lex_state = 249, .external_lex_state = 15}, + [3744] = {.lex_state = 286, .external_lex_state = 16}, + [3745] = {.lex_state = 249, .external_lex_state = 15}, + [3746] = {.lex_state = 286, .external_lex_state = 16}, + [3747] = {.lex_state = 249, .external_lex_state = 15}, + [3748] = {.lex_state = 286, .external_lex_state = 16}, + [3749] = {.lex_state = 249, .external_lex_state = 15}, + [3750] = {.lex_state = 249, .external_lex_state = 15}, + [3751] = {.lex_state = 339, .external_lex_state = 13}, + [3752] = {.lex_state = 320, .external_lex_state = 22}, + [3753] = {.lex_state = 320, .external_lex_state = 22}, + [3754] = {.lex_state = 103, .external_lex_state = 16}, + [3755] = {.lex_state = 286, .external_lex_state = 16}, + [3756] = {.lex_state = 339, .external_lex_state = 13}, + [3757] = {.lex_state = 284, .external_lex_state = 16}, + [3758] = {.lex_state = 339, .external_lex_state = 13}, + [3759] = {.lex_state = 288}, + [3760] = {.lex_state = 286, .external_lex_state = 16}, + [3761] = {.lex_state = 339, .external_lex_state = 13}, + [3762] = {.lex_state = 288}, + [3763] = {.lex_state = 286, .external_lex_state = 16}, + [3764] = {.lex_state = 288}, + [3765] = {.lex_state = 286, .external_lex_state = 16}, + [3766] = {.lex_state = 286, .external_lex_state = 16}, + [3767] = {.lex_state = 339, .external_lex_state = 13}, + [3768] = {.lex_state = 286, .external_lex_state = 16}, + [3769] = {.lex_state = 243, .external_lex_state = 23}, + [3770] = {.lex_state = 243, .external_lex_state = 23}, + [3771] = {.lex_state = 243, .external_lex_state = 23}, + [3772] = {.lex_state = 243, .external_lex_state = 13}, + [3773] = {.lex_state = 243, .external_lex_state = 13}, + [3774] = {.lex_state = 243, .external_lex_state = 13}, + [3775] = {.lex_state = 297, .external_lex_state = 17}, + [3776] = {.lex_state = 297, .external_lex_state = 17}, + [3777] = {.lex_state = 297, .external_lex_state = 17}, + [3778] = {.lex_state = 297, .external_lex_state = 17}, + [3779] = {.lex_state = 286, .external_lex_state = 16}, + [3780] = {.lex_state = 297, .external_lex_state = 17}, + [3781] = {.lex_state = 286, .external_lex_state = 16}, + [3782] = {.lex_state = 297, .external_lex_state = 17}, + [3783] = {.lex_state = 286, .external_lex_state = 16}, + [3784] = {.lex_state = 297, .external_lex_state = 17}, + [3785] = {.lex_state = 297, .external_lex_state = 17}, + [3786] = {.lex_state = 257, .external_lex_state = 5}, + [3787] = {.lex_state = 257, .external_lex_state = 5}, + [3788] = {.lex_state = 257, .external_lex_state = 5}, + [3789] = {.lex_state = 299, .external_lex_state = 24}, + [3790] = {.lex_state = 299, .external_lex_state = 24}, + [3791] = {.lex_state = 299, .external_lex_state = 24}, + [3792] = {.lex_state = 299, .external_lex_state = 24}, + [3793] = {.lex_state = 286, .external_lex_state = 16}, + [3794] = {.lex_state = 299, .external_lex_state = 24}, + [3795] = {.lex_state = 286, .external_lex_state = 16}, + [3796] = {.lex_state = 299, .external_lex_state = 24}, + [3797] = {.lex_state = 286, .external_lex_state = 16}, + [3798] = {.lex_state = 299, .external_lex_state = 24}, + [3799] = {.lex_state = 299, .external_lex_state = 24}, + [3800] = {.lex_state = 306, .external_lex_state = 13}, + [3801] = {.lex_state = 306, .external_lex_state = 13}, + [3802] = {.lex_state = 306, .external_lex_state = 13}, + [3803] = {.lex_state = 308, .external_lex_state = 10}, + [3804] = {.lex_state = 308, .external_lex_state = 10}, + [3805] = {.lex_state = 308, .external_lex_state = 10}, + [3806] = {.lex_state = 326, .external_lex_state = 13}, + [3807] = {.lex_state = 326, .external_lex_state = 13}, + [3808] = {.lex_state = 326, .external_lex_state = 13}, + [3809] = {.lex_state = 326, .external_lex_state = 13}, + [3810] = {.lex_state = 286, .external_lex_state = 16}, + [3811] = {.lex_state = 326, .external_lex_state = 13}, + [3812] = {.lex_state = 286, .external_lex_state = 16}, + [3813] = {.lex_state = 326, .external_lex_state = 13}, + [3814] = {.lex_state = 286, .external_lex_state = 16}, + [3815] = {.lex_state = 326, .external_lex_state = 13}, + [3816] = {.lex_state = 326, .external_lex_state = 13}, + [3817] = {.lex_state = 141}, + [3818] = {.lex_state = 178, .external_lex_state = 2}, + [3819] = {.lex_state = 178, .external_lex_state = 2}, + [3820] = {.lex_state = 141}, + [3821] = {.lex_state = 178, .external_lex_state = 2}, + [3822] = {.lex_state = 328, .external_lex_state = 10}, + [3823] = {.lex_state = 328, .external_lex_state = 10}, + [3824] = {.lex_state = 328, .external_lex_state = 10}, + [3825] = {.lex_state = 328, .external_lex_state = 10}, + [3826] = {.lex_state = 286, .external_lex_state = 16}, + [3827] = {.lex_state = 328, .external_lex_state = 10}, + [3828] = {.lex_state = 286, .external_lex_state = 16}, + [3829] = {.lex_state = 328, .external_lex_state = 10}, + [3830] = {.lex_state = 286, .external_lex_state = 16}, + [3831] = {.lex_state = 328, .external_lex_state = 10}, + [3832] = {.lex_state = 328, .external_lex_state = 10}, + [3833] = {.lex_state = 187, .external_lex_state = 20}, + [3834] = {.lex_state = 187, .external_lex_state = 20}, + [3835] = {.lex_state = 187, .external_lex_state = 20}, + [3836] = {.lex_state = 335, .external_lex_state = 10}, + [3837] = {.lex_state = 335, .external_lex_state = 10}, + [3838] = {.lex_state = 335, .external_lex_state = 10}, + [3839] = {.lex_state = 286, .external_lex_state = 16}, + [3840] = {.lex_state = 320, .external_lex_state = 22}, + [3841] = {.lex_state = 320, .external_lex_state = 22}, + [3842] = {.lex_state = 103, .external_lex_state = 16}, + [3843] = {.lex_state = 286, .external_lex_state = 16}, + [3844] = {.lex_state = 335, .external_lex_state = 10}, + [3845] = {.lex_state = 286, .external_lex_state = 16}, + [3846] = {.lex_state = 335, .external_lex_state = 10}, + [3847] = {.lex_state = 286, .external_lex_state = 16}, + [3848] = {.lex_state = 335, .external_lex_state = 10}, + [3849] = {.lex_state = 286, .external_lex_state = 16}, + [3850] = {.lex_state = 335, .external_lex_state = 10}, + [3851] = {.lex_state = 286, .external_lex_state = 16}, + [3852] = {.lex_state = 253, .external_lex_state = 5}, + [3853] = {.lex_state = 253, .external_lex_state = 5}, + [3854] = {.lex_state = 253, .external_lex_state = 5}, + [3855] = {.lex_state = 320, .external_lex_state = 22}, + [3856] = {.lex_state = 320, .external_lex_state = 22}, + [3857] = {.lex_state = 320, .external_lex_state = 22}, + [3858] = {.lex_state = 241, .external_lex_state = 15}, + [3859] = {.lex_state = 241, .external_lex_state = 15}, + [3860] = {.lex_state = 241, .external_lex_state = 15}, + [3861] = {.lex_state = 337, .external_lex_state = 13}, + [3862] = {.lex_state = 337, .external_lex_state = 13}, + [3863] = {.lex_state = 337, .external_lex_state = 13}, + [3864] = {.lex_state = 286, .external_lex_state = 16}, + [3865] = {.lex_state = 320, .external_lex_state = 22}, + [3866] = {.lex_state = 320, .external_lex_state = 22}, + [3867] = {.lex_state = 103, .external_lex_state = 16}, + [3868] = {.lex_state = 286, .external_lex_state = 16}, + [3869] = {.lex_state = 337, .external_lex_state = 13}, + [3870] = {.lex_state = 286, .external_lex_state = 16}, + [3871] = {.lex_state = 337, .external_lex_state = 13}, + [3872] = {.lex_state = 286, .external_lex_state = 16}, + [3873] = {.lex_state = 337, .external_lex_state = 13}, + [3874] = {.lex_state = 286, .external_lex_state = 16}, + [3875] = {.lex_state = 337, .external_lex_state = 13}, + [3876] = {.lex_state = 286, .external_lex_state = 16}, + [3877] = {.lex_state = 295, .external_lex_state = 17}, + [3878] = {.lex_state = 295, .external_lex_state = 17}, + [3879] = {.lex_state = 295, .external_lex_state = 17}, + [3880] = {.lex_state = 249, .external_lex_state = 15}, + [3881] = {.lex_state = 249, .external_lex_state = 15}, + [3882] = {.lex_state = 249, .external_lex_state = 15}, + [3883] = {.lex_state = 339, .external_lex_state = 13}, + [3884] = {.lex_state = 339, .external_lex_state = 13}, + [3885] = {.lex_state = 339, .external_lex_state = 13}, + [3886] = {.lex_state = 286, .external_lex_state = 16}, + [3887] = {.lex_state = 320, .external_lex_state = 22}, + [3888] = {.lex_state = 320, .external_lex_state = 22}, + [3889] = {.lex_state = 103, .external_lex_state = 16}, + [3890] = {.lex_state = 286, .external_lex_state = 16}, + [3891] = {.lex_state = 339, .external_lex_state = 13}, + [3892] = {.lex_state = 286, .external_lex_state = 16}, + [3893] = {.lex_state = 339, .external_lex_state = 13}, + [3894] = {.lex_state = 286, .external_lex_state = 16}, + [3895] = {.lex_state = 339, .external_lex_state = 13}, + [3896] = {.lex_state = 286, .external_lex_state = 16}, + [3897] = {.lex_state = 339, .external_lex_state = 13}, + [3898] = {.lex_state = 286, .external_lex_state = 16}, + [3899] = {.lex_state = 297, .external_lex_state = 17}, + [3900] = {.lex_state = 297, .external_lex_state = 17}, + [3901] = {.lex_state = 297, .external_lex_state = 17}, + [3902] = {.lex_state = 299, .external_lex_state = 24}, + [3903] = {.lex_state = 299, .external_lex_state = 24}, + [3904] = {.lex_state = 299, .external_lex_state = 24}, + [3905] = {.lex_state = 326, .external_lex_state = 13}, + [3906] = {.lex_state = 326, .external_lex_state = 13}, + [3907] = {.lex_state = 326, .external_lex_state = 13}, + [3908] = {.lex_state = 141}, + [3909] = {.lex_state = 141}, + [3910] = {.lex_state = 328, .external_lex_state = 10}, + [3911] = {.lex_state = 328, .external_lex_state = 10}, + [3912] = {.lex_state = 328, .external_lex_state = 10}, + [3913] = {.lex_state = 335, .external_lex_state = 10}, + [3914] = {.lex_state = 335, .external_lex_state = 10}, + [3915] = {.lex_state = 335, .external_lex_state = 10}, + [3916] = {.lex_state = 335, .external_lex_state = 10}, + [3917] = {.lex_state = 286, .external_lex_state = 16}, + [3918] = {.lex_state = 335, .external_lex_state = 10}, + [3919] = {.lex_state = 286, .external_lex_state = 16}, + [3920] = {.lex_state = 335, .external_lex_state = 10}, + [3921] = {.lex_state = 286, .external_lex_state = 16}, + [3922] = {.lex_state = 335, .external_lex_state = 10}, + [3923] = {.lex_state = 335, .external_lex_state = 10}, + [3924] = {.lex_state = 337, .external_lex_state = 13}, + [3925] = {.lex_state = 337, .external_lex_state = 13}, + [3926] = {.lex_state = 337, .external_lex_state = 13}, + [3927] = {.lex_state = 337, .external_lex_state = 13}, + [3928] = {.lex_state = 286, .external_lex_state = 16}, + [3929] = {.lex_state = 337, .external_lex_state = 13}, + [3930] = {.lex_state = 286, .external_lex_state = 16}, + [3931] = {.lex_state = 337, .external_lex_state = 13}, + [3932] = {.lex_state = 286, .external_lex_state = 16}, + [3933] = {.lex_state = 337, .external_lex_state = 13}, + [3934] = {.lex_state = 337, .external_lex_state = 13}, + [3935] = {.lex_state = 339, .external_lex_state = 13}, + [3936] = {.lex_state = 339, .external_lex_state = 13}, + [3937] = {.lex_state = 339, .external_lex_state = 13}, + [3938] = {.lex_state = 339, .external_lex_state = 13}, + [3939] = {.lex_state = 286, .external_lex_state = 16}, + [3940] = {.lex_state = 339, .external_lex_state = 13}, + [3941] = {.lex_state = 286, .external_lex_state = 16}, + [3942] = {.lex_state = 339, .external_lex_state = 13}, + [3943] = {.lex_state = 286, .external_lex_state = 16}, + [3944] = {.lex_state = 339, .external_lex_state = 13}, + [3945] = {.lex_state = 339, .external_lex_state = 13}, + [3946] = {.lex_state = 335, .external_lex_state = 10}, + [3947] = {.lex_state = 335, .external_lex_state = 10}, + [3948] = {.lex_state = 335, .external_lex_state = 10}, + [3949] = {.lex_state = 337, .external_lex_state = 13}, + [3950] = {.lex_state = 337, .external_lex_state = 13}, + [3951] = {.lex_state = 337, .external_lex_state = 13}, + [3952] = {.lex_state = 339, .external_lex_state = 13}, + [3953] = {.lex_state = 339, .external_lex_state = 13}, + [3954] = {.lex_state = 339, .external_lex_state = 13}, }; enum { @@ -9305,9 +10610,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(26), [sym_pipeline] = STATE(26), [sym_list] = STATE(26), - [sym_bracket_command] = STATE(26), [sym_command] = STATE(26), [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(26), [sym_variable_assignment] = STATE(28), [sym_declaration_command] = STATE(26), [sym_unset_command] = STATE(26), @@ -9390,9 +10695,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(40), [sym_pipeline] = STATE(40), [sym_list] = STATE(40), - [sym_bracket_command] = STATE(40), [sym_command] = STATE(40), [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(40), [sym_variable_assignment] = STATE(41), [sym_declaration_command] = STATE(40), [sym_unset_command] = STATE(40), @@ -9452,9 +10757,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(40), [sym_pipeline] = STATE(40), [sym_list] = STATE(40), - [sym_bracket_command] = STATE(40), [sym_command] = STATE(40), [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(40), [sym_variable_assignment] = STATE(41), [sym_declaration_command] = STATE(40), [sym_unset_command] = STATE(40), @@ -9530,31 +10835,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [9] = { [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(67), - [sym_while_statement] = STATE(67), - [sym_if_statement] = STATE(67), - [sym_case_statement] = STATE(67), - [sym_function_definition] = STATE(67), - [sym_subshell] = STATE(67), - [sym_pipeline] = STATE(67), - [sym_list] = STATE(67), - [sym_bracket_command] = STATE(67), - [sym_command] = STATE(67), - [sym_command_name] = STATE(68), - [sym_variable_assignment] = STATE(69), - [sym_declaration_command] = STATE(67), - [sym_unset_command] = STATE(67), - [sym_subscript] = STATE(70), + [sym_for_statement] = STATE(69), + [sym_while_statement] = STATE(69), + [sym_if_statement] = STATE(69), + [sym_case_statement] = STATE(69), + [sym_function_definition] = STATE(69), + [sym_subshell] = STATE(69), + [sym_pipeline] = STATE(69), + [sym_list] = STATE(69), + [sym_command] = STATE(69), + [sym_command_name] = STATE(70), + [sym_bracket_command] = STATE(69), + [sym_variable_assignment] = STATE(71), + [sym_declaration_command] = STATE(69), + [sym_unset_command] = STATE(69), + [sym_subscript] = STATE(72), [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(71), - [aux_sym_command_repeat1] = STATE(72), + [sym_string] = STATE(63), + [sym_simple_expansion] = STATE(63), + [sym_string_expansion] = STATE(63), + [sym_expansion] = STATE(63), + [sym_command_substitution] = STATE(63), + [sym_process_substitution] = STATE(63), + [aux_sym_program_repeat1] = STATE(73), + [aux_sym_command_repeat1] = STATE(74), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(90), [anon_sym_for] = ACTIONS(16), @@ -9563,15 +10868,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(94), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(96), - [anon_sym_typeset] = ACTIONS(96), - [anon_sym_export] = ACTIONS(96), - [anon_sym_readonly] = ACTIONS(96), - [anon_sym_local] = ACTIONS(96), - [anon_sym_unset] = ACTIONS(98), - [anon_sym_unsetenv] = ACTIONS(98), + [anon_sym_LBRACK] = ACTIONS(96), + [anon_sym_LBRACK_LBRACK] = ACTIONS(98), + [anon_sym_declare] = ACTIONS(100), + [anon_sym_typeset] = ACTIONS(100), + [anon_sym_export] = ACTIONS(100), + [anon_sym_readonly] = ACTIONS(100), + [anon_sym_local] = ACTIONS(100), + [anon_sym_unset] = ACTIONS(102), + [anon_sym_unsetenv] = ACTIONS(102), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -9579,296 +10884,298 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(100), - [anon_sym_DQUOTE] = ACTIONS(102), - [anon_sym_DOLLAR] = ACTIONS(104), - [sym_raw_string] = ACTIONS(106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(108), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(110), - [anon_sym_BQUOTE] = ACTIONS(112), - [anon_sym_LT_LPAREN] = ACTIONS(114), - [anon_sym_GT_LPAREN] = ACTIONS(114), + [sym__special_characters] = ACTIONS(104), + [anon_sym_DQUOTE] = ACTIONS(106), + [anon_sym_DOLLAR] = ACTIONS(108), + [sym_raw_string] = ACTIONS(110), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(112), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(114), + [anon_sym_BQUOTE] = ACTIONS(116), + [anon_sym_LT_LPAREN] = ACTIONS(118), + [anon_sym_GT_LPAREN] = ACTIONS(118), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(116), + [sym_word] = ACTIONS(120), }, [10] = { - [sym_concatenation] = STATE(82), - [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), - [aux_sym_bracket_command_repeat1] = STATE(83), - [anon_sym_EQ_TILDE] = ACTIONS(118), - [sym__special_characters] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [sym_raw_string] = ACTIONS(126), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(128), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(130), - [anon_sym_BQUOTE] = ACTIONS(132), - [anon_sym_LT_LPAREN] = ACTIONS(134), - [anon_sym_GT_LPAREN] = ACTIONS(134), + [sym_concatenation] = STATE(84), + [sym_string] = STATE(79), + [sym_simple_expansion] = STATE(79), + [sym_string_expansion] = STATE(79), + [sym_expansion] = STATE(79), + [sym_command_substitution] = STATE(79), + [sym_process_substitution] = STATE(79), + [aux_sym_command_repeat2] = STATE(85), + [anon_sym_EQ_TILDE] = ACTIONS(122), + [sym__special_characters] = ACTIONS(124), + [anon_sym_DQUOTE] = ACTIONS(126), + [anon_sym_DOLLAR] = ACTIONS(128), + [sym_raw_string] = ACTIONS(130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(132), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(134), + [anon_sym_BQUOTE] = ACTIONS(136), + [anon_sym_LT_LPAREN] = ACTIONS(138), + [anon_sym_GT_LPAREN] = ACTIONS(138), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(136), + [sym_word] = ACTIONS(140), }, [11] = { - [sym_concatenation] = STATE(93), - [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), - [aux_sym_bracket_command_repeat1] = STATE(94), - [anon_sym_EQ_TILDE] = ACTIONS(138), - [sym__special_characters] = ACTIONS(140), - [anon_sym_DQUOTE] = ACTIONS(142), - [anon_sym_DOLLAR] = ACTIONS(144), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(148), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(150), - [anon_sym_BQUOTE] = ACTIONS(152), - [anon_sym_LT_LPAREN] = ACTIONS(154), - [anon_sym_GT_LPAREN] = ACTIONS(154), + [sym_concatenation] = STATE(95), + [sym_string] = STATE(90), + [sym_simple_expansion] = STATE(90), + [sym_string_expansion] = STATE(90), + [sym_expansion] = STATE(90), + [sym_command_substitution] = STATE(90), + [sym_process_substitution] = STATE(90), + [aux_sym_command_repeat2] = STATE(96), + [anon_sym_EQ_TILDE] = ACTIONS(142), + [sym__special_characters] = ACTIONS(144), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [sym_raw_string] = ACTIONS(150), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(156), + [anon_sym_LT_LPAREN] = ACTIONS(158), + [anon_sym_GT_LPAREN] = ACTIONS(158), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(156), + [sym_word] = ACTIONS(160), }, [12] = { - [sym_variable_assignment] = STATE(105), - [sym_subscript] = STATE(106), - [sym_concatenation] = STATE(105), - [sym_string] = STATE(99), - [sym_simple_expansion] = STATE(99), - [sym_string_expansion] = STATE(99), - [sym_expansion] = STATE(99), - [sym_command_substitution] = STATE(99), - [sym_process_substitution] = STATE(99), - [aux_sym_declaration_command_repeat1] = STATE(107), - [sym_variable_name] = ACTIONS(158), - [anon_sym_PIPE] = ACTIONS(160), - [anon_sym_SEMI_SEMI] = ACTIONS(160), - [anon_sym_PIPE_AMP] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [sym__special_characters] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [anon_sym_DOLLAR] = ACTIONS(166), - [sym_raw_string] = ACTIONS(168), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(170), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(172), - [anon_sym_BQUOTE] = ACTIONS(174), - [anon_sym_LT_LPAREN] = ACTIONS(176), - [anon_sym_GT_LPAREN] = ACTIONS(176), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(180), - [sym_word] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(160), - [anon_sym_LF] = ACTIONS(160), - [anon_sym_AMP] = ACTIONS(160), + [sym_variable_assignment] = STATE(107), + [sym_subscript] = STATE(108), + [sym_concatenation] = STATE(107), + [sym_string] = STATE(101), + [sym_simple_expansion] = STATE(101), + [sym_string_expansion] = STATE(101), + [sym_expansion] = STATE(101), + [sym_command_substitution] = STATE(101), + [sym_process_substitution] = STATE(101), + [aux_sym_declaration_command_repeat1] = STATE(109), + [sym_variable_name] = ACTIONS(162), + [anon_sym_PIPE] = ACTIONS(164), + [anon_sym_SEMI_SEMI] = ACTIONS(164), + [anon_sym_PIPE_AMP] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(164), + [anon_sym_PIPE_PIPE] = ACTIONS(164), + [sym__special_characters] = ACTIONS(166), + [anon_sym_DQUOTE] = ACTIONS(168), + [anon_sym_DOLLAR] = ACTIONS(170), + [sym_raw_string] = ACTIONS(172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(174), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(176), + [anon_sym_BQUOTE] = ACTIONS(178), + [anon_sym_LT_LPAREN] = ACTIONS(180), + [anon_sym_GT_LPAREN] = ACTIONS(180), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(184), + [sym_word] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(164), + [anon_sym_LF] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(164), }, [13] = { - [sym_concatenation] = STATE(117), - [sym_string] = STATE(111), - [sym_simple_expansion] = STATE(111), - [sym_string_expansion] = STATE(111), - [sym_expansion] = STATE(111), - [sym_command_substitution] = STATE(111), - [sym_process_substitution] = STATE(111), - [aux_sym_unset_command_repeat1] = STATE(118), - [anon_sym_PIPE] = ACTIONS(182), - [anon_sym_SEMI_SEMI] = ACTIONS(182), - [anon_sym_PIPE_AMP] = ACTIONS(182), - [anon_sym_AMP_AMP] = ACTIONS(182), - [anon_sym_PIPE_PIPE] = ACTIONS(182), - [sym__special_characters] = ACTIONS(184), - [anon_sym_DQUOTE] = ACTIONS(186), - [anon_sym_DOLLAR] = ACTIONS(188), - [sym_raw_string] = ACTIONS(190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), - [anon_sym_BQUOTE] = ACTIONS(196), - [anon_sym_LT_LPAREN] = ACTIONS(198), - [anon_sym_GT_LPAREN] = ACTIONS(198), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(200), - [sym_word] = ACTIONS(190), - [anon_sym_SEMI] = ACTIONS(182), - [anon_sym_LF] = ACTIONS(182), - [anon_sym_AMP] = ACTIONS(182), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(113), + [sym_simple_expansion] = STATE(113), + [sym_string_expansion] = STATE(113), + [sym_expansion] = STATE(113), + [sym_command_substitution] = STATE(113), + [sym_process_substitution] = STATE(113), + [aux_sym_unset_command_repeat1] = STATE(120), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_SEMI_SEMI] = ACTIONS(186), + [anon_sym_PIPE_AMP] = ACTIONS(186), + [anon_sym_AMP_AMP] = ACTIONS(186), + [anon_sym_PIPE_PIPE] = ACTIONS(186), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [anon_sym_DOLLAR] = ACTIONS(192), + [sym_raw_string] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(204), + [sym_word] = ACTIONS(194), + [anon_sym_SEMI] = ACTIONS(186), + [anon_sym_LF] = ACTIONS(186), + [anon_sym_AMP] = ACTIONS(186), }, [14] = { - [sym_concatenation] = STATE(127), - [sym_string] = STATE(122), - [sym_simple_expansion] = STATE(122), - [sym_string_expansion] = STATE(122), - [sym_expansion] = STATE(122), - [sym_command_substitution] = STATE(122), - [sym_process_substitution] = STATE(122), - [sym__special_characters] = ACTIONS(202), - [anon_sym_DQUOTE] = ACTIONS(204), - [anon_sym_DOLLAR] = ACTIONS(206), - [sym_raw_string] = ACTIONS(208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(210), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(212), - [anon_sym_BQUOTE] = ACTIONS(214), - [anon_sym_LT_LPAREN] = ACTIONS(216), - [anon_sym_GT_LPAREN] = ACTIONS(216), + [sym_concatenation] = STATE(129), + [sym_string] = STATE(124), + [sym_simple_expansion] = STATE(124), + [sym_string_expansion] = STATE(124), + [sym_expansion] = STATE(124), + [sym_command_substitution] = STATE(124), + [sym_process_substitution] = STATE(124), + [sym__special_characters] = ACTIONS(206), + [anon_sym_DQUOTE] = ACTIONS(208), + [anon_sym_DOLLAR] = ACTIONS(210), + [sym_raw_string] = ACTIONS(212), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(216), + [anon_sym_BQUOTE] = ACTIONS(218), + [anon_sym_LT_LPAREN] = ACTIONS(220), + [anon_sym_GT_LPAREN] = ACTIONS(220), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(218), + [sym_word] = ACTIONS(222), }, [15] = { - [aux_sym_concatenation_repeat1] = STATE(129), - [sym_file_descriptor] = ACTIONS(220), - [sym__concat] = ACTIONS(222), - [anon_sym_PIPE] = ACTIONS(224), - [anon_sym_SEMI_SEMI] = ACTIONS(224), - [anon_sym_PIPE_AMP] = ACTIONS(224), - [anon_sym_AMP_AMP] = ACTIONS(224), - [anon_sym_PIPE_PIPE] = ACTIONS(224), - [anon_sym_LT] = ACTIONS(224), - [anon_sym_GT] = ACTIONS(224), - [anon_sym_GT_GT] = ACTIONS(224), - [anon_sym_AMP_GT] = ACTIONS(224), - [anon_sym_AMP_GT_GT] = ACTIONS(224), - [anon_sym_LT_AMP] = ACTIONS(224), - [anon_sym_GT_AMP] = ACTIONS(224), - [anon_sym_LT_LT] = ACTIONS(224), - [anon_sym_LT_LT_DASH] = ACTIONS(224), - [anon_sym_LT_LT_LT] = ACTIONS(224), - [sym__special_characters] = ACTIONS(224), - [anon_sym_DQUOTE] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(224), - [sym_raw_string] = ACTIONS(224), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(224), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), - [anon_sym_BQUOTE] = ACTIONS(224), - [anon_sym_LT_LPAREN] = ACTIONS(224), - [anon_sym_GT_LPAREN] = ACTIONS(224), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(224), - [anon_sym_SEMI] = ACTIONS(224), - [anon_sym_LF] = ACTIONS(224), - [anon_sym_AMP] = ACTIONS(224), + [aux_sym_concatenation_repeat1] = STATE(131), + [sym_file_descriptor] = ACTIONS(224), + [sym__concat] = ACTIONS(226), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_SEMI_SEMI] = ACTIONS(228), + [anon_sym_PIPE_AMP] = ACTIONS(228), + [anon_sym_AMP_AMP] = ACTIONS(228), + [anon_sym_PIPE_PIPE] = ACTIONS(228), + [anon_sym_EQ_TILDE] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(228), + [anon_sym_GT] = ACTIONS(228), + [anon_sym_GT_GT] = ACTIONS(228), + [anon_sym_AMP_GT] = ACTIONS(228), + [anon_sym_AMP_GT_GT] = ACTIONS(228), + [anon_sym_LT_AMP] = ACTIONS(228), + [anon_sym_GT_AMP] = ACTIONS(228), + [anon_sym_LT_LT] = ACTIONS(228), + [anon_sym_LT_LT_DASH] = ACTIONS(228), + [anon_sym_LT_LT_LT] = ACTIONS(228), + [sym__special_characters] = ACTIONS(228), + [anon_sym_DQUOTE] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(228), + [sym_raw_string] = ACTIONS(228), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(228), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(228), + [anon_sym_BQUOTE] = ACTIONS(228), + [anon_sym_LT_LPAREN] = ACTIONS(228), + [anon_sym_GT_LPAREN] = ACTIONS(228), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [anon_sym_LF] = ACTIONS(228), + [anon_sym_AMP] = ACTIONS(228), }, [16] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(136), - [anon_sym_DQUOTE] = ACTIONS(226), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(138), + [anon_sym_DQUOTE] = ACTIONS(230), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, [17] = { - [sym_string] = STATE(139), + [sym_string] = STATE(141), [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(238), - [anon_sym_POUND] = ACTIONS(238), - [anon_sym_DASH] = ACTIONS(238), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(240), - [anon_sym_STAR] = ACTIONS(238), - [anon_sym_AT] = ACTIONS(238), - [anon_sym_QMARK] = ACTIONS(238), - [anon_sym_0] = ACTIONS(242), - [anon_sym__] = ACTIONS(242), + [anon_sym_DOLLAR] = ACTIONS(242), + [anon_sym_POUND] = ACTIONS(242), + [anon_sym_DASH] = ACTIONS(242), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(244), + [anon_sym_STAR] = ACTIONS(242), + [anon_sym_AT] = ACTIONS(242), + [anon_sym_QMARK] = ACTIONS(242), + [anon_sym_0] = ACTIONS(246), + [anon_sym__] = ACTIONS(246), }, [18] = { - [aux_sym_concatenation_repeat1] = STATE(129), - [sym_file_descriptor] = ACTIONS(244), - [sym__concat] = ACTIONS(222), - [anon_sym_PIPE] = ACTIONS(246), - [anon_sym_SEMI_SEMI] = ACTIONS(246), - [anon_sym_PIPE_AMP] = ACTIONS(246), - [anon_sym_AMP_AMP] = ACTIONS(246), - [anon_sym_PIPE_PIPE] = ACTIONS(246), - [anon_sym_LT] = ACTIONS(246), - [anon_sym_GT] = ACTIONS(246), - [anon_sym_GT_GT] = ACTIONS(246), - [anon_sym_AMP_GT] = ACTIONS(246), - [anon_sym_AMP_GT_GT] = ACTIONS(246), - [anon_sym_LT_AMP] = ACTIONS(246), - [anon_sym_GT_AMP] = ACTIONS(246), - [anon_sym_LT_LT] = ACTIONS(246), - [anon_sym_LT_LT_DASH] = ACTIONS(246), - [anon_sym_LT_LT_LT] = ACTIONS(246), - [sym__special_characters] = ACTIONS(246), - [anon_sym_DQUOTE] = ACTIONS(246), - [anon_sym_DOLLAR] = ACTIONS(246), - [sym_raw_string] = ACTIONS(246), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(246), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(246), - [anon_sym_BQUOTE] = ACTIONS(246), - [anon_sym_LT_LPAREN] = ACTIONS(246), - [anon_sym_GT_LPAREN] = ACTIONS(246), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(246), - [anon_sym_SEMI] = ACTIONS(246), - [anon_sym_LF] = ACTIONS(246), - [anon_sym_AMP] = ACTIONS(246), + [aux_sym_concatenation_repeat1] = STATE(131), + [sym_file_descriptor] = ACTIONS(248), + [sym__concat] = ACTIONS(226), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_SEMI_SEMI] = ACTIONS(250), + [anon_sym_PIPE_AMP] = ACTIONS(250), + [anon_sym_AMP_AMP] = ACTIONS(250), + [anon_sym_PIPE_PIPE] = ACTIONS(250), + [anon_sym_EQ_TILDE] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(250), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_AMP_GT] = ACTIONS(250), + [anon_sym_AMP_GT_GT] = ACTIONS(250), + [anon_sym_LT_AMP] = ACTIONS(250), + [anon_sym_GT_AMP] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT_LT_DASH] = ACTIONS(250), + [anon_sym_LT_LT_LT] = ACTIONS(250), + [sym__special_characters] = ACTIONS(250), + [anon_sym_DQUOTE] = ACTIONS(250), + [anon_sym_DOLLAR] = ACTIONS(250), + [sym_raw_string] = ACTIONS(250), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(250), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(250), + [anon_sym_BQUOTE] = ACTIONS(250), + [anon_sym_LT_LPAREN] = ACTIONS(250), + [anon_sym_GT_LPAREN] = ACTIONS(250), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(250), + [anon_sym_SEMI] = ACTIONS(250), + [anon_sym_LF] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), }, [19] = { - [sym_subscript] = STATE(144), - [sym_variable_name] = ACTIONS(248), - [anon_sym_DOLLAR] = ACTIONS(250), - [anon_sym_POUND] = ACTIONS(252), - [anon_sym_DASH] = ACTIONS(250), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(254), - [anon_sym_STAR] = ACTIONS(250), - [anon_sym_AT] = ACTIONS(250), - [anon_sym_QMARK] = ACTIONS(250), - [anon_sym_0] = ACTIONS(256), - [anon_sym__] = ACTIONS(256), + [sym_subscript] = STATE(146), + [sym_variable_name] = ACTIONS(252), + [anon_sym_DOLLAR] = ACTIONS(254), + [anon_sym_POUND] = ACTIONS(256), + [anon_sym_DASH] = ACTIONS(254), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(258), + [anon_sym_STAR] = ACTIONS(254), + [anon_sym_AT] = ACTIONS(254), + [anon_sym_QMARK] = ACTIONS(254), + [anon_sym_0] = ACTIONS(260), + [anon_sym__] = ACTIONS(260), }, [20] = { - [sym_for_statement] = STATE(165), - [sym_while_statement] = STATE(165), - [sym_if_statement] = STATE(165), - [sym_case_statement] = STATE(165), - [sym_function_definition] = STATE(165), - [sym_subshell] = STATE(165), - [sym_pipeline] = STATE(165), - [sym_list] = STATE(165), - [sym_bracket_command] = STATE(165), - [sym_command] = STATE(165), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(167), - [sym_declaration_command] = STATE(165), - [sym_unset_command] = STATE(165), - [sym_subscript] = STATE(168), + [sym_for_statement] = STATE(167), + [sym_while_statement] = STATE(167), + [sym_if_statement] = STATE(167), + [sym_case_statement] = STATE(167), + [sym_function_definition] = STATE(167), + [sym_subshell] = STATE(167), + [sym_pipeline] = STATE(167), + [sym_list] = STATE(167), + [sym_command] = STATE(167), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(167), + [sym_variable_assignment] = STATE(169), + [sym_declaration_command] = STATE(167), + [sym_unset_command] = STATE(167), + [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -9876,121 +11183,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym_word] = ACTIONS(300), }, [21] = { - [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_bracket_command] = STATE(185), - [sym_command] = STATE(185), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(187), - [sym_declaration_command] = STATE(185), - [sym_unset_command] = STATE(185), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), - }, - [22] = { - [sym_for_statement] = STATE(190), - [sym_while_statement] = STATE(190), - [sym_if_statement] = STATE(190), - [sym_case_statement] = STATE(190), - [sym_function_definition] = STATE(190), - [sym_subshell] = STATE(190), - [sym_pipeline] = STATE(190), - [sym_list] = STATE(190), - [sym_bracket_command] = STATE(190), - [sym_command] = STATE(190), - [sym_command_name] = STATE(166), + [sym_for_statement] = STATE(189), + [sym_while_statement] = STATE(189), + [sym_if_statement] = STATE(189), + [sym_case_statement] = STATE(189), + [sym_function_definition] = STATE(189), + [sym_subshell] = STATE(189), + [sym_pipeline] = STATE(189), + [sym_list] = STATE(189), + [sym_command] = STATE(189), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(189), [sym_variable_assignment] = STATE(191), - [sym_declaration_command] = STATE(190), - [sym_unset_command] = STATE(190), - [sym_subscript] = STATE(168), + [sym_declaration_command] = STATE(189), + [sym_unset_command] = STATE(189), + [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -9998,180 +11244,243 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [23] = { - [aux_sym_concatenation_repeat1] = STATE(129), - [sym_file_descriptor] = ACTIONS(244), - [sym__concat] = ACTIONS(222), - [anon_sym_PIPE] = ACTIONS(246), - [anon_sym_SEMI_SEMI] = ACTIONS(246), - [anon_sym_LPAREN] = ACTIONS(326), - [anon_sym_PIPE_AMP] = ACTIONS(246), - [anon_sym_AMP_AMP] = ACTIONS(246), - [anon_sym_PIPE_PIPE] = ACTIONS(246), - [anon_sym_LT] = ACTIONS(246), - [anon_sym_GT] = ACTIONS(246), - [anon_sym_GT_GT] = ACTIONS(246), - [anon_sym_AMP_GT] = ACTIONS(246), - [anon_sym_AMP_GT_GT] = ACTIONS(246), - [anon_sym_LT_AMP] = ACTIONS(246), - [anon_sym_GT_AMP] = ACTIONS(246), - [anon_sym_LT_LT] = ACTIONS(246), - [anon_sym_LT_LT_DASH] = ACTIONS(246), - [anon_sym_LT_LT_LT] = ACTIONS(246), - [sym__special_characters] = ACTIONS(246), - [anon_sym_DQUOTE] = ACTIONS(246), - [anon_sym_DOLLAR] = ACTIONS(246), - [sym_raw_string] = ACTIONS(246), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(246), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(246), - [anon_sym_BQUOTE] = ACTIONS(246), - [anon_sym_LT_LPAREN] = ACTIONS(246), - [anon_sym_GT_LPAREN] = ACTIONS(246), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(246), - [anon_sym_SEMI] = ACTIONS(246), - [anon_sym_LF] = ACTIONS(246), - [anon_sym_AMP] = ACTIONS(246), - }, - [24] = { - [ts_builtin_sym_end] = ACTIONS(328), - [sym_comment] = ACTIONS(56), - }, - [25] = { - [sym_file_descriptor] = ACTIONS(330), - [sym_variable_name] = ACTIONS(330), - [ts_builtin_sym_end] = ACTIONS(330), - [anon_sym_for] = ACTIONS(332), - [anon_sym_while] = ACTIONS(332), - [anon_sym_if] = ACTIONS(332), - [anon_sym_case] = ACTIONS(332), - [anon_sym_SEMI_SEMI] = ACTIONS(330), - [anon_sym_function] = ACTIONS(332), - [anon_sym_LPAREN] = ACTIONS(330), - [anon_sym_LBRACK] = ACTIONS(332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(330), - [anon_sym_declare] = ACTIONS(332), - [anon_sym_typeset] = ACTIONS(332), - [anon_sym_export] = ACTIONS(332), - [anon_sym_readonly] = ACTIONS(332), - [anon_sym_local] = ACTIONS(332), - [anon_sym_unset] = ACTIONS(332), - [anon_sym_unsetenv] = ACTIONS(332), - [anon_sym_LT] = ACTIONS(332), - [anon_sym_GT] = ACTIONS(332), - [anon_sym_GT_GT] = ACTIONS(330), - [anon_sym_AMP_GT] = ACTIONS(332), - [anon_sym_AMP_GT_GT] = ACTIONS(330), - [anon_sym_LT_AMP] = ACTIONS(330), - [anon_sym_GT_AMP] = ACTIONS(330), - [sym__special_characters] = ACTIONS(334), - [anon_sym_DQUOTE] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [sym_raw_string] = ACTIONS(330), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(330), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(330), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), [anon_sym_LT_LPAREN] = ACTIONS(330), [anon_sym_GT_LPAREN] = ACTIONS(330), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), + [sym_word] = ACTIONS(332), + }, + [22] = { + [sym_for_statement] = STATE(194), + [sym_while_statement] = STATE(194), + [sym_if_statement] = STATE(194), + [sym_case_statement] = STATE(194), + [sym_function_definition] = STATE(194), + [sym_subshell] = STATE(194), + [sym_pipeline] = STATE(194), + [sym_list] = STATE(194), + [sym_command] = STATE(194), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(194), + [sym_variable_assignment] = STATE(195), + [sym_declaration_command] = STATE(194), + [sym_unset_command] = STATE(194), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [23] = { + [aux_sym_concatenation_repeat1] = STATE(131), + [sym_file_descriptor] = ACTIONS(248), + [sym__concat] = ACTIONS(226), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_SEMI_SEMI] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(334), + [anon_sym_PIPE_AMP] = ACTIONS(250), + [anon_sym_AMP_AMP] = ACTIONS(250), + [anon_sym_PIPE_PIPE] = ACTIONS(250), + [anon_sym_EQ_TILDE] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(250), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_AMP_GT] = ACTIONS(250), + [anon_sym_AMP_GT_GT] = ACTIONS(250), + [anon_sym_LT_AMP] = ACTIONS(250), + [anon_sym_GT_AMP] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT_LT_DASH] = ACTIONS(250), + [anon_sym_LT_LT_LT] = ACTIONS(250), + [sym__special_characters] = ACTIONS(250), + [anon_sym_DQUOTE] = ACTIONS(250), + [anon_sym_DOLLAR] = ACTIONS(250), + [sym_raw_string] = ACTIONS(250), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(250), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(250), + [anon_sym_BQUOTE] = ACTIONS(250), + [anon_sym_LT_LPAREN] = ACTIONS(250), + [anon_sym_GT_LPAREN] = ACTIONS(250), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(250), + [anon_sym_SEMI] = ACTIONS(250), + [anon_sym_LF] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), + }, + [24] = { + [ts_builtin_sym_end] = ACTIONS(336), + [sym_comment] = ACTIONS(56), + }, + [25] = { + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(338), + [ts_builtin_sym_end] = ACTIONS(338), + [anon_sym_for] = ACTIONS(340), + [anon_sym_while] = ACTIONS(340), + [anon_sym_if] = ACTIONS(340), + [anon_sym_case] = ACTIONS(340), + [anon_sym_SEMI_SEMI] = ACTIONS(338), + [anon_sym_function] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(338), + [anon_sym_LBRACK] = ACTIONS(340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(338), + [anon_sym_declare] = ACTIONS(340), + [anon_sym_typeset] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_readonly] = ACTIONS(340), + [anon_sym_local] = ACTIONS(340), + [anon_sym_unset] = ACTIONS(340), + [anon_sym_unsetenv] = ACTIONS(340), + [anon_sym_LT] = ACTIONS(340), + [anon_sym_GT] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_AMP_GT] = ACTIONS(340), + [anon_sym_AMP_GT_GT] = ACTIONS(338), + [anon_sym_LT_AMP] = ACTIONS(338), + [anon_sym_GT_AMP] = ACTIONS(338), + [sym__special_characters] = ACTIONS(342), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_DOLLAR] = ACTIONS(340), + [sym_raw_string] = ACTIONS(338), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(338), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(338), + [anon_sym_BQUOTE] = ACTIONS(338), + [anon_sym_LT_LPAREN] = ACTIONS(338), + [anon_sym_GT_LPAREN] = ACTIONS(338), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(342), }, [26] = { - [anon_sym_PIPE] = ACTIONS(336), - [anon_sym_SEMI_SEMI] = ACTIONS(338), - [anon_sym_PIPE_AMP] = ACTIONS(336), - [anon_sym_AMP_AMP] = ACTIONS(340), - [anon_sym_PIPE_PIPE] = ACTIONS(340), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(338), - [anon_sym_LF] = ACTIONS(338), - [anon_sym_AMP] = ACTIONS(338), + [anon_sym_PIPE] = ACTIONS(344), + [anon_sym_SEMI_SEMI] = ACTIONS(346), + [anon_sym_PIPE_AMP] = ACTIONS(344), + [anon_sym_AMP_AMP] = ACTIONS(348), + [anon_sym_PIPE_PIPE] = ACTIONS(348), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(346), + [anon_sym_LF] = ACTIONS(346), + [anon_sym_AMP] = ACTIONS(346), }, [27] = { - [sym_file_redirect] = STATE(202), - [sym_heredoc_redirect] = STATE(202), - [sym_herestring_redirect] = STATE(202), - [sym_concatenation] = STATE(203), - [sym_string] = STATE(201), - [sym_simple_expansion] = STATE(201), - [sym_string_expansion] = STATE(201), - [sym_expansion] = STATE(201), - [sym_command_substitution] = STATE(201), - [sym_process_substitution] = STATE(201), - [aux_sym_for_statement_repeat1] = STATE(204), - [aux_sym_while_statement_repeat1] = STATE(205), - [sym_file_descriptor] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(344), - [anon_sym_SEMI_SEMI] = ACTIONS(344), - [anon_sym_PIPE_AMP] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(344), - [anon_sym_PIPE_PIPE] = ACTIONS(344), - [anon_sym_LT] = ACTIONS(346), - [anon_sym_GT] = ACTIONS(346), - [anon_sym_GT_GT] = ACTIONS(346), - [anon_sym_AMP_GT] = ACTIONS(346), - [anon_sym_AMP_GT_GT] = ACTIONS(346), - [anon_sym_LT_AMP] = ACTIONS(346), - [anon_sym_GT_AMP] = ACTIONS(346), - [anon_sym_LT_LT] = ACTIONS(348), - [anon_sym_LT_LT_DASH] = ACTIONS(348), - [anon_sym_LT_LT_LT] = ACTIONS(350), - [sym__special_characters] = ACTIONS(352), - [anon_sym_DQUOTE] = ACTIONS(354), - [anon_sym_DOLLAR] = ACTIONS(356), - [sym_raw_string] = ACTIONS(358), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(362), - [anon_sym_BQUOTE] = ACTIONS(364), - [anon_sym_LT_LPAREN] = ACTIONS(366), - [anon_sym_GT_LPAREN] = ACTIONS(366), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(358), - [anon_sym_SEMI] = ACTIONS(344), - [anon_sym_LF] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(344), + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [sym_concatenation] = STATE(208), + [sym_string] = STATE(206), + [sym_simple_expansion] = STATE(206), + [sym_string_expansion] = STATE(206), + [sym_expansion] = STATE(206), + [sym_command_substitution] = STATE(206), + [sym_process_substitution] = STATE(206), + [aux_sym_while_statement_repeat1] = STATE(209), + [aux_sym_command_repeat2] = STATE(210), + [sym_file_descriptor] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(352), + [anon_sym_SEMI_SEMI] = ACTIONS(352), + [anon_sym_PIPE_AMP] = ACTIONS(352), + [anon_sym_AMP_AMP] = ACTIONS(352), + [anon_sym_PIPE_PIPE] = ACTIONS(352), + [anon_sym_EQ_TILDE] = ACTIONS(354), + [anon_sym_LT] = ACTIONS(356), + [anon_sym_GT] = ACTIONS(356), + [anon_sym_GT_GT] = ACTIONS(356), + [anon_sym_AMP_GT] = ACTIONS(356), + [anon_sym_AMP_GT_GT] = ACTIONS(356), + [anon_sym_LT_AMP] = ACTIONS(356), + [anon_sym_GT_AMP] = ACTIONS(356), + [anon_sym_LT_LT] = ACTIONS(358), + [anon_sym_LT_LT_DASH] = ACTIONS(358), + [anon_sym_LT_LT_LT] = ACTIONS(360), + [sym__special_characters] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_DOLLAR] = ACTIONS(366), + [sym_raw_string] = ACTIONS(368), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(370), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(372), + [anon_sym_BQUOTE] = ACTIONS(374), + [anon_sym_LT_LPAREN] = ACTIONS(376), + [anon_sym_GT_LPAREN] = ACTIONS(376), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(368), + [anon_sym_SEMI] = ACTIONS(352), + [anon_sym_LF] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(352), }, [28] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(336), - [anon_sym_SEMI_SEMI] = ACTIONS(338), - [anon_sym_PIPE_AMP] = ACTIONS(336), - [anon_sym_AMP_AMP] = ACTIONS(340), - [anon_sym_PIPE_PIPE] = ACTIONS(340), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_AMP_GT] = ACTIONS(370), - [anon_sym_AMP_GT_GT] = ACTIONS(370), - [anon_sym_LT_AMP] = ACTIONS(370), - [anon_sym_GT_AMP] = ACTIONS(370), - [sym__special_characters] = ACTIONS(370), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_DOLLAR] = ACTIONS(370), - [sym_raw_string] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(370), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(370), - [anon_sym_BQUOTE] = ACTIONS(370), - [anon_sym_LT_LPAREN] = ACTIONS(370), - [anon_sym_GT_LPAREN] = ACTIONS(370), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(370), - [anon_sym_SEMI] = ACTIONS(338), - [anon_sym_LF] = ACTIONS(338), - [anon_sym_AMP] = ACTIONS(338), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(344), + [anon_sym_SEMI_SEMI] = ACTIONS(346), + [anon_sym_PIPE_AMP] = ACTIONS(344), + [anon_sym_AMP_AMP] = ACTIONS(348), + [anon_sym_PIPE_PIPE] = ACTIONS(348), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(380), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(380), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(380), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(346), + [anon_sym_LF] = ACTIONS(346), + [anon_sym_AMP] = ACTIONS(346), }, [29] = { [sym__assignment] = STATE(37), @@ -10180,59 +11489,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), }, [30] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_word] = ACTIONS(382), }, [31] = { - [sym_file_descriptor] = ACTIONS(244), - [anon_sym_PIPE] = ACTIONS(246), - [anon_sym_RPAREN] = ACTIONS(246), - [anon_sym_SEMI_SEMI] = ACTIONS(246), - [anon_sym_PIPE_AMP] = ACTIONS(246), - [anon_sym_AMP_AMP] = ACTIONS(246), - [anon_sym_PIPE_PIPE] = ACTIONS(246), - [anon_sym_LT] = ACTIONS(246), - [anon_sym_GT] = ACTIONS(246), - [anon_sym_GT_GT] = ACTIONS(246), - [anon_sym_AMP_GT] = ACTIONS(246), - [anon_sym_AMP_GT_GT] = ACTIONS(246), - [anon_sym_LT_AMP] = ACTIONS(246), - [anon_sym_GT_AMP] = ACTIONS(246), - [anon_sym_LT_LT] = ACTIONS(246), - [anon_sym_LT_LT_DASH] = ACTIONS(246), - [anon_sym_LT_LT_LT] = ACTIONS(246), - [sym__special_characters] = ACTIONS(246), - [anon_sym_DQUOTE] = ACTIONS(246), - [anon_sym_DOLLAR] = ACTIONS(246), - [sym_raw_string] = ACTIONS(246), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(246), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(246), - [anon_sym_BQUOTE] = ACTIONS(246), - [anon_sym_LT_LPAREN] = ACTIONS(246), - [anon_sym_GT_LPAREN] = ACTIONS(246), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(246), - [anon_sym_SEMI] = ACTIONS(246), - [anon_sym_LF] = ACTIONS(246), - [anon_sym_AMP] = ACTIONS(246), + [sym_file_descriptor] = ACTIONS(248), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_RPAREN] = ACTIONS(250), + [anon_sym_SEMI_SEMI] = ACTIONS(250), + [anon_sym_PIPE_AMP] = ACTIONS(250), + [anon_sym_AMP_AMP] = ACTIONS(250), + [anon_sym_PIPE_PIPE] = ACTIONS(250), + [anon_sym_EQ_TILDE] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(250), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_AMP_GT] = ACTIONS(250), + [anon_sym_AMP_GT_GT] = ACTIONS(250), + [anon_sym_LT_AMP] = ACTIONS(250), + [anon_sym_GT_AMP] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT_LT_DASH] = ACTIONS(250), + [anon_sym_LT_LT_LT] = ACTIONS(250), + [sym__special_characters] = ACTIONS(250), + [anon_sym_DQUOTE] = ACTIONS(250), + [anon_sym_DOLLAR] = ACTIONS(250), + [sym_raw_string] = ACTIONS(250), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(250), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(250), + [anon_sym_BQUOTE] = ACTIONS(250), + [anon_sym_LT_LPAREN] = ACTIONS(250), + [anon_sym_GT_LPAREN] = ACTIONS(250), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(250), + [anon_sym_SEMI] = ACTIONS(250), + [anon_sym_LF] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), }, [32] = { [sym__terminated_statement] = STATE(25), @@ -10244,9 +11554,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(26), [sym_pipeline] = STATE(26), [sym_list] = STATE(26), - [sym_bracket_command] = STATE(26), [sym_command] = STATE(26), [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(26), [sym_variable_assignment] = STATE(28), [sym_declaration_command] = STATE(26), [sym_unset_command] = STATE(26), @@ -10259,11 +11569,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(206), + [aux_sym_program_repeat1] = STATE(211), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), - [ts_builtin_sym_end] = ACTIONS(374), + [ts_builtin_sym_end] = ACTIONS(384), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), @@ -10299,9 +11609,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(58), }, [33] = { - [sym_command_name] = STATE(208), + [sym_command_name] = STATE(213), [sym_variable_assignment] = STATE(30), - [sym_subscript] = STATE(209), + [sym_subscript] = STATE(214), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), [sym_string] = STATE(18), @@ -10310,9 +11620,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_command_repeat1] = STATE(210), + [aux_sym_command_repeat1] = STATE(215), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(376), + [sym_variable_name] = ACTIONS(386), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -10320,7 +11630,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(378), + [sym__special_characters] = ACTIONS(388), [anon_sym_DQUOTE] = ACTIONS(42), [anon_sym_DOLLAR] = ACTIONS(44), [sym_raw_string] = ACTIONS(46), @@ -10330,259 +11640,259 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(54), [anon_sym_GT_LPAREN] = ACTIONS(54), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(380), + [sym_word] = ACTIONS(390), }, [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(382), - [anon_sym_DQUOTE] = ACTIONS(204), - [anon_sym_DOLLAR] = ACTIONS(206), - [sym_raw_string] = ACTIONS(384), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(210), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(212), - [anon_sym_BQUOTE] = ACTIONS(214), - [anon_sym_LT_LPAREN] = ACTIONS(216), - [anon_sym_GT_LPAREN] = ACTIONS(216), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(386), - }, - [35] = { - [sym_concatenation] = STATE(222), + [sym_concatenation] = STATE(218), [sym_string] = STATE(217), [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__special_characters] = ACTIONS(388), - [anon_sym_DQUOTE] = ACTIONS(390), - [anon_sym_DOLLAR] = ACTIONS(392), + [sym__special_characters] = ACTIONS(392), + [anon_sym_DQUOTE] = ACTIONS(208), + [anon_sym_DOLLAR] = ACTIONS(210), [sym_raw_string] = ACTIONS(394), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(398), - [anon_sym_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(216), + [anon_sym_BQUOTE] = ACTIONS(218), + [anon_sym_LT_LPAREN] = ACTIONS(220), + [anon_sym_GT_LPAREN] = ACTIONS(220), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(404), + [sym_word] = ACTIONS(396), + }, + [35] = { + [sym_concatenation] = STATE(227), + [sym_string] = STATE(222), + [sym_simple_expansion] = STATE(222), + [sym_string_expansion] = STATE(222), + [sym_expansion] = STATE(222), + [sym_command_substitution] = STATE(222), + [sym_process_substitution] = STATE(222), + [sym__special_characters] = ACTIONS(398), + [anon_sym_DQUOTE] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(402), + [sym_raw_string] = ACTIONS(404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(406), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(408), + [anon_sym_BQUOTE] = ACTIONS(410), + [anon_sym_LT_LPAREN] = ACTIONS(412), + [anon_sym_GT_LPAREN] = ACTIONS(412), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(414), }, [36] = { - [sym_concatenation] = STATE(223), - [sym_string] = STATE(228), - [sym_array] = STATE(223), - [sym_simple_expansion] = STATE(228), - [sym_string_expansion] = STATE(228), - [sym_expansion] = STATE(228), - [sym_command_substitution] = STATE(228), - [sym_process_substitution] = STATE(228), - [sym__empty_value] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [sym__special_characters] = ACTIONS(410), - [anon_sym_DQUOTE] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(414), - [sym_raw_string] = ACTIONS(416), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), - [anon_sym_BQUOTE] = ACTIONS(422), - [anon_sym_LT_LPAREN] = ACTIONS(424), - [anon_sym_GT_LPAREN] = ACTIONS(424), + [sym_concatenation] = STATE(228), + [sym_string] = STATE(233), + [sym_array] = STATE(228), + [sym_simple_expansion] = STATE(233), + [sym_string_expansion] = STATE(233), + [sym_expansion] = STATE(233), + [sym_command_substitution] = STATE(233), + [sym_process_substitution] = STATE(233), + [sym__empty_value] = ACTIONS(416), + [anon_sym_LPAREN] = ACTIONS(418), + [sym__special_characters] = ACTIONS(420), + [anon_sym_DQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR] = ACTIONS(424), + [sym_raw_string] = ACTIONS(426), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(430), + [anon_sym_BQUOTE] = ACTIONS(432), + [anon_sym_LT_LPAREN] = ACTIONS(434), + [anon_sym_GT_LPAREN] = ACTIONS(434), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(426), + [sym_word] = ACTIONS(436), }, [37] = { - [sym_file_descriptor] = ACTIONS(428), - [sym_variable_name] = ACTIONS(428), - [anon_sym_PIPE] = ACTIONS(430), - [anon_sym_RPAREN] = ACTIONS(430), - [anon_sym_SEMI_SEMI] = ACTIONS(430), - [anon_sym_PIPE_AMP] = ACTIONS(430), - [anon_sym_AMP_AMP] = ACTIONS(430), - [anon_sym_PIPE_PIPE] = ACTIONS(430), - [anon_sym_LT] = ACTIONS(430), - [anon_sym_GT] = ACTIONS(430), - [anon_sym_GT_GT] = ACTIONS(430), - [anon_sym_AMP_GT] = ACTIONS(430), - [anon_sym_AMP_GT_GT] = ACTIONS(430), - [anon_sym_LT_AMP] = ACTIONS(430), - [anon_sym_GT_AMP] = ACTIONS(430), - [sym__special_characters] = ACTIONS(430), - [anon_sym_DQUOTE] = ACTIONS(430), - [anon_sym_DOLLAR] = ACTIONS(430), - [sym_raw_string] = ACTIONS(430), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(430), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(430), - [anon_sym_BQUOTE] = ACTIONS(430), - [anon_sym_LT_LPAREN] = ACTIONS(430), - [anon_sym_GT_LPAREN] = ACTIONS(430), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_LF] = ACTIONS(430), - [anon_sym_AMP] = ACTIONS(430), + [sym_file_descriptor] = ACTIONS(438), + [sym_variable_name] = ACTIONS(438), + [anon_sym_PIPE] = ACTIONS(440), + [anon_sym_RPAREN] = ACTIONS(440), + [anon_sym_SEMI_SEMI] = ACTIONS(440), + [anon_sym_PIPE_AMP] = ACTIONS(440), + [anon_sym_AMP_AMP] = ACTIONS(440), + [anon_sym_PIPE_PIPE] = ACTIONS(440), + [anon_sym_LT] = ACTIONS(440), + [anon_sym_GT] = ACTIONS(440), + [anon_sym_GT_GT] = ACTIONS(440), + [anon_sym_AMP_GT] = ACTIONS(440), + [anon_sym_AMP_GT_GT] = ACTIONS(440), + [anon_sym_LT_AMP] = ACTIONS(440), + [anon_sym_GT_AMP] = ACTIONS(440), + [sym__special_characters] = ACTIONS(440), + [anon_sym_DQUOTE] = ACTIONS(440), + [anon_sym_DOLLAR] = ACTIONS(440), + [sym_raw_string] = ACTIONS(440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(440), + [anon_sym_BQUOTE] = ACTIONS(440), + [anon_sym_LT_LPAREN] = ACTIONS(440), + [anon_sym_GT_LPAREN] = ACTIONS(440), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(440), + [anon_sym_LF] = ACTIONS(440), + [anon_sym_AMP] = ACTIONS(440), }, [38] = { - [anon_sym_in] = ACTIONS(432), + [anon_sym_in] = ACTIONS(442), [sym_comment] = ACTIONS(56), }, [39] = { - [sym_do_group] = STATE(235), - [anon_sym_do] = ACTIONS(434), + [sym_do_group] = STATE(240), + [anon_sym_do] = ACTIONS(444), [sym_comment] = ACTIONS(56), }, [40] = { - [anon_sym_PIPE] = ACTIONS(336), - [anon_sym_SEMI_SEMI] = ACTIONS(436), - [anon_sym_PIPE_AMP] = ACTIONS(336), - [anon_sym_AMP_AMP] = ACTIONS(340), - [anon_sym_PIPE_PIPE] = ACTIONS(340), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(436), - [anon_sym_LF] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(436), + [anon_sym_PIPE] = ACTIONS(344), + [anon_sym_SEMI_SEMI] = ACTIONS(446), + [anon_sym_PIPE_AMP] = ACTIONS(344), + [anon_sym_AMP_AMP] = ACTIONS(348), + [anon_sym_PIPE_PIPE] = ACTIONS(348), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(446), + [anon_sym_LF] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(446), }, [41] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(336), - [anon_sym_SEMI_SEMI] = ACTIONS(436), - [anon_sym_PIPE_AMP] = ACTIONS(336), - [anon_sym_AMP_AMP] = ACTIONS(340), - [anon_sym_PIPE_PIPE] = ACTIONS(340), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_AMP_GT] = ACTIONS(370), - [anon_sym_AMP_GT_GT] = ACTIONS(370), - [anon_sym_LT_AMP] = ACTIONS(370), - [anon_sym_GT_AMP] = ACTIONS(370), - [sym__special_characters] = ACTIONS(370), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_DOLLAR] = ACTIONS(370), - [sym_raw_string] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(370), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(370), - [anon_sym_BQUOTE] = ACTIONS(370), - [anon_sym_LT_LPAREN] = ACTIONS(370), - [anon_sym_GT_LPAREN] = ACTIONS(370), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(370), - [anon_sym_SEMI] = ACTIONS(436), - [anon_sym_LF] = ACTIONS(436), - [anon_sym_AMP] = ACTIONS(436), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(344), + [anon_sym_SEMI_SEMI] = ACTIONS(446), + [anon_sym_PIPE_AMP] = ACTIONS(344), + [anon_sym_AMP_AMP] = ACTIONS(348), + [anon_sym_PIPE_PIPE] = ACTIONS(348), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(380), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(380), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(380), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(446), + [anon_sym_LF] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(446), }, [42] = { - [anon_sym_then] = ACTIONS(438), + [anon_sym_then] = ACTIONS(448), [sym_comment] = ACTIONS(56), }, [43] = { - [aux_sym_concatenation_repeat1] = STATE(241), - [sym__concat] = ACTIONS(440), - [anon_sym_in] = ACTIONS(442), - [anon_sym_SEMI_SEMI] = ACTIONS(444), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(444), - [anon_sym_LF] = ACTIONS(444), - [anon_sym_AMP] = ACTIONS(444), + [aux_sym_concatenation_repeat1] = STATE(246), + [sym__concat] = ACTIONS(450), + [anon_sym_in] = ACTIONS(452), + [anon_sym_SEMI_SEMI] = ACTIONS(454), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(454), + [anon_sym_LF] = ACTIONS(454), + [anon_sym_AMP] = ACTIONS(454), }, [44] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(243), - [anon_sym_DQUOTE] = ACTIONS(446), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(248), + [anon_sym_DQUOTE] = ACTIONS(456), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, [45] = { - [sym_string] = STATE(246), + [sym_string] = STATE(251), [anon_sym_DQUOTE] = ACTIONS(72), - [anon_sym_DOLLAR] = ACTIONS(448), - [anon_sym_POUND] = ACTIONS(448), - [anon_sym_DASH] = ACTIONS(448), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(450), - [anon_sym_STAR] = ACTIONS(448), - [anon_sym_AT] = ACTIONS(448), - [anon_sym_QMARK] = ACTIONS(448), - [anon_sym_0] = ACTIONS(452), - [anon_sym__] = ACTIONS(452), + [anon_sym_DOLLAR] = ACTIONS(458), + [anon_sym_POUND] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(458), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(460), + [anon_sym_STAR] = ACTIONS(458), + [anon_sym_AT] = ACTIONS(458), + [anon_sym_QMARK] = ACTIONS(458), + [anon_sym_0] = ACTIONS(462), + [anon_sym__] = ACTIONS(462), }, [46] = { - [aux_sym_concatenation_repeat1] = STATE(241), - [sym__concat] = ACTIONS(440), - [anon_sym_in] = ACTIONS(454), - [anon_sym_SEMI_SEMI] = ACTIONS(456), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_LF] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(456), + [aux_sym_concatenation_repeat1] = STATE(246), + [sym__concat] = ACTIONS(450), + [anon_sym_in] = ACTIONS(464), + [anon_sym_SEMI_SEMI] = ACTIONS(466), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(466), + [anon_sym_LF] = ACTIONS(466), + [anon_sym_AMP] = ACTIONS(466), }, [47] = { - [sym_subscript] = STATE(253), - [sym_variable_name] = ACTIONS(458), - [anon_sym_DOLLAR] = ACTIONS(460), - [anon_sym_POUND] = ACTIONS(462), - [anon_sym_DASH] = ACTIONS(460), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(464), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_AT] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_0] = ACTIONS(466), - [anon_sym__] = ACTIONS(466), + [sym_subscript] = STATE(258), + [sym_variable_name] = ACTIONS(468), + [anon_sym_DOLLAR] = ACTIONS(470), + [anon_sym_POUND] = ACTIONS(472), + [anon_sym_DASH] = ACTIONS(470), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(474), + [anon_sym_STAR] = ACTIONS(470), + [anon_sym_AT] = ACTIONS(470), + [anon_sym_QMARK] = ACTIONS(470), + [anon_sym_0] = ACTIONS(476), + [anon_sym__] = ACTIONS(476), }, [48] = { - [sym_for_statement] = STATE(254), - [sym_while_statement] = STATE(254), - [sym_if_statement] = STATE(254), - [sym_case_statement] = STATE(254), - [sym_function_definition] = STATE(254), - [sym_subshell] = STATE(254), - [sym_pipeline] = STATE(254), - [sym_list] = STATE(254), - [sym_bracket_command] = STATE(254), - [sym_command] = STATE(254), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(255), - [sym_declaration_command] = STATE(254), - [sym_unset_command] = STATE(254), - [sym_subscript] = STATE(168), + [sym_for_statement] = STATE(259), + [sym_while_statement] = STATE(259), + [sym_if_statement] = STATE(259), + [sym_case_statement] = STATE(259), + [sym_function_definition] = STATE(259), + [sym_subshell] = STATE(259), + [sym_pipeline] = STATE(259), + [sym_list] = STATE(259), + [sym_command] = STATE(259), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(259), + [sym_variable_assignment] = STATE(260), + [sym_declaration_command] = STATE(259), + [sym_unset_command] = STATE(259), + [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -10590,60 +11900,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym_word] = ACTIONS(300), }, [49] = { - [sym_for_statement] = STATE(256), - [sym_while_statement] = STATE(256), - [sym_if_statement] = STATE(256), - [sym_case_statement] = STATE(256), - [sym_function_definition] = STATE(256), - [sym_subshell] = STATE(256), - [sym_pipeline] = STATE(256), - [sym_list] = STATE(256), - [sym_bracket_command] = STATE(256), - [sym_command] = STATE(256), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(257), - [sym_declaration_command] = STATE(256), - [sym_unset_command] = STATE(256), - [sym_subscript] = STATE(188), + [sym_for_statement] = STATE(261), + [sym_while_statement] = STATE(261), + [sym_if_statement] = STATE(261), + [sym_case_statement] = STATE(261), + [sym_function_definition] = STATE(261), + [sym_subshell] = STATE(261), + [sym_pipeline] = STATE(261), + [sym_list] = STATE(261), + [sym_command] = STATE(261), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(261), + [sym_variable_assignment] = STATE(262), + [sym_declaration_command] = STATE(261), + [sym_unset_command] = STATE(261), + [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -10651,60 +11961,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), + [sym_word] = ACTIONS(332), }, [50] = { - [sym_for_statement] = STATE(258), - [sym_while_statement] = STATE(258), - [sym_if_statement] = STATE(258), - [sym_case_statement] = STATE(258), - [sym_function_definition] = STATE(258), - [sym_subshell] = STATE(258), - [sym_pipeline] = STATE(258), - [sym_list] = STATE(258), - [sym_bracket_command] = STATE(258), - [sym_command] = STATE(258), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(259), - [sym_declaration_command] = STATE(258), - [sym_unset_command] = STATE(258), - [sym_subscript] = STATE(168), + [sym_for_statement] = STATE(263), + [sym_while_statement] = STATE(263), + [sym_if_statement] = STATE(263), + [sym_case_statement] = STATE(263), + [sym_function_definition] = STATE(263), + [sym_subshell] = STATE(263), + [sym_pipeline] = STATE(263), + [sym_list] = STATE(263), + [sym_command] = STATE(263), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(263), + [sym_variable_assignment] = STATE(264), + [sym_declaration_command] = STATE(263), + [sym_unset_command] = STATE(263), + [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -10712,41 +12022,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym_word] = ACTIONS(300), }, [51] = { - [anon_sym_in] = ACTIONS(454), - [anon_sym_SEMI_SEMI] = ACTIONS(456), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_LF] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(456), + [anon_sym_in] = ACTIONS(464), + [anon_sym_SEMI_SEMI] = ACTIONS(466), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(466), + [anon_sym_LF] = ACTIONS(466), + [anon_sym_AMP] = ACTIONS(466), }, [52] = { - [sym_compound_statement] = STATE(262), - [anon_sym_LPAREN] = ACTIONS(468), - [anon_sym_LBRACE] = ACTIONS(470), + [sym_compound_statement] = STATE(267), + [anon_sym_LPAREN] = ACTIONS(478), + [anon_sym_LBRACE] = ACTIONS(480), [sym_comment] = ACTIONS(56), }, [53] = { [sym__assignment] = STATE(37), [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_PLUS_EQ] = ACTIONS(472), + [anon_sym_EQ] = ACTIONS(482), + [anon_sym_PLUS_EQ] = ACTIONS(482), [sym_comment] = ACTIONS(56), }, [54] = { - [sym__terminated_statement] = STATE(264), + [sym__terminated_statement] = STATE(269), [sym_for_statement] = STATE(40), [sym_while_statement] = STATE(40), [sym_if_statement] = STATE(40), @@ -10755,9 +12065,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(40), [sym_pipeline] = STATE(40), [sym_list] = STATE(40), - [sym_bracket_command] = STATE(40), [sym_command] = STATE(40), [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(40), [sym_variable_assignment] = STATE(41), [sym_declaration_command] = STATE(40), [sym_unset_command] = STATE(40), @@ -10809,348 +12119,272 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [55] = { [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(474), + [sym_word] = ACTIONS(484), }, [56] = { - [sym_variable_assignment] = STATE(105), - [sym_subscript] = STATE(275), - [sym_concatenation] = STATE(105), - [sym_string] = STATE(270), - [sym_simple_expansion] = STATE(270), - [sym_string_expansion] = STATE(270), - [sym_expansion] = STATE(270), - [sym_command_substitution] = STATE(270), - [sym_process_substitution] = STATE(270), - [aux_sym_declaration_command_repeat1] = STATE(276), - [sym_variable_name] = ACTIONS(476), - [anon_sym_PIPE] = ACTIONS(160), - [anon_sym_RPAREN] = ACTIONS(160), - [anon_sym_SEMI_SEMI] = ACTIONS(160), - [anon_sym_PIPE_AMP] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(160), - [anon_sym_PIPE_PIPE] = ACTIONS(160), - [sym__special_characters] = ACTIONS(478), - [anon_sym_DQUOTE] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(482), - [sym_raw_string] = ACTIONS(484), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(486), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(488), - [anon_sym_BQUOTE] = ACTIONS(490), - [anon_sym_LT_LPAREN] = ACTIONS(492), - [anon_sym_GT_LPAREN] = ACTIONS(492), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(180), - [sym_word] = ACTIONS(484), - [anon_sym_SEMI] = ACTIONS(160), - [anon_sym_LF] = ACTIONS(160), - [anon_sym_AMP] = ACTIONS(160), + [sym_concatenation] = STATE(84), + [sym_string] = STATE(79), + [sym_simple_expansion] = STATE(79), + [sym_string_expansion] = STATE(79), + [sym_expansion] = STATE(79), + [sym_command_substitution] = STATE(79), + [sym_process_substitution] = STATE(79), + [aux_sym_command_repeat2] = STATE(271), + [anon_sym_EQ_TILDE] = ACTIONS(122), + [sym__special_characters] = ACTIONS(124), + [anon_sym_DQUOTE] = ACTIONS(126), + [anon_sym_DOLLAR] = ACTIONS(128), + [sym_raw_string] = ACTIONS(130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(132), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(134), + [anon_sym_BQUOTE] = ACTIONS(136), + [anon_sym_LT_LPAREN] = ACTIONS(138), + [anon_sym_GT_LPAREN] = ACTIONS(138), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(140), }, [57] = { - [sym_concatenation] = STATE(117), - [sym_string] = STATE(280), - [sym_simple_expansion] = STATE(280), - [sym_string_expansion] = STATE(280), - [sym_expansion] = STATE(280), - [sym_command_substitution] = STATE(280), - [sym_process_substitution] = STATE(280), - [aux_sym_unset_command_repeat1] = STATE(285), - [anon_sym_PIPE] = ACTIONS(182), - [anon_sym_RPAREN] = ACTIONS(182), - [anon_sym_SEMI_SEMI] = ACTIONS(182), - [anon_sym_PIPE_AMP] = ACTIONS(182), - [anon_sym_AMP_AMP] = ACTIONS(182), - [anon_sym_PIPE_PIPE] = ACTIONS(182), - [sym__special_characters] = ACTIONS(494), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DOLLAR] = ACTIONS(498), - [sym_raw_string] = ACTIONS(500), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(502), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(504), - [anon_sym_BQUOTE] = ACTIONS(506), - [anon_sym_LT_LPAREN] = ACTIONS(508), - [anon_sym_GT_LPAREN] = ACTIONS(508), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(200), - [sym_word] = ACTIONS(500), - [anon_sym_SEMI] = ACTIONS(182), - [anon_sym_LF] = ACTIONS(182), - [anon_sym_AMP] = ACTIONS(182), + [sym_concatenation] = STATE(95), + [sym_string] = STATE(90), + [sym_simple_expansion] = STATE(90), + [sym_string_expansion] = STATE(90), + [sym_expansion] = STATE(90), + [sym_command_substitution] = STATE(90), + [sym_process_substitution] = STATE(90), + [aux_sym_command_repeat2] = STATE(272), + [anon_sym_EQ_TILDE] = ACTIONS(142), + [sym__special_characters] = ACTIONS(144), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [sym_raw_string] = ACTIONS(150), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(156), + [anon_sym_LT_LPAREN] = ACTIONS(158), + [anon_sym_GT_LPAREN] = ACTIONS(158), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(160), }, [58] = { - [aux_sym_concatenation_repeat1] = STATE(287), - [sym_file_descriptor] = ACTIONS(220), - [sym__concat] = ACTIONS(510), - [anon_sym_PIPE] = ACTIONS(224), - [anon_sym_RPAREN] = ACTIONS(224), - [anon_sym_SEMI_SEMI] = ACTIONS(224), - [anon_sym_PIPE_AMP] = ACTIONS(224), - [anon_sym_AMP_AMP] = ACTIONS(224), - [anon_sym_PIPE_PIPE] = ACTIONS(224), - [anon_sym_LT] = ACTIONS(224), - [anon_sym_GT] = ACTIONS(224), - [anon_sym_GT_GT] = ACTIONS(224), - [anon_sym_AMP_GT] = ACTIONS(224), - [anon_sym_AMP_GT_GT] = ACTIONS(224), - [anon_sym_LT_AMP] = ACTIONS(224), - [anon_sym_GT_AMP] = ACTIONS(224), - [anon_sym_LT_LT] = ACTIONS(224), - [anon_sym_LT_LT_DASH] = ACTIONS(224), - [anon_sym_LT_LT_LT] = ACTIONS(224), - [sym__special_characters] = ACTIONS(224), - [anon_sym_DQUOTE] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(224), - [sym_raw_string] = ACTIONS(224), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(224), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), - [anon_sym_BQUOTE] = ACTIONS(224), - [anon_sym_LT_LPAREN] = ACTIONS(224), - [anon_sym_GT_LPAREN] = ACTIONS(224), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(224), - [anon_sym_SEMI] = ACTIONS(224), - [anon_sym_LF] = ACTIONS(224), - [anon_sym_AMP] = ACTIONS(224), + [sym_variable_assignment] = STATE(107), + [sym_subscript] = STATE(282), + [sym_concatenation] = STATE(107), + [sym_string] = STATE(277), + [sym_simple_expansion] = STATE(277), + [sym_string_expansion] = STATE(277), + [sym_expansion] = STATE(277), + [sym_command_substitution] = STATE(277), + [sym_process_substitution] = STATE(277), + [aux_sym_declaration_command_repeat1] = STATE(283), + [sym_variable_name] = ACTIONS(486), + [anon_sym_PIPE] = ACTIONS(164), + [anon_sym_RPAREN] = ACTIONS(164), + [anon_sym_SEMI_SEMI] = ACTIONS(164), + [anon_sym_PIPE_AMP] = ACTIONS(164), + [anon_sym_AMP_AMP] = ACTIONS(164), + [anon_sym_PIPE_PIPE] = ACTIONS(164), + [sym__special_characters] = ACTIONS(488), + [anon_sym_DQUOTE] = ACTIONS(490), + [anon_sym_DOLLAR] = ACTIONS(492), + [sym_raw_string] = ACTIONS(494), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(496), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(498), + [anon_sym_BQUOTE] = ACTIONS(500), + [anon_sym_LT_LPAREN] = ACTIONS(502), + [anon_sym_GT_LPAREN] = ACTIONS(502), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(184), + [sym_word] = ACTIONS(494), + [anon_sym_SEMI] = ACTIONS(164), + [anon_sym_LF] = ACTIONS(164), + [anon_sym_AMP] = ACTIONS(164), }, [59] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(289), - [anon_sym_DQUOTE] = ACTIONS(512), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(287), + [sym_simple_expansion] = STATE(287), + [sym_string_expansion] = STATE(287), + [sym_expansion] = STATE(287), + [sym_command_substitution] = STATE(287), + [sym_process_substitution] = STATE(287), + [aux_sym_unset_command_repeat1] = STATE(292), + [anon_sym_PIPE] = ACTIONS(186), + [anon_sym_RPAREN] = ACTIONS(186), + [anon_sym_SEMI_SEMI] = ACTIONS(186), + [anon_sym_PIPE_AMP] = ACTIONS(186), + [anon_sym_AMP_AMP] = ACTIONS(186), + [anon_sym_PIPE_PIPE] = ACTIONS(186), + [sym__special_characters] = ACTIONS(504), + [anon_sym_DQUOTE] = ACTIONS(506), + [anon_sym_DOLLAR] = ACTIONS(508), + [sym_raw_string] = ACTIONS(510), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(512), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(516), + [anon_sym_LT_LPAREN] = ACTIONS(518), + [anon_sym_GT_LPAREN] = ACTIONS(518), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(204), + [sym_word] = ACTIONS(510), + [anon_sym_SEMI] = ACTIONS(186), + [anon_sym_LF] = ACTIONS(186), + [anon_sym_AMP] = ACTIONS(186), }, [60] = { - [sym_string] = STATE(292), - [anon_sym_DQUOTE] = ACTIONS(102), - [anon_sym_DOLLAR] = ACTIONS(514), - [anon_sym_POUND] = ACTIONS(514), - [anon_sym_DASH] = ACTIONS(514), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(516), - [anon_sym_STAR] = ACTIONS(514), - [anon_sym_AT] = ACTIONS(514), - [anon_sym_QMARK] = ACTIONS(514), - [anon_sym_0] = ACTIONS(518), - [anon_sym__] = ACTIONS(518), + [aux_sym_concatenation_repeat1] = STATE(294), + [sym_file_descriptor] = ACTIONS(224), + [sym__concat] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(228), + [anon_sym_RPAREN] = ACTIONS(228), + [anon_sym_SEMI_SEMI] = ACTIONS(228), + [anon_sym_PIPE_AMP] = ACTIONS(228), + [anon_sym_AMP_AMP] = ACTIONS(228), + [anon_sym_PIPE_PIPE] = ACTIONS(228), + [anon_sym_EQ_TILDE] = ACTIONS(228), + [anon_sym_LT] = ACTIONS(228), + [anon_sym_GT] = ACTIONS(228), + [anon_sym_GT_GT] = ACTIONS(228), + [anon_sym_AMP_GT] = ACTIONS(228), + [anon_sym_AMP_GT_GT] = ACTIONS(228), + [anon_sym_LT_AMP] = ACTIONS(228), + [anon_sym_GT_AMP] = ACTIONS(228), + [anon_sym_LT_LT] = ACTIONS(228), + [anon_sym_LT_LT_DASH] = ACTIONS(228), + [anon_sym_LT_LT_LT] = ACTIONS(228), + [sym__special_characters] = ACTIONS(228), + [anon_sym_DQUOTE] = ACTIONS(228), + [anon_sym_DOLLAR] = ACTIONS(228), + [sym_raw_string] = ACTIONS(228), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(228), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(228), + [anon_sym_BQUOTE] = ACTIONS(228), + [anon_sym_LT_LPAREN] = ACTIONS(228), + [anon_sym_GT_LPAREN] = ACTIONS(228), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(228), + [anon_sym_SEMI] = ACTIONS(228), + [anon_sym_LF] = ACTIONS(228), + [anon_sym_AMP] = ACTIONS(228), }, [61] = { - [aux_sym_concatenation_repeat1] = STATE(287), - [sym_file_descriptor] = ACTIONS(244), - [sym__concat] = ACTIONS(510), - [anon_sym_PIPE] = ACTIONS(246), - [anon_sym_RPAREN] = ACTIONS(246), - [anon_sym_SEMI_SEMI] = ACTIONS(246), - [anon_sym_PIPE_AMP] = ACTIONS(246), - [anon_sym_AMP_AMP] = ACTIONS(246), - [anon_sym_PIPE_PIPE] = ACTIONS(246), - [anon_sym_LT] = ACTIONS(246), - [anon_sym_GT] = ACTIONS(246), - [anon_sym_GT_GT] = ACTIONS(246), - [anon_sym_AMP_GT] = ACTIONS(246), - [anon_sym_AMP_GT_GT] = ACTIONS(246), - [anon_sym_LT_AMP] = ACTIONS(246), - [anon_sym_GT_AMP] = ACTIONS(246), - [anon_sym_LT_LT] = ACTIONS(246), - [anon_sym_LT_LT_DASH] = ACTIONS(246), - [anon_sym_LT_LT_LT] = ACTIONS(246), - [sym__special_characters] = ACTIONS(246), - [anon_sym_DQUOTE] = ACTIONS(246), - [anon_sym_DOLLAR] = ACTIONS(246), - [sym_raw_string] = ACTIONS(246), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(246), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(246), - [anon_sym_BQUOTE] = ACTIONS(246), - [anon_sym_LT_LPAREN] = ACTIONS(246), - [anon_sym_GT_LPAREN] = ACTIONS(246), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(246), - [anon_sym_SEMI] = ACTIONS(246), - [anon_sym_LF] = ACTIONS(246), - [anon_sym_AMP] = ACTIONS(246), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(296), + [anon_sym_DQUOTE] = ACTIONS(522), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, [62] = { - [sym_subscript] = STATE(297), - [sym_variable_name] = ACTIONS(520), - [anon_sym_DOLLAR] = ACTIONS(522), + [sym_string] = STATE(299), + [anon_sym_DQUOTE] = ACTIONS(106), + [anon_sym_DOLLAR] = ACTIONS(524), [anon_sym_POUND] = ACTIONS(524), - [anon_sym_DASH] = ACTIONS(522), - [sym_comment] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(524), + [sym_comment] = ACTIONS(182), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(526), - [anon_sym_STAR] = ACTIONS(522), - [anon_sym_AT] = ACTIONS(522), - [anon_sym_QMARK] = ACTIONS(522), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(524), + [anon_sym_QMARK] = ACTIONS(524), [anon_sym_0] = ACTIONS(528), [anon_sym__] = ACTIONS(528), }, [63] = { - [sym_for_statement] = STATE(298), - [sym_while_statement] = STATE(298), - [sym_if_statement] = STATE(298), - [sym_case_statement] = STATE(298), - [sym_function_definition] = STATE(298), - [sym_subshell] = STATE(298), - [sym_pipeline] = STATE(298), - [sym_list] = STATE(298), - [sym_bracket_command] = STATE(298), - [sym_command] = STATE(298), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(299), - [sym_declaration_command] = STATE(298), - [sym_unset_command] = STATE(298), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [aux_sym_concatenation_repeat1] = STATE(294), + [sym_file_descriptor] = ACTIONS(248), + [sym__concat] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_RPAREN] = ACTIONS(250), + [anon_sym_SEMI_SEMI] = ACTIONS(250), + [anon_sym_PIPE_AMP] = ACTIONS(250), + [anon_sym_AMP_AMP] = ACTIONS(250), + [anon_sym_PIPE_PIPE] = ACTIONS(250), + [anon_sym_EQ_TILDE] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(250), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_AMP_GT] = ACTIONS(250), + [anon_sym_AMP_GT_GT] = ACTIONS(250), + [anon_sym_LT_AMP] = ACTIONS(250), + [anon_sym_GT_AMP] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT_LT_DASH] = ACTIONS(250), + [anon_sym_LT_LT_LT] = ACTIONS(250), + [sym__special_characters] = ACTIONS(250), + [anon_sym_DQUOTE] = ACTIONS(250), + [anon_sym_DOLLAR] = ACTIONS(250), + [sym_raw_string] = ACTIONS(250), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(250), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(250), + [anon_sym_BQUOTE] = ACTIONS(250), + [anon_sym_LT_LPAREN] = ACTIONS(250), + [anon_sym_GT_LPAREN] = ACTIONS(250), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(250), + [anon_sym_SEMI] = ACTIONS(250), + [anon_sym_LF] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), }, [64] = { - [sym_for_statement] = STATE(300), - [sym_while_statement] = STATE(300), - [sym_if_statement] = STATE(300), - [sym_case_statement] = STATE(300), - [sym_function_definition] = STATE(300), - [sym_subshell] = STATE(300), - [sym_pipeline] = STATE(300), - [sym_list] = STATE(300), - [sym_bracket_command] = STATE(300), - [sym_command] = STATE(300), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(301), - [sym_declaration_command] = STATE(300), - [sym_unset_command] = STATE(300), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), + [sym_subscript] = STATE(304), + [sym_variable_name] = ACTIONS(530), + [anon_sym_DOLLAR] = ACTIONS(532), + [anon_sym_POUND] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(532), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(536), + [anon_sym_STAR] = ACTIONS(532), + [anon_sym_AT] = ACTIONS(532), + [anon_sym_QMARK] = ACTIONS(532), + [anon_sym_0] = ACTIONS(538), + [anon_sym__] = ACTIONS(538), }, [65] = { - [sym_for_statement] = STATE(302), - [sym_while_statement] = STATE(302), - [sym_if_statement] = STATE(302), - [sym_case_statement] = STATE(302), - [sym_function_definition] = STATE(302), - [sym_subshell] = STATE(302), - [sym_pipeline] = STATE(302), - [sym_list] = STATE(302), - [sym_bracket_command] = STATE(302), - [sym_command] = STATE(302), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(303), - [sym_declaration_command] = STATE(302), - [sym_unset_command] = STATE(302), - [sym_subscript] = STATE(168), + [sym_for_statement] = STATE(305), + [sym_while_statement] = STATE(305), + [sym_if_statement] = STATE(305), + [sym_case_statement] = STATE(305), + [sym_function_definition] = STATE(305), + [sym_subshell] = STATE(305), + [sym_pipeline] = STATE(305), + [sym_list] = STATE(305), + [sym_command] = STATE(305), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(305), + [sym_variable_assignment] = STATE(306), + [sym_declaration_command] = STATE(305), + [sym_unset_command] = STATE(305), + [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -11158,175 +12392,299 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym_word] = ACTIONS(300), }, [66] = { - [aux_sym_concatenation_repeat1] = STATE(287), - [sym_file_descriptor] = ACTIONS(244), - [sym__concat] = ACTIONS(510), - [anon_sym_PIPE] = ACTIONS(246), - [anon_sym_RPAREN] = ACTIONS(246), - [anon_sym_SEMI_SEMI] = ACTIONS(246), - [anon_sym_LPAREN] = ACTIONS(530), - [anon_sym_PIPE_AMP] = ACTIONS(246), - [anon_sym_AMP_AMP] = ACTIONS(246), - [anon_sym_PIPE_PIPE] = ACTIONS(246), - [anon_sym_LT] = ACTIONS(246), - [anon_sym_GT] = ACTIONS(246), - [anon_sym_GT_GT] = ACTIONS(246), - [anon_sym_AMP_GT] = ACTIONS(246), - [anon_sym_AMP_GT_GT] = ACTIONS(246), - [anon_sym_LT_AMP] = ACTIONS(246), - [anon_sym_GT_AMP] = ACTIONS(246), - [anon_sym_LT_LT] = ACTIONS(246), - [anon_sym_LT_LT_DASH] = ACTIONS(246), - [anon_sym_LT_LT_LT] = ACTIONS(246), - [sym__special_characters] = ACTIONS(246), - [anon_sym_DQUOTE] = ACTIONS(246), - [anon_sym_DOLLAR] = ACTIONS(246), - [sym_raw_string] = ACTIONS(246), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(246), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(246), - [anon_sym_BQUOTE] = ACTIONS(246), - [anon_sym_LT_LPAREN] = ACTIONS(246), - [anon_sym_GT_LPAREN] = ACTIONS(246), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(246), - [anon_sym_SEMI] = ACTIONS(246), - [anon_sym_LF] = ACTIONS(246), - [anon_sym_AMP] = ACTIONS(246), + [sym_for_statement] = STATE(307), + [sym_while_statement] = STATE(307), + [sym_if_statement] = STATE(307), + [sym_case_statement] = STATE(307), + [sym_function_definition] = STATE(307), + [sym_subshell] = STATE(307), + [sym_pipeline] = STATE(307), + [sym_list] = STATE(307), + [sym_command] = STATE(307), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(307), + [sym_variable_assignment] = STATE(308), + [sym_declaration_command] = STATE(307), + [sym_unset_command] = STATE(307), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), }, [67] = { - [anon_sym_PIPE] = ACTIONS(532), - [anon_sym_RPAREN] = ACTIONS(534), - [anon_sym_SEMI_SEMI] = ACTIONS(536), - [anon_sym_PIPE_AMP] = ACTIONS(532), - [anon_sym_AMP_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(538), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LF] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(536), + [sym_for_statement] = STATE(309), + [sym_while_statement] = STATE(309), + [sym_if_statement] = STATE(309), + [sym_case_statement] = STATE(309), + [sym_function_definition] = STATE(309), + [sym_subshell] = STATE(309), + [sym_pipeline] = STATE(309), + [sym_list] = STATE(309), + [sym_command] = STATE(309), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(309), + [sym_variable_assignment] = STATE(310), + [sym_declaration_command] = STATE(309), + [sym_unset_command] = STATE(309), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), }, [68] = { - [sym_file_redirect] = STATE(202), - [sym_heredoc_redirect] = STATE(202), - [sym_herestring_redirect] = STATE(202), - [sym_concatenation] = STATE(203), - [sym_string] = STATE(313), - [sym_simple_expansion] = STATE(313), - [sym_string_expansion] = STATE(313), - [sym_expansion] = STATE(313), - [sym_command_substitution] = STATE(313), - [sym_process_substitution] = STATE(313), - [aux_sym_for_statement_repeat1] = STATE(314), - [aux_sym_while_statement_repeat1] = STATE(315), - [sym_file_descriptor] = ACTIONS(540), - [anon_sym_PIPE] = ACTIONS(344), - [anon_sym_RPAREN] = ACTIONS(344), - [anon_sym_SEMI_SEMI] = ACTIONS(344), - [anon_sym_PIPE_AMP] = ACTIONS(344), - [anon_sym_AMP_AMP] = ACTIONS(344), - [anon_sym_PIPE_PIPE] = ACTIONS(344), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_GT_GT] = ACTIONS(542), - [anon_sym_AMP_GT] = ACTIONS(542), - [anon_sym_AMP_GT_GT] = ACTIONS(542), - [anon_sym_LT_AMP] = ACTIONS(542), - [anon_sym_GT_AMP] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(348), - [anon_sym_LT_LT_DASH] = ACTIONS(348), - [anon_sym_LT_LT_LT] = ACTIONS(544), - [sym__special_characters] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_DOLLAR] = ACTIONS(550), - [sym_raw_string] = ACTIONS(552), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(554), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(556), - [anon_sym_BQUOTE] = ACTIONS(558), - [anon_sym_LT_LPAREN] = ACTIONS(560), - [anon_sym_GT_LPAREN] = ACTIONS(560), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(344), - [anon_sym_LF] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(344), + [aux_sym_concatenation_repeat1] = STATE(294), + [sym_file_descriptor] = ACTIONS(248), + [sym__concat] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(250), + [anon_sym_RPAREN] = ACTIONS(250), + [anon_sym_SEMI_SEMI] = ACTIONS(250), + [anon_sym_LPAREN] = ACTIONS(540), + [anon_sym_PIPE_AMP] = ACTIONS(250), + [anon_sym_AMP_AMP] = ACTIONS(250), + [anon_sym_PIPE_PIPE] = ACTIONS(250), + [anon_sym_EQ_TILDE] = ACTIONS(250), + [anon_sym_LT] = ACTIONS(250), + [anon_sym_GT] = ACTIONS(250), + [anon_sym_GT_GT] = ACTIONS(250), + [anon_sym_AMP_GT] = ACTIONS(250), + [anon_sym_AMP_GT_GT] = ACTIONS(250), + [anon_sym_LT_AMP] = ACTIONS(250), + [anon_sym_GT_AMP] = ACTIONS(250), + [anon_sym_LT_LT] = ACTIONS(250), + [anon_sym_LT_LT_DASH] = ACTIONS(250), + [anon_sym_LT_LT_LT] = ACTIONS(250), + [sym__special_characters] = ACTIONS(250), + [anon_sym_DQUOTE] = ACTIONS(250), + [anon_sym_DOLLAR] = ACTIONS(250), + [sym_raw_string] = ACTIONS(250), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(250), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(250), + [anon_sym_BQUOTE] = ACTIONS(250), + [anon_sym_LT_LPAREN] = ACTIONS(250), + [anon_sym_GT_LPAREN] = ACTIONS(250), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(250), + [anon_sym_SEMI] = ACTIONS(250), + [anon_sym_LF] = ACTIONS(250), + [anon_sym_AMP] = ACTIONS(250), }, [69] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(532), - [anon_sym_RPAREN] = ACTIONS(534), - [anon_sym_SEMI_SEMI] = ACTIONS(536), - [anon_sym_PIPE_AMP] = ACTIONS(532), - [anon_sym_AMP_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_AMP_GT] = ACTIONS(370), - [anon_sym_AMP_GT_GT] = ACTIONS(370), - [anon_sym_LT_AMP] = ACTIONS(370), - [anon_sym_GT_AMP] = ACTIONS(370), - [sym__special_characters] = ACTIONS(370), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_DOLLAR] = ACTIONS(370), - [sym_raw_string] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(370), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(370), - [anon_sym_BQUOTE] = ACTIONS(370), - [anon_sym_LT_LPAREN] = ACTIONS(370), - [anon_sym_GT_LPAREN] = ACTIONS(370), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(370), - [anon_sym_SEMI] = ACTIONS(536), - [anon_sym_LF] = ACTIONS(536), - [anon_sym_AMP] = ACTIONS(536), + [anon_sym_PIPE] = ACTIONS(542), + [anon_sym_RPAREN] = ACTIONS(544), + [anon_sym_SEMI_SEMI] = ACTIONS(546), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(548), + [anon_sym_PIPE_PIPE] = ACTIONS(548), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LF] = ACTIONS(546), + [anon_sym_AMP] = ACTIONS(546), }, [70] = { - [sym__assignment] = STATE(37), - [anon_sym_EQ] = ACTIONS(472), - [anon_sym_PLUS_EQ] = ACTIONS(472), - [sym_comment] = ACTIONS(56), + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [sym_concatenation] = STATE(208), + [sym_string] = STATE(321), + [sym_simple_expansion] = STATE(321), + [sym_string_expansion] = STATE(321), + [sym_expansion] = STATE(321), + [sym_command_substitution] = STATE(321), + [sym_process_substitution] = STATE(321), + [aux_sym_while_statement_repeat1] = STATE(322), + [aux_sym_command_repeat2] = STATE(323), + [sym_file_descriptor] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(352), + [anon_sym_RPAREN] = ACTIONS(352), + [anon_sym_SEMI_SEMI] = ACTIONS(352), + [anon_sym_PIPE_AMP] = ACTIONS(352), + [anon_sym_AMP_AMP] = ACTIONS(352), + [anon_sym_PIPE_PIPE] = ACTIONS(352), + [anon_sym_EQ_TILDE] = ACTIONS(552), + [anon_sym_LT] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_AMP_GT] = ACTIONS(554), + [anon_sym_AMP_GT_GT] = ACTIONS(554), + [anon_sym_LT_AMP] = ACTIONS(554), + [anon_sym_GT_AMP] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(358), + [anon_sym_LT_LT_DASH] = ACTIONS(358), + [anon_sym_LT_LT_LT] = ACTIONS(556), + [sym__special_characters] = ACTIONS(558), + [anon_sym_DQUOTE] = ACTIONS(560), + [anon_sym_DOLLAR] = ACTIONS(562), + [sym_raw_string] = ACTIONS(564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(566), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(568), + [anon_sym_BQUOTE] = ACTIONS(570), + [anon_sym_LT_LPAREN] = ACTIONS(572), + [anon_sym_GT_LPAREN] = ACTIONS(572), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(564), + [anon_sym_SEMI] = ACTIONS(352), + [anon_sym_LF] = ACTIONS(352), + [anon_sym_AMP] = ACTIONS(352), }, [71] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(542), + [anon_sym_RPAREN] = ACTIONS(544), + [anon_sym_SEMI_SEMI] = ACTIONS(546), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(548), + [anon_sym_PIPE_PIPE] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(380), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(380), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(380), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(546), + [anon_sym_LF] = ACTIONS(546), + [anon_sym_AMP] = ACTIONS(546), + }, + [72] = { + [sym__assignment] = STATE(37), + [anon_sym_EQ] = ACTIONS(482), + [anon_sym_PLUS_EQ] = ACTIONS(482), + [sym_comment] = ACTIONS(56), + }, + [73] = { [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(316), - [sym_while_statement] = STATE(316), - [sym_if_statement] = STATE(316), - [sym_case_statement] = STATE(316), - [sym_function_definition] = STATE(316), - [sym_subshell] = STATE(316), - [sym_pipeline] = STATE(316), - [sym_list] = STATE(316), - [sym_bracket_command] = STATE(316), - [sym_command] = STATE(316), - [sym_command_name] = STATE(68), - [sym_variable_assignment] = STATE(317), - [sym_declaration_command] = STATE(316), - [sym_unset_command] = STATE(316), - [sym_subscript] = STATE(70), + [sym_for_statement] = STATE(324), + [sym_while_statement] = STATE(324), + [sym_if_statement] = STATE(324), + [sym_case_statement] = STATE(324), + [sym_function_definition] = STATE(324), + [sym_subshell] = STATE(324), + [sym_pipeline] = STATE(324), + [sym_list] = STATE(324), + [sym_command] = STATE(324), + [sym_command_name] = STATE(70), + [sym_bracket_command] = STATE(324), + [sym_variable_assignment] = STATE(325), + [sym_declaration_command] = STATE(324), + [sym_unset_command] = STATE(324), + [sym_subscript] = STATE(72), [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(318), - [aux_sym_command_repeat1] = STATE(72), + [sym_string] = STATE(63), + [sym_simple_expansion] = STATE(63), + [sym_string_expansion] = STATE(63), + [sym_expansion] = STATE(63), + [sym_command_substitution] = STATE(63), + [sym_process_substitution] = STATE(63), + [aux_sym_program_repeat1] = STATE(326), + [aux_sym_command_repeat1] = STATE(74), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(90), [anon_sym_for] = ACTIONS(16), @@ -11335,15 +12693,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(94), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(96), - [anon_sym_typeset] = ACTIONS(96), - [anon_sym_export] = ACTIONS(96), - [anon_sym_readonly] = ACTIONS(96), - [anon_sym_local] = ACTIONS(96), - [anon_sym_unset] = ACTIONS(98), - [anon_sym_unsetenv] = ACTIONS(98), + [anon_sym_LBRACK] = ACTIONS(96), + [anon_sym_LBRACK_LBRACK] = ACTIONS(98), + [anon_sym_declare] = ACTIONS(100), + [anon_sym_typeset] = ACTIONS(100), + [anon_sym_export] = ACTIONS(100), + [anon_sym_readonly] = ACTIONS(100), + [anon_sym_local] = ACTIONS(100), + [anon_sym_unset] = ACTIONS(102), + [anon_sym_unsetenv] = ACTIONS(102), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -11351,312 +12709,190 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(100), - [anon_sym_DQUOTE] = ACTIONS(102), - [anon_sym_DOLLAR] = ACTIONS(104), - [sym_raw_string] = ACTIONS(106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(108), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(110), - [anon_sym_BQUOTE] = ACTIONS(112), - [anon_sym_LT_LPAREN] = ACTIONS(114), - [anon_sym_GT_LPAREN] = ACTIONS(114), + [sym__special_characters] = ACTIONS(104), + [anon_sym_DQUOTE] = ACTIONS(106), + [anon_sym_DOLLAR] = ACTIONS(108), + [sym_raw_string] = ACTIONS(110), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(112), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(114), + [anon_sym_BQUOTE] = ACTIONS(116), + [anon_sym_LT_LPAREN] = ACTIONS(118), + [anon_sym_GT_LPAREN] = ACTIONS(118), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(116), - }, - [72] = { - [sym_command_name] = STATE(319), - [sym_variable_assignment] = STATE(30), - [sym_subscript] = STATE(209), - [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(210), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(376), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(102), - [anon_sym_DOLLAR] = ACTIONS(104), - [sym_raw_string] = ACTIONS(106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(108), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(110), - [anon_sym_BQUOTE] = ACTIONS(112), - [anon_sym_LT_LPAREN] = ACTIONS(114), - [anon_sym_GT_LPAREN] = ACTIONS(114), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(564), - }, - [73] = { - [sym_concatenation] = STATE(322), - [sym_string] = STATE(321), - [sym_simple_expansion] = STATE(321), - [sym_string_expansion] = STATE(321), - [sym_expansion] = STATE(321), - [sym_command_substitution] = STATE(321), - [sym_process_substitution] = STATE(321), - [sym__special_characters] = ACTIONS(566), - [anon_sym_DQUOTE] = ACTIONS(568), - [anon_sym_DOLLAR] = ACTIONS(570), - [sym_raw_string] = ACTIONS(572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), - [anon_sym_BQUOTE] = ACTIONS(578), - [anon_sym_LT_LPAREN] = ACTIONS(580), - [anon_sym_GT_LPAREN] = ACTIONS(580), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(572), - [sym_regex] = ACTIONS(582), + [sym_word] = ACTIONS(120), }, [74] = { - [aux_sym_concatenation_repeat1] = STATE(324), - [sym__concat] = ACTIONS(584), - [anon_sym_EQ_TILDE] = ACTIONS(586), - [anon_sym_RBRACK] = ACTIONS(588), - [sym__special_characters] = ACTIONS(590), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_DOLLAR] = ACTIONS(586), - [sym_raw_string] = ACTIONS(588), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(588), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(588), - [anon_sym_BQUOTE] = ACTIONS(588), - [anon_sym_LT_LPAREN] = ACTIONS(588), - [anon_sym_GT_LPAREN] = ACTIONS(588), + [sym_command_name] = STATE(327), + [sym_variable_assignment] = STATE(30), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(63), + [sym_simple_expansion] = STATE(63), + [sym_string_expansion] = STATE(63), + [sym_expansion] = STATE(63), + [sym_command_substitution] = STATE(63), + [sym_process_substitution] = STATE(63), + [aux_sym_command_repeat1] = STATE(215), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(386), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(574), + [anon_sym_DQUOTE] = ACTIONS(106), + [anon_sym_DOLLAR] = ACTIONS(108), + [sym_raw_string] = ACTIONS(110), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(112), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(114), + [anon_sym_BQUOTE] = ACTIONS(116), + [anon_sym_LT_LPAREN] = ACTIONS(118), + [anon_sym_GT_LPAREN] = ACTIONS(118), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(590), + [sym_word] = ACTIONS(576), }, [75] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(326), - [anon_sym_DQUOTE] = ACTIONS(592), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym_concatenation] = STATE(330), + [sym_string] = STATE(329), + [sym_simple_expansion] = STATE(329), + [sym_string_expansion] = STATE(329), + [sym_expansion] = STATE(329), + [sym_command_substitution] = STATE(329), + [sym_process_substitution] = STATE(329), + [sym__special_characters] = ACTIONS(578), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_DOLLAR] = ACTIONS(582), + [sym_raw_string] = ACTIONS(584), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(586), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(588), + [anon_sym_BQUOTE] = ACTIONS(590), + [anon_sym_LT_LPAREN] = ACTIONS(592), + [anon_sym_GT_LPAREN] = ACTIONS(592), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(584), + [sym_regex] = ACTIONS(594), }, [76] = { - [sym_string] = STATE(329), - [anon_sym_DQUOTE] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(594), - [anon_sym_POUND] = ACTIONS(594), - [anon_sym_DASH] = ACTIONS(594), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(596), - [anon_sym_STAR] = ACTIONS(594), - [anon_sym_AT] = ACTIONS(594), - [anon_sym_QMARK] = ACTIONS(594), - [anon_sym_0] = ACTIONS(598), - [anon_sym__] = ACTIONS(598), + [aux_sym_concatenation_repeat1] = STATE(332), + [sym__concat] = ACTIONS(596), + [anon_sym_EQ_TILDE] = ACTIONS(598), + [anon_sym_RBRACK] = ACTIONS(600), + [sym__special_characters] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(600), + [anon_sym_DOLLAR] = ACTIONS(598), + [sym_raw_string] = ACTIONS(600), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(600), + [anon_sym_LT_LPAREN] = ACTIONS(600), + [anon_sym_GT_LPAREN] = ACTIONS(600), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(602), }, [77] = { - [aux_sym_concatenation_repeat1] = STATE(324), - [sym__concat] = ACTIONS(584), - [anon_sym_EQ_TILDE] = ACTIONS(600), - [anon_sym_RBRACK] = ACTIONS(602), - [sym__special_characters] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(600), - [sym_raw_string] = ACTIONS(602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(602), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(602), - [anon_sym_BQUOTE] = ACTIONS(602), - [anon_sym_LT_LPAREN] = ACTIONS(602), - [anon_sym_GT_LPAREN] = ACTIONS(602), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(604), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(334), + [anon_sym_DQUOTE] = ACTIONS(604), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, [78] = { - [sym_subscript] = STATE(334), - [sym_variable_name] = ACTIONS(606), - [anon_sym_DOLLAR] = ACTIONS(608), - [anon_sym_POUND] = ACTIONS(610), - [anon_sym_DASH] = ACTIONS(608), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(612), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_AT] = ACTIONS(608), - [anon_sym_QMARK] = ACTIONS(608), - [anon_sym_0] = ACTIONS(614), - [anon_sym__] = ACTIONS(614), + [sym_string] = STATE(337), + [anon_sym_DQUOTE] = ACTIONS(126), + [anon_sym_DOLLAR] = ACTIONS(606), + [anon_sym_POUND] = ACTIONS(606), + [anon_sym_DASH] = ACTIONS(606), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(608), + [anon_sym_STAR] = ACTIONS(606), + [anon_sym_AT] = ACTIONS(606), + [anon_sym_QMARK] = ACTIONS(606), + [anon_sym_0] = ACTIONS(610), + [anon_sym__] = ACTIONS(610), }, [79] = { - [sym_for_statement] = STATE(335), - [sym_while_statement] = STATE(335), - [sym_if_statement] = STATE(335), - [sym_case_statement] = STATE(335), - [sym_function_definition] = STATE(335), - [sym_subshell] = STATE(335), - [sym_pipeline] = STATE(335), - [sym_list] = STATE(335), - [sym_bracket_command] = STATE(335), - [sym_command] = STATE(335), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(336), - [sym_declaration_command] = STATE(335), - [sym_unset_command] = STATE(335), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [aux_sym_concatenation_repeat1] = STATE(332), + [sym__concat] = ACTIONS(596), + [anon_sym_EQ_TILDE] = ACTIONS(612), + [anon_sym_RBRACK] = ACTIONS(614), + [sym__special_characters] = ACTIONS(616), + [anon_sym_DQUOTE] = ACTIONS(614), + [anon_sym_DOLLAR] = ACTIONS(612), + [sym_raw_string] = ACTIONS(614), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(614), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(614), + [anon_sym_BQUOTE] = ACTIONS(614), + [anon_sym_LT_LPAREN] = ACTIONS(614), + [anon_sym_GT_LPAREN] = ACTIONS(614), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym_word] = ACTIONS(616), }, [80] = { - [sym_for_statement] = STATE(337), - [sym_while_statement] = STATE(337), - [sym_if_statement] = STATE(337), - [sym_case_statement] = STATE(337), - [sym_function_definition] = STATE(337), - [sym_subshell] = STATE(337), - [sym_pipeline] = STATE(337), - [sym_list] = STATE(337), - [sym_bracket_command] = STATE(337), - [sym_command] = STATE(337), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(338), - [sym_declaration_command] = STATE(337), - [sym_unset_command] = STATE(337), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), + [sym_subscript] = STATE(342), + [sym_variable_name] = ACTIONS(618), + [anon_sym_DOLLAR] = ACTIONS(620), + [anon_sym_POUND] = ACTIONS(622), + [anon_sym_DASH] = ACTIONS(620), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(624), + [anon_sym_STAR] = ACTIONS(620), + [anon_sym_AT] = ACTIONS(620), + [anon_sym_QMARK] = ACTIONS(620), + [anon_sym_0] = ACTIONS(626), + [anon_sym__] = ACTIONS(626), }, [81] = { - [sym_for_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_function_definition] = STATE(339), - [sym_subshell] = STATE(339), - [sym_pipeline] = STATE(339), - [sym_list] = STATE(339), - [sym_bracket_command] = STATE(339), - [sym_command] = STATE(339), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(340), - [sym_declaration_command] = STATE(339), - [sym_unset_command] = STATE(339), - [sym_subscript] = STATE(168), + [sym_for_statement] = STATE(343), + [sym_while_statement] = STATE(343), + [sym_if_statement] = STATE(343), + [sym_case_statement] = STATE(343), + [sym_function_definition] = STATE(343), + [sym_subshell] = STATE(343), + [sym_pipeline] = STATE(343), + [sym_list] = STATE(343), + [sym_command] = STATE(343), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(343), + [sym_variable_assignment] = STATE(344), + [sym_declaration_command] = STATE(343), + [sym_unset_command] = STATE(343), + [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -11664,316 +12900,316 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym_word] = ACTIONS(300), }, [82] = { - [anon_sym_EQ_TILDE] = ACTIONS(600), - [anon_sym_RBRACK] = ACTIONS(602), - [sym__special_characters] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(600), - [sym_raw_string] = ACTIONS(602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(602), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(602), - [anon_sym_BQUOTE] = ACTIONS(602), - [anon_sym_LT_LPAREN] = ACTIONS(602), - [anon_sym_GT_LPAREN] = ACTIONS(602), + [sym_for_statement] = STATE(345), + [sym_while_statement] = STATE(345), + [sym_if_statement] = STATE(345), + [sym_case_statement] = STATE(345), + [sym_function_definition] = STATE(345), + [sym_subshell] = STATE(345), + [sym_pipeline] = STATE(345), + [sym_list] = STATE(345), + [sym_command] = STATE(345), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(345), + [sym_variable_assignment] = STATE(346), + [sym_declaration_command] = STATE(345), + [sym_unset_command] = STATE(345), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(604), + [sym_word] = ACTIONS(332), }, [83] = { - [sym_concatenation] = STATE(82), - [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), - [aux_sym_bracket_command_repeat1] = STATE(342), - [anon_sym_EQ_TILDE] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(616), - [sym__special_characters] = ACTIONS(618), - [anon_sym_DQUOTE] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [sym_raw_string] = ACTIONS(126), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(128), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(130), - [anon_sym_BQUOTE] = ACTIONS(132), - [anon_sym_LT_LPAREN] = ACTIONS(134), - [anon_sym_GT_LPAREN] = ACTIONS(134), + [sym_for_statement] = STATE(347), + [sym_while_statement] = STATE(347), + [sym_if_statement] = STATE(347), + [sym_case_statement] = STATE(347), + [sym_function_definition] = STATE(347), + [sym_subshell] = STATE(347), + [sym_pipeline] = STATE(347), + [sym_list] = STATE(347), + [sym_command] = STATE(347), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(347), + [sym_variable_assignment] = STATE(348), + [sym_declaration_command] = STATE(347), + [sym_unset_command] = STATE(347), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(136), + [sym_word] = ACTIONS(300), }, [84] = { - [sym_concatenation] = STATE(345), - [sym_string] = STATE(344), - [sym_simple_expansion] = STATE(344), - [sym_string_expansion] = STATE(344), - [sym_expansion] = STATE(344), - [sym_command_substitution] = STATE(344), - [sym_process_substitution] = STATE(344), - [sym__special_characters] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(622), - [anon_sym_DOLLAR] = ACTIONS(624), - [sym_raw_string] = ACTIONS(626), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(628), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(630), - [anon_sym_BQUOTE] = ACTIONS(632), - [anon_sym_LT_LPAREN] = ACTIONS(634), - [anon_sym_GT_LPAREN] = ACTIONS(634), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(626), - [sym_regex] = ACTIONS(636), + [anon_sym_EQ_TILDE] = ACTIONS(612), + [anon_sym_RBRACK] = ACTIONS(614), + [sym__special_characters] = ACTIONS(616), + [anon_sym_DQUOTE] = ACTIONS(614), + [anon_sym_DOLLAR] = ACTIONS(612), + [sym_raw_string] = ACTIONS(614), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(614), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(614), + [anon_sym_BQUOTE] = ACTIONS(614), + [anon_sym_LT_LPAREN] = ACTIONS(614), + [anon_sym_GT_LPAREN] = ACTIONS(614), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(616), }, [85] = { - [aux_sym_concatenation_repeat1] = STATE(347), - [sym__concat] = ACTIONS(638), - [anon_sym_EQ_TILDE] = ACTIONS(586), - [anon_sym_RBRACK_RBRACK] = ACTIONS(588), - [sym__special_characters] = ACTIONS(590), - [anon_sym_DQUOTE] = ACTIONS(588), - [anon_sym_DOLLAR] = ACTIONS(586), - [sym_raw_string] = ACTIONS(588), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(588), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(588), - [anon_sym_BQUOTE] = ACTIONS(588), - [anon_sym_LT_LPAREN] = ACTIONS(588), - [anon_sym_GT_LPAREN] = ACTIONS(588), + [sym_concatenation] = STATE(84), + [sym_string] = STATE(79), + [sym_simple_expansion] = STATE(79), + [sym_string_expansion] = STATE(79), + [sym_expansion] = STATE(79), + [sym_command_substitution] = STATE(79), + [sym_process_substitution] = STATE(79), + [aux_sym_command_repeat2] = STATE(350), + [anon_sym_EQ_TILDE] = ACTIONS(122), + [anon_sym_RBRACK] = ACTIONS(628), + [sym__special_characters] = ACTIONS(630), + [anon_sym_DQUOTE] = ACTIONS(126), + [anon_sym_DOLLAR] = ACTIONS(128), + [sym_raw_string] = ACTIONS(130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(132), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(134), + [anon_sym_BQUOTE] = ACTIONS(136), + [anon_sym_LT_LPAREN] = ACTIONS(138), + [anon_sym_GT_LPAREN] = ACTIONS(138), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(590), + [sym_word] = ACTIONS(140), }, [86] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(349), - [anon_sym_DQUOTE] = ACTIONS(640), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym_concatenation] = STATE(353), + [sym_string] = STATE(352), + [sym_simple_expansion] = STATE(352), + [sym_string_expansion] = STATE(352), + [sym_expansion] = STATE(352), + [sym_command_substitution] = STATE(352), + [sym_process_substitution] = STATE(352), + [sym__special_characters] = ACTIONS(632), + [anon_sym_DQUOTE] = ACTIONS(634), + [anon_sym_DOLLAR] = ACTIONS(636), + [sym_raw_string] = ACTIONS(638), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(640), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(642), + [anon_sym_BQUOTE] = ACTIONS(644), + [anon_sym_LT_LPAREN] = ACTIONS(646), + [anon_sym_GT_LPAREN] = ACTIONS(646), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(638), + [sym_regex] = ACTIONS(648), }, [87] = { - [sym_string] = STATE(352), - [anon_sym_DQUOTE] = ACTIONS(142), - [anon_sym_DOLLAR] = ACTIONS(642), - [anon_sym_POUND] = ACTIONS(642), - [anon_sym_DASH] = ACTIONS(642), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(642), - [anon_sym_AT] = ACTIONS(642), - [anon_sym_QMARK] = ACTIONS(642), - [anon_sym_0] = ACTIONS(646), - [anon_sym__] = ACTIONS(646), + [aux_sym_concatenation_repeat1] = STATE(355), + [sym__concat] = ACTIONS(650), + [anon_sym_EQ_TILDE] = ACTIONS(598), + [anon_sym_RBRACK_RBRACK] = ACTIONS(600), + [sym__special_characters] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(600), + [anon_sym_DOLLAR] = ACTIONS(598), + [sym_raw_string] = ACTIONS(600), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(600), + [anon_sym_LT_LPAREN] = ACTIONS(600), + [anon_sym_GT_LPAREN] = ACTIONS(600), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(602), }, [88] = { - [aux_sym_concatenation_repeat1] = STATE(347), - [sym__concat] = ACTIONS(638), - [anon_sym_EQ_TILDE] = ACTIONS(600), - [anon_sym_RBRACK_RBRACK] = ACTIONS(602), - [sym__special_characters] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(600), - [sym_raw_string] = ACTIONS(602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(602), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(602), - [anon_sym_BQUOTE] = ACTIONS(602), - [anon_sym_LT_LPAREN] = ACTIONS(602), - [anon_sym_GT_LPAREN] = ACTIONS(602), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(604), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(357), + [anon_sym_DQUOTE] = ACTIONS(652), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, [89] = { - [sym_subscript] = STATE(357), - [sym_variable_name] = ACTIONS(648), - [anon_sym_DOLLAR] = ACTIONS(650), - [anon_sym_POUND] = ACTIONS(652), - [anon_sym_DASH] = ACTIONS(650), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(654), - [anon_sym_STAR] = ACTIONS(650), - [anon_sym_AT] = ACTIONS(650), - [anon_sym_QMARK] = ACTIONS(650), - [anon_sym_0] = ACTIONS(656), - [anon_sym__] = ACTIONS(656), + [sym_string] = STATE(360), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(654), + [anon_sym_POUND] = ACTIONS(654), + [anon_sym_DASH] = ACTIONS(654), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(656), + [anon_sym_STAR] = ACTIONS(654), + [anon_sym_AT] = ACTIONS(654), + [anon_sym_QMARK] = ACTIONS(654), + [anon_sym_0] = ACTIONS(658), + [anon_sym__] = ACTIONS(658), }, [90] = { - [sym_for_statement] = STATE(358), - [sym_while_statement] = STATE(358), - [sym_if_statement] = STATE(358), - [sym_case_statement] = STATE(358), - [sym_function_definition] = STATE(358), - [sym_subshell] = STATE(358), - [sym_pipeline] = STATE(358), - [sym_list] = STATE(358), - [sym_bracket_command] = STATE(358), - [sym_command] = STATE(358), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(359), - [sym_declaration_command] = STATE(358), - [sym_unset_command] = STATE(358), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [aux_sym_concatenation_repeat1] = STATE(355), + [sym__concat] = ACTIONS(650), + [anon_sym_EQ_TILDE] = ACTIONS(612), + [anon_sym_RBRACK_RBRACK] = ACTIONS(614), + [sym__special_characters] = ACTIONS(616), + [anon_sym_DQUOTE] = ACTIONS(614), + [anon_sym_DOLLAR] = ACTIONS(612), + [sym_raw_string] = ACTIONS(614), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(614), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(614), + [anon_sym_BQUOTE] = ACTIONS(614), + [anon_sym_LT_LPAREN] = ACTIONS(614), + [anon_sym_GT_LPAREN] = ACTIONS(614), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym_word] = ACTIONS(616), }, [91] = { - [sym_for_statement] = STATE(360), - [sym_while_statement] = STATE(360), - [sym_if_statement] = STATE(360), - [sym_case_statement] = STATE(360), - [sym_function_definition] = STATE(360), - [sym_subshell] = STATE(360), - [sym_pipeline] = STATE(360), - [sym_list] = STATE(360), - [sym_bracket_command] = STATE(360), - [sym_command] = STATE(360), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(361), - [sym_declaration_command] = STATE(360), - [sym_unset_command] = STATE(360), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), + [sym_subscript] = STATE(365), + [sym_variable_name] = ACTIONS(660), + [anon_sym_DOLLAR] = ACTIONS(662), + [anon_sym_POUND] = ACTIONS(664), + [anon_sym_DASH] = ACTIONS(662), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(666), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_AT] = ACTIONS(662), + [anon_sym_QMARK] = ACTIONS(662), + [anon_sym_0] = ACTIONS(668), + [anon_sym__] = ACTIONS(668), }, [92] = { - [sym_for_statement] = STATE(362), - [sym_while_statement] = STATE(362), - [sym_if_statement] = STATE(362), - [sym_case_statement] = STATE(362), - [sym_function_definition] = STATE(362), - [sym_subshell] = STATE(362), - [sym_pipeline] = STATE(362), - [sym_list] = STATE(362), - [sym_bracket_command] = STATE(362), - [sym_command] = STATE(362), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(363), - [sym_declaration_command] = STATE(362), - [sym_unset_command] = STATE(362), - [sym_subscript] = STATE(168), + [sym_for_statement] = STATE(366), + [sym_while_statement] = STATE(366), + [sym_if_statement] = STATE(366), + [sym_case_statement] = STATE(366), + [sym_function_definition] = STATE(366), + [sym_subshell] = STATE(366), + [sym_pipeline] = STATE(366), + [sym_list] = STATE(366), + [sym_command] = STATE(366), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(366), + [sym_variable_assignment] = STATE(367), + [sym_declaration_command] = STATE(366), + [sym_unset_command] = STATE(366), + [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -11981,318 +13217,318 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym_word] = ACTIONS(300), }, [93] = { - [anon_sym_EQ_TILDE] = ACTIONS(600), - [anon_sym_RBRACK_RBRACK] = ACTIONS(602), - [sym__special_characters] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(600), - [sym_raw_string] = ACTIONS(602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(602), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(602), - [anon_sym_BQUOTE] = ACTIONS(602), - [anon_sym_LT_LPAREN] = ACTIONS(602), - [anon_sym_GT_LPAREN] = ACTIONS(602), + [sym_for_statement] = STATE(368), + [sym_while_statement] = STATE(368), + [sym_if_statement] = STATE(368), + [sym_case_statement] = STATE(368), + [sym_function_definition] = STATE(368), + [sym_subshell] = STATE(368), + [sym_pipeline] = STATE(368), + [sym_list] = STATE(368), + [sym_command] = STATE(368), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(368), + [sym_variable_assignment] = STATE(369), + [sym_declaration_command] = STATE(368), + [sym_unset_command] = STATE(368), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(604), + [sym_word] = ACTIONS(332), }, [94] = { - [sym_concatenation] = STATE(93), - [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), - [aux_sym_bracket_command_repeat1] = STATE(364), - [anon_sym_EQ_TILDE] = ACTIONS(138), - [anon_sym_RBRACK_RBRACK] = ACTIONS(616), - [sym__special_characters] = ACTIONS(658), - [anon_sym_DQUOTE] = ACTIONS(142), - [anon_sym_DOLLAR] = ACTIONS(144), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(148), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(150), - [anon_sym_BQUOTE] = ACTIONS(152), - [anon_sym_LT_LPAREN] = ACTIONS(154), - [anon_sym_GT_LPAREN] = ACTIONS(154), + [sym_for_statement] = STATE(370), + [sym_while_statement] = STATE(370), + [sym_if_statement] = STATE(370), + [sym_case_statement] = STATE(370), + [sym_function_definition] = STATE(370), + [sym_subshell] = STATE(370), + [sym_pipeline] = STATE(370), + [sym_list] = STATE(370), + [sym_command] = STATE(370), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(370), + [sym_variable_assignment] = STATE(371), + [sym_declaration_command] = STATE(370), + [sym_unset_command] = STATE(370), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(156), + [sym_word] = ACTIONS(300), }, [95] = { - [sym__assignment] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(660), - [anon_sym_PLUS_EQ] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(612), + [anon_sym_RBRACK_RBRACK] = ACTIONS(614), + [sym__special_characters] = ACTIONS(616), + [anon_sym_DQUOTE] = ACTIONS(614), + [anon_sym_DOLLAR] = ACTIONS(612), + [sym_raw_string] = ACTIONS(614), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(614), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(614), + [anon_sym_BQUOTE] = ACTIONS(614), + [anon_sym_LT_LPAREN] = ACTIONS(614), + [anon_sym_GT_LPAREN] = ACTIONS(614), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(616), }, [96] = { - [aux_sym_concatenation_repeat1] = STATE(368), - [sym__concat] = ACTIONS(662), - [sym_variable_name] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_SEMI_SEMI] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [sym__special_characters] = ACTIONS(666), - [anon_sym_DQUOTE] = ACTIONS(666), - [anon_sym_DOLLAR] = ACTIONS(666), - [sym_raw_string] = ACTIONS(666), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(666), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(666), - [anon_sym_BQUOTE] = ACTIONS(666), - [anon_sym_LT_LPAREN] = ACTIONS(666), - [anon_sym_GT_LPAREN] = ACTIONS(666), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(666), - [sym_word] = ACTIONS(666), - [anon_sym_SEMI] = ACTIONS(666), - [anon_sym_LF] = ACTIONS(666), - [anon_sym_AMP] = ACTIONS(666), + [sym_concatenation] = STATE(95), + [sym_string] = STATE(90), + [sym_simple_expansion] = STATE(90), + [sym_string_expansion] = STATE(90), + [sym_expansion] = STATE(90), + [sym_command_substitution] = STATE(90), + [sym_process_substitution] = STATE(90), + [aux_sym_command_repeat2] = STATE(372), + [anon_sym_EQ_TILDE] = ACTIONS(142), + [anon_sym_RBRACK_RBRACK] = ACTIONS(628), + [sym__special_characters] = ACTIONS(670), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [sym_raw_string] = ACTIONS(150), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(156), + [anon_sym_LT_LPAREN] = ACTIONS(158), + [anon_sym_GT_LPAREN] = ACTIONS(158), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(160), }, [97] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(370), - [anon_sym_DQUOTE] = ACTIONS(668), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym__assignment] = STATE(374), + [anon_sym_LBRACK] = ACTIONS(64), + [anon_sym_EQ] = ACTIONS(672), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [sym_comment] = ACTIONS(56), }, [98] = { - [sym_string] = STATE(373), - [anon_sym_DQUOTE] = ACTIONS(670), - [anon_sym_DOLLAR] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(674), - [anon_sym_STAR] = ACTIONS(672), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_QMARK] = ACTIONS(672), - [anon_sym_0] = ACTIONS(676), - [anon_sym__] = ACTIONS(676), + [aux_sym_concatenation_repeat1] = STATE(376), + [sym__concat] = ACTIONS(674), + [sym_variable_name] = ACTIONS(676), + [anon_sym_PIPE] = ACTIONS(678), + [anon_sym_SEMI_SEMI] = ACTIONS(678), + [anon_sym_PIPE_AMP] = ACTIONS(678), + [anon_sym_AMP_AMP] = ACTIONS(678), + [anon_sym_PIPE_PIPE] = ACTIONS(678), + [sym__special_characters] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(678), + [anon_sym_DOLLAR] = ACTIONS(678), + [sym_raw_string] = ACTIONS(678), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(678), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(678), + [anon_sym_BQUOTE] = ACTIONS(678), + [anon_sym_LT_LPAREN] = ACTIONS(678), + [anon_sym_GT_LPAREN] = ACTIONS(678), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(678), + [sym_word] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(678), + [anon_sym_LF] = ACTIONS(678), + [anon_sym_AMP] = ACTIONS(678), }, [99] = { - [aux_sym_concatenation_repeat1] = STATE(368), - [sym__concat] = ACTIONS(662), - [sym_variable_name] = ACTIONS(678), - [anon_sym_PIPE] = ACTIONS(680), - [anon_sym_SEMI_SEMI] = ACTIONS(680), - [anon_sym_PIPE_AMP] = ACTIONS(680), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [sym__special_characters] = ACTIONS(680), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(378), [anon_sym_DQUOTE] = ACTIONS(680), - [anon_sym_DOLLAR] = ACTIONS(680), - [sym_raw_string] = ACTIONS(680), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(680), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(680), - [anon_sym_BQUOTE] = ACTIONS(680), - [anon_sym_LT_LPAREN] = ACTIONS(680), - [anon_sym_GT_LPAREN] = ACTIONS(680), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(680), - [sym_word] = ACTIONS(680), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LF] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(680), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, [100] = { - [sym_subscript] = STATE(378), - [sym_variable_name] = ACTIONS(682), + [sym_string] = STATE(381), + [anon_sym_DQUOTE] = ACTIONS(682), [anon_sym_DOLLAR] = ACTIONS(684), - [anon_sym_POUND] = ACTIONS(686), + [anon_sym_POUND] = ACTIONS(684), [anon_sym_DASH] = ACTIONS(684), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(688), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(686), [anon_sym_STAR] = ACTIONS(684), [anon_sym_AT] = ACTIONS(684), [anon_sym_QMARK] = ACTIONS(684), - [anon_sym_0] = ACTIONS(690), - [anon_sym__] = ACTIONS(690), + [anon_sym_0] = ACTIONS(688), + [anon_sym__] = ACTIONS(688), }, [101] = { - [sym_for_statement] = STATE(379), - [sym_while_statement] = STATE(379), - [sym_if_statement] = STATE(379), - [sym_case_statement] = STATE(379), - [sym_function_definition] = STATE(379), - [sym_subshell] = STATE(379), - [sym_pipeline] = STATE(379), - [sym_list] = STATE(379), - [sym_bracket_command] = STATE(379), - [sym_command] = STATE(379), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(380), - [sym_declaration_command] = STATE(379), - [sym_unset_command] = STATE(379), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [aux_sym_concatenation_repeat1] = STATE(376), + [sym__concat] = ACTIONS(674), + [sym_variable_name] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(692), + [anon_sym_SEMI_SEMI] = ACTIONS(692), + [anon_sym_PIPE_AMP] = ACTIONS(692), + [anon_sym_AMP_AMP] = ACTIONS(692), + [anon_sym_PIPE_PIPE] = ACTIONS(692), + [sym__special_characters] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(692), + [anon_sym_DOLLAR] = ACTIONS(692), + [sym_raw_string] = ACTIONS(692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(692), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(692), + [anon_sym_BQUOTE] = ACTIONS(692), + [anon_sym_LT_LPAREN] = ACTIONS(692), + [anon_sym_GT_LPAREN] = ACTIONS(692), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(692), + [sym_word] = ACTIONS(692), + [anon_sym_SEMI] = ACTIONS(692), + [anon_sym_LF] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(692), }, [102] = { - [sym_for_statement] = STATE(381), - [sym_while_statement] = STATE(381), - [sym_if_statement] = STATE(381), - [sym_case_statement] = STATE(381), - [sym_function_definition] = STATE(381), - [sym_subshell] = STATE(381), - [sym_pipeline] = STATE(381), - [sym_list] = STATE(381), - [sym_bracket_command] = STATE(381), - [sym_command] = STATE(381), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(382), - [sym_declaration_command] = STATE(381), - [sym_unset_command] = STATE(381), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), + [sym_subscript] = STATE(386), + [sym_variable_name] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(696), + [anon_sym_POUND] = ACTIONS(698), + [anon_sym_DASH] = ACTIONS(696), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(696), + [anon_sym_AT] = ACTIONS(696), + [anon_sym_QMARK] = ACTIONS(696), + [anon_sym_0] = ACTIONS(702), + [anon_sym__] = ACTIONS(702), }, [103] = { - [sym_for_statement] = STATE(383), - [sym_while_statement] = STATE(383), - [sym_if_statement] = STATE(383), - [sym_case_statement] = STATE(383), - [sym_function_definition] = STATE(383), - [sym_subshell] = STATE(383), - [sym_pipeline] = STATE(383), - [sym_list] = STATE(383), - [sym_bracket_command] = STATE(383), - [sym_command] = STATE(383), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(384), - [sym_declaration_command] = STATE(383), - [sym_unset_command] = STATE(383), - [sym_subscript] = STATE(168), + [sym_for_statement] = STATE(387), + [sym_while_statement] = STATE(387), + [sym_if_statement] = STATE(387), + [sym_case_statement] = STATE(387), + [sym_function_definition] = STATE(387), + [sym_subshell] = STATE(387), + [sym_pipeline] = STATE(387), + [sym_list] = STATE(387), + [sym_command] = STATE(387), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(387), + [sym_variable_assignment] = STATE(388), + [sym_declaration_command] = STATE(387), + [sym_unset_command] = STATE(387), + [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -12300,159 +13536,230 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym_word] = ACTIONS(300), }, [104] = { - [sym_variable_name] = ACTIONS(692), - [anon_sym_PIPE] = ACTIONS(694), - [anon_sym_RPAREN] = ACTIONS(694), - [anon_sym_SEMI_SEMI] = ACTIONS(694), - [anon_sym_PIPE_AMP] = ACTIONS(694), - [anon_sym_AMP_AMP] = ACTIONS(694), - [anon_sym_PIPE_PIPE] = ACTIONS(694), - [sym__special_characters] = ACTIONS(694), - [anon_sym_DQUOTE] = ACTIONS(694), - [anon_sym_DOLLAR] = ACTIONS(694), - [sym_raw_string] = ACTIONS(694), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(694), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(694), - [anon_sym_BQUOTE] = ACTIONS(694), - [anon_sym_LT_LPAREN] = ACTIONS(694), - [anon_sym_GT_LPAREN] = ACTIONS(694), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(694), - [sym_word] = ACTIONS(694), - [anon_sym_SEMI] = ACTIONS(694), - [anon_sym_LF] = ACTIONS(694), - [anon_sym_AMP] = ACTIONS(694), + [sym_for_statement] = STATE(389), + [sym_while_statement] = STATE(389), + [sym_if_statement] = STATE(389), + [sym_case_statement] = STATE(389), + [sym_function_definition] = STATE(389), + [sym_subshell] = STATE(389), + [sym_pipeline] = STATE(389), + [sym_list] = STATE(389), + [sym_command] = STATE(389), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(389), + [sym_variable_assignment] = STATE(390), + [sym_declaration_command] = STATE(389), + [sym_unset_command] = STATE(389), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), }, [105] = { - [sym_variable_name] = ACTIONS(678), - [anon_sym_PIPE] = ACTIONS(680), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_SEMI_SEMI] = ACTIONS(680), - [anon_sym_PIPE_AMP] = ACTIONS(680), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [sym__special_characters] = ACTIONS(680), - [anon_sym_DQUOTE] = ACTIONS(680), - [anon_sym_DOLLAR] = ACTIONS(680), - [sym_raw_string] = ACTIONS(680), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(680), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(680), - [anon_sym_BQUOTE] = ACTIONS(680), - [anon_sym_LT_LPAREN] = ACTIONS(680), - [anon_sym_GT_LPAREN] = ACTIONS(680), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(680), - [sym_word] = ACTIONS(680), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LF] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(680), + [sym_for_statement] = STATE(391), + [sym_while_statement] = STATE(391), + [sym_if_statement] = STATE(391), + [sym_case_statement] = STATE(391), + [sym_function_definition] = STATE(391), + [sym_subshell] = STATE(391), + [sym_pipeline] = STATE(391), + [sym_list] = STATE(391), + [sym_command] = STATE(391), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(391), + [sym_variable_assignment] = STATE(392), + [sym_declaration_command] = STATE(391), + [sym_unset_command] = STATE(391), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), }, [106] = { - [sym__assignment] = STATE(366), - [anon_sym_EQ] = ACTIONS(660), - [anon_sym_PLUS_EQ] = ACTIONS(660), - [sym_comment] = ACTIONS(56), + [sym_variable_name] = ACTIONS(704), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_RPAREN] = ACTIONS(706), + [anon_sym_SEMI_SEMI] = ACTIONS(706), + [anon_sym_PIPE_AMP] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [sym__special_characters] = ACTIONS(706), + [anon_sym_DQUOTE] = ACTIONS(706), + [anon_sym_DOLLAR] = ACTIONS(706), + [sym_raw_string] = ACTIONS(706), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(706), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(706), + [anon_sym_BQUOTE] = ACTIONS(706), + [anon_sym_LT_LPAREN] = ACTIONS(706), + [anon_sym_GT_LPAREN] = ACTIONS(706), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(706), + [sym_word] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(706), + [anon_sym_LF] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), }, [107] = { - [sym_variable_assignment] = STATE(105), - [sym_subscript] = STATE(106), - [sym_concatenation] = STATE(105), - [sym_string] = STATE(99), - [sym_simple_expansion] = STATE(99), - [sym_string_expansion] = STATE(99), - [sym_expansion] = STATE(99), - [sym_command_substitution] = STATE(99), - [sym_process_substitution] = STATE(99), - [aux_sym_declaration_command_repeat1] = STATE(385), - [sym_variable_name] = ACTIONS(158), - [anon_sym_PIPE] = ACTIONS(696), - [anon_sym_SEMI_SEMI] = ACTIONS(696), - [anon_sym_PIPE_AMP] = ACTIONS(696), - [anon_sym_AMP_AMP] = ACTIONS(696), - [anon_sym_PIPE_PIPE] = ACTIONS(696), - [sym__special_characters] = ACTIONS(162), - [anon_sym_DQUOTE] = ACTIONS(164), - [anon_sym_DOLLAR] = ACTIONS(166), - [sym_raw_string] = ACTIONS(168), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(170), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(172), - [anon_sym_BQUOTE] = ACTIONS(174), - [anon_sym_LT_LPAREN] = ACTIONS(176), - [anon_sym_GT_LPAREN] = ACTIONS(176), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(180), - [sym_word] = ACTIONS(168), - [anon_sym_SEMI] = ACTIONS(696), - [anon_sym_LF] = ACTIONS(696), - [anon_sym_AMP] = ACTIONS(696), + [sym_variable_name] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(692), + [anon_sym_SEMI_SEMI] = ACTIONS(692), + [anon_sym_PIPE_AMP] = ACTIONS(692), + [anon_sym_AMP_AMP] = ACTIONS(692), + [anon_sym_PIPE_PIPE] = ACTIONS(692), + [sym__special_characters] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(692), + [anon_sym_DOLLAR] = ACTIONS(692), + [sym_raw_string] = ACTIONS(692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(692), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(692), + [anon_sym_BQUOTE] = ACTIONS(692), + [anon_sym_LT_LPAREN] = ACTIONS(692), + [anon_sym_GT_LPAREN] = ACTIONS(692), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(692), + [sym_word] = ACTIONS(692), + [anon_sym_SEMI] = ACTIONS(692), + [anon_sym_LF] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(692), }, [108] = { - [aux_sym_concatenation_repeat1] = STATE(387), - [sym__concat] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_SEMI_SEMI] = ACTIONS(700), - [anon_sym_PIPE_AMP] = ACTIONS(700), - [anon_sym_AMP_AMP] = ACTIONS(700), - [anon_sym_PIPE_PIPE] = ACTIONS(700), - [sym__special_characters] = ACTIONS(700), - [anon_sym_DQUOTE] = ACTIONS(700), - [anon_sym_DOLLAR] = ACTIONS(700), - [sym_raw_string] = ACTIONS(700), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(700), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(700), - [anon_sym_BQUOTE] = ACTIONS(700), - [anon_sym_LT_LPAREN] = ACTIONS(700), - [anon_sym_GT_LPAREN] = ACTIONS(700), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(700), - [sym_word] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(700), - [anon_sym_LF] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(700), + [sym__assignment] = STATE(374), + [anon_sym_EQ] = ACTIONS(672), + [anon_sym_PLUS_EQ] = ACTIONS(672), + [sym_comment] = ACTIONS(56), }, [109] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(389), - [anon_sym_DQUOTE] = ACTIONS(702), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym_variable_assignment] = STATE(107), + [sym_subscript] = STATE(108), + [sym_concatenation] = STATE(107), + [sym_string] = STATE(101), + [sym_simple_expansion] = STATE(101), + [sym_string_expansion] = STATE(101), + [sym_expansion] = STATE(101), + [sym_command_substitution] = STATE(101), + [sym_process_substitution] = STATE(101), + [aux_sym_declaration_command_repeat1] = STATE(393), + [sym_variable_name] = ACTIONS(162), + [anon_sym_PIPE] = ACTIONS(708), + [anon_sym_SEMI_SEMI] = ACTIONS(708), + [anon_sym_PIPE_AMP] = ACTIONS(708), + [anon_sym_AMP_AMP] = ACTIONS(708), + [anon_sym_PIPE_PIPE] = ACTIONS(708), + [sym__special_characters] = ACTIONS(166), + [anon_sym_DQUOTE] = ACTIONS(168), + [anon_sym_DOLLAR] = ACTIONS(170), + [sym_raw_string] = ACTIONS(172), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(174), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(176), + [anon_sym_BQUOTE] = ACTIONS(178), + [anon_sym_LT_LPAREN] = ACTIONS(180), + [anon_sym_GT_LPAREN] = ACTIONS(180), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(184), + [sym_word] = ACTIONS(172), + [anon_sym_SEMI] = ACTIONS(708), + [anon_sym_LF] = ACTIONS(708), + [anon_sym_AMP] = ACTIONS(708), }, [110] = { - [sym_string] = STATE(392), - [anon_sym_DQUOTE] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(706), - [anon_sym_POUND] = ACTIONS(706), - [anon_sym_DASH] = ACTIONS(706), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(708), - [anon_sym_STAR] = ACTIONS(706), - [anon_sym_AT] = ACTIONS(706), - [anon_sym_QMARK] = ACTIONS(706), - [anon_sym_0] = ACTIONS(710), - [anon_sym__] = ACTIONS(710), - }, - [111] = { - [aux_sym_concatenation_repeat1] = STATE(387), - [sym__concat] = ACTIONS(698), + [aux_sym_concatenation_repeat1] = STATE(395), + [sym__concat] = ACTIONS(710), [anon_sym_PIPE] = ACTIONS(712), [anon_sym_SEMI_SEMI] = ACTIONS(712), [anon_sym_PIPE_AMP] = ACTIONS(712), @@ -12467,191 +13774,120 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(712), [anon_sym_LT_LPAREN] = ACTIONS(712), [anon_sym_GT_LPAREN] = ACTIONS(712), - [sym_comment] = ACTIONS(178), + [sym_comment] = ACTIONS(182), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(712), [sym_word] = ACTIONS(712), [anon_sym_SEMI] = ACTIONS(712), [anon_sym_LF] = ACTIONS(712), [anon_sym_AMP] = ACTIONS(712), }, + [111] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(397), + [anon_sym_DQUOTE] = ACTIONS(714), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, [112] = { - [sym_subscript] = STATE(397), - [sym_variable_name] = ACTIONS(714), - [anon_sym_DOLLAR] = ACTIONS(716), + [sym_string] = STATE(400), + [anon_sym_DQUOTE] = ACTIONS(716), + [anon_sym_DOLLAR] = ACTIONS(718), [anon_sym_POUND] = ACTIONS(718), - [anon_sym_DASH] = ACTIONS(716), - [sym_comment] = ACTIONS(178), + [anon_sym_DASH] = ACTIONS(718), + [sym_comment] = ACTIONS(182), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(720), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_AT] = ACTIONS(716), - [anon_sym_QMARK] = ACTIONS(716), + [anon_sym_STAR] = ACTIONS(718), + [anon_sym_AT] = ACTIONS(718), + [anon_sym_QMARK] = ACTIONS(718), [anon_sym_0] = ACTIONS(722), [anon_sym__] = ACTIONS(722), }, [113] = { - [sym_for_statement] = STATE(398), - [sym_while_statement] = STATE(398), - [sym_if_statement] = STATE(398), - [sym_case_statement] = STATE(398), - [sym_function_definition] = STATE(398), - [sym_subshell] = STATE(398), - [sym_pipeline] = STATE(398), - [sym_list] = STATE(398), - [sym_bracket_command] = STATE(398), - [sym_command] = STATE(398), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(399), - [sym_declaration_command] = STATE(398), - [sym_unset_command] = STATE(398), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [aux_sym_concatenation_repeat1] = STATE(395), + [sym__concat] = ACTIONS(710), + [anon_sym_PIPE] = ACTIONS(724), + [anon_sym_SEMI_SEMI] = ACTIONS(724), + [anon_sym_PIPE_AMP] = ACTIONS(724), + [anon_sym_AMP_AMP] = ACTIONS(724), + [anon_sym_PIPE_PIPE] = ACTIONS(724), + [sym__special_characters] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(724), + [sym_raw_string] = ACTIONS(724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(724), + [anon_sym_BQUOTE] = ACTIONS(724), + [anon_sym_LT_LPAREN] = ACTIONS(724), + [anon_sym_GT_LPAREN] = ACTIONS(724), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(724), + [sym_word] = ACTIONS(724), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LF] = ACTIONS(724), + [anon_sym_AMP] = ACTIONS(724), }, [114] = { - [sym_for_statement] = STATE(400), - [sym_while_statement] = STATE(400), - [sym_if_statement] = STATE(400), - [sym_case_statement] = STATE(400), - [sym_function_definition] = STATE(400), - [sym_subshell] = STATE(400), - [sym_pipeline] = STATE(400), - [sym_list] = STATE(400), - [sym_bracket_command] = STATE(400), - [sym_command] = STATE(400), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(401), - [sym_declaration_command] = STATE(400), - [sym_unset_command] = STATE(400), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), + [sym_subscript] = STATE(405), + [sym_variable_name] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(728), + [anon_sym_POUND] = ACTIONS(730), + [anon_sym_DASH] = ACTIONS(728), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(732), + [anon_sym_STAR] = ACTIONS(728), + [anon_sym_AT] = ACTIONS(728), + [anon_sym_QMARK] = ACTIONS(728), + [anon_sym_0] = ACTIONS(734), + [anon_sym__] = ACTIONS(734), }, [115] = { - [sym_for_statement] = STATE(402), - [sym_while_statement] = STATE(402), - [sym_if_statement] = STATE(402), - [sym_case_statement] = STATE(402), - [sym_function_definition] = STATE(402), - [sym_subshell] = STATE(402), - [sym_pipeline] = STATE(402), - [sym_list] = STATE(402), - [sym_bracket_command] = STATE(402), - [sym_command] = STATE(402), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(403), - [sym_declaration_command] = STATE(402), - [sym_unset_command] = STATE(402), - [sym_subscript] = STATE(168), + [sym_for_statement] = STATE(406), + [sym_while_statement] = STATE(406), + [sym_if_statement] = STATE(406), + [sym_case_statement] = STATE(406), + [sym_function_definition] = STATE(406), + [sym_subshell] = STATE(406), + [sym_pipeline] = STATE(406), + [sym_list] = STATE(406), + [sym_command] = STATE(406), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(406), + [sym_variable_assignment] = STATE(407), + [sym_declaration_command] = STATE(406), + [sym_unset_command] = STATE(406), + [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -12659,19 +13895,164 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym_word] = ACTIONS(300), }, [116] = { + [sym_for_statement] = STATE(408), + [sym_while_statement] = STATE(408), + [sym_if_statement] = STATE(408), + [sym_case_statement] = STATE(408), + [sym_function_definition] = STATE(408), + [sym_subshell] = STATE(408), + [sym_pipeline] = STATE(408), + [sym_list] = STATE(408), + [sym_command] = STATE(408), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(408), + [sym_variable_assignment] = STATE(409), + [sym_declaration_command] = STATE(408), + [sym_unset_command] = STATE(408), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), + }, + [117] = { + [sym_for_statement] = STATE(410), + [sym_while_statement] = STATE(410), + [sym_if_statement] = STATE(410), + [sym_case_statement] = STATE(410), + [sym_function_definition] = STATE(410), + [sym_subshell] = STATE(410), + [sym_pipeline] = STATE(410), + [sym_list] = STATE(410), + [sym_command] = STATE(410), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(410), + [sym_variable_assignment] = STATE(411), + [sym_declaration_command] = STATE(410), + [sym_unset_command] = STATE(410), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [118] = { + [anon_sym_PIPE] = ACTIONS(736), + [anon_sym_RPAREN] = ACTIONS(736), + [anon_sym_SEMI_SEMI] = ACTIONS(736), + [anon_sym_PIPE_AMP] = ACTIONS(736), + [anon_sym_AMP_AMP] = ACTIONS(736), + [anon_sym_PIPE_PIPE] = ACTIONS(736), + [sym__special_characters] = ACTIONS(736), + [anon_sym_DQUOTE] = ACTIONS(736), + [anon_sym_DOLLAR] = ACTIONS(736), + [sym_raw_string] = ACTIONS(736), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(736), + [anon_sym_BQUOTE] = ACTIONS(736), + [anon_sym_LT_LPAREN] = ACTIONS(736), + [anon_sym_GT_LPAREN] = ACTIONS(736), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(736), + [sym_word] = ACTIONS(736), + [anon_sym_SEMI] = ACTIONS(736), + [anon_sym_LF] = ACTIONS(736), + [anon_sym_AMP] = ACTIONS(736), + }, + [119] = { [anon_sym_PIPE] = ACTIONS(724), [anon_sym_RPAREN] = ACTIONS(724), [anon_sym_SEMI_SEMI] = ACTIONS(724), @@ -12687,900 +14068,820 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(724), [anon_sym_LT_LPAREN] = ACTIONS(724), [anon_sym_GT_LPAREN] = ACTIONS(724), - [sym_comment] = ACTIONS(178), + [sym_comment] = ACTIONS(182), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(724), [sym_word] = ACTIONS(724), [anon_sym_SEMI] = ACTIONS(724), [anon_sym_LF] = ACTIONS(724), [anon_sym_AMP] = ACTIONS(724), }, - [117] = { - [anon_sym_PIPE] = ACTIONS(712), - [anon_sym_RPAREN] = ACTIONS(712), - [anon_sym_SEMI_SEMI] = ACTIONS(712), - [anon_sym_PIPE_AMP] = ACTIONS(712), - [anon_sym_AMP_AMP] = ACTIONS(712), - [anon_sym_PIPE_PIPE] = ACTIONS(712), - [sym__special_characters] = ACTIONS(712), - [anon_sym_DQUOTE] = ACTIONS(712), - [anon_sym_DOLLAR] = ACTIONS(712), - [sym_raw_string] = ACTIONS(712), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(712), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(712), - [anon_sym_BQUOTE] = ACTIONS(712), - [anon_sym_LT_LPAREN] = ACTIONS(712), - [anon_sym_GT_LPAREN] = ACTIONS(712), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(712), - [sym_word] = ACTIONS(712), - [anon_sym_SEMI] = ACTIONS(712), - [anon_sym_LF] = ACTIONS(712), - [anon_sym_AMP] = ACTIONS(712), - }, - [118] = { - [sym_concatenation] = STATE(117), - [sym_string] = STATE(111), - [sym_simple_expansion] = STATE(111), - [sym_string_expansion] = STATE(111), - [sym_expansion] = STATE(111), - [sym_command_substitution] = STATE(111), - [sym_process_substitution] = STATE(111), - [aux_sym_unset_command_repeat1] = STATE(404), - [anon_sym_PIPE] = ACTIONS(726), - [anon_sym_SEMI_SEMI] = ACTIONS(726), - [anon_sym_PIPE_AMP] = ACTIONS(726), - [anon_sym_AMP_AMP] = ACTIONS(726), - [anon_sym_PIPE_PIPE] = ACTIONS(726), - [sym__special_characters] = ACTIONS(184), - [anon_sym_DQUOTE] = ACTIONS(186), - [anon_sym_DOLLAR] = ACTIONS(188), - [sym_raw_string] = ACTIONS(190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(194), - [anon_sym_BQUOTE] = ACTIONS(196), - [anon_sym_LT_LPAREN] = ACTIONS(198), - [anon_sym_GT_LPAREN] = ACTIONS(198), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(200), - [sym_word] = ACTIONS(190), - [anon_sym_SEMI] = ACTIONS(726), - [anon_sym_LF] = ACTIONS(726), - [anon_sym_AMP] = ACTIONS(726), - }, - [119] = { - [aux_sym_concatenation_repeat1] = STATE(406), - [sym_file_descriptor] = ACTIONS(728), - [sym__concat] = ACTIONS(730), - [sym_variable_name] = ACTIONS(728), - [anon_sym_LT] = ACTIONS(732), - [anon_sym_GT] = ACTIONS(732), - [anon_sym_GT_GT] = ACTIONS(728), - [anon_sym_AMP_GT] = ACTIONS(732), - [anon_sym_AMP_GT_GT] = ACTIONS(728), - [anon_sym_LT_AMP] = ACTIONS(728), - [anon_sym_GT_AMP] = ACTIONS(728), - [sym__special_characters] = ACTIONS(732), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_DOLLAR] = ACTIONS(732), - [sym_raw_string] = ACTIONS(728), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(728), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(728), - [anon_sym_LT_LPAREN] = ACTIONS(728), - [anon_sym_GT_LPAREN] = ACTIONS(728), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(732), - }, [120] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(408), - [anon_sym_DQUOTE] = ACTIONS(734), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(113), + [sym_simple_expansion] = STATE(113), + [sym_string_expansion] = STATE(113), + [sym_expansion] = STATE(113), + [sym_command_substitution] = STATE(113), + [sym_process_substitution] = STATE(113), + [aux_sym_unset_command_repeat1] = STATE(412), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_SEMI_SEMI] = ACTIONS(738), + [anon_sym_PIPE_AMP] = ACTIONS(738), + [anon_sym_AMP_AMP] = ACTIONS(738), + [anon_sym_PIPE_PIPE] = ACTIONS(738), + [sym__special_characters] = ACTIONS(188), + [anon_sym_DQUOTE] = ACTIONS(190), + [anon_sym_DOLLAR] = ACTIONS(192), + [sym_raw_string] = ACTIONS(194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(198), + [anon_sym_BQUOTE] = ACTIONS(200), + [anon_sym_LT_LPAREN] = ACTIONS(202), + [anon_sym_GT_LPAREN] = ACTIONS(202), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(204), + [sym_word] = ACTIONS(194), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_LF] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(738), }, [121] = { - [sym_string] = STATE(411), - [anon_sym_DQUOTE] = ACTIONS(204), - [anon_sym_DOLLAR] = ACTIONS(736), - [anon_sym_POUND] = ACTIONS(736), - [anon_sym_DASH] = ACTIONS(736), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(738), - [anon_sym_STAR] = ACTIONS(736), - [anon_sym_AT] = ACTIONS(736), - [anon_sym_QMARK] = ACTIONS(736), - [anon_sym_0] = ACTIONS(740), - [anon_sym__] = ACTIONS(740), - }, - [122] = { - [aux_sym_concatenation_repeat1] = STATE(406), - [sym_file_descriptor] = ACTIONS(742), - [sym__concat] = ACTIONS(730), - [sym_variable_name] = ACTIONS(742), + [aux_sym_concatenation_repeat1] = STATE(414), + [sym_file_descriptor] = ACTIONS(740), + [sym__concat] = ACTIONS(742), + [sym_variable_name] = ACTIONS(740), [anon_sym_LT] = ACTIONS(744), [anon_sym_GT] = ACTIONS(744), - [anon_sym_GT_GT] = ACTIONS(742), + [anon_sym_GT_GT] = ACTIONS(740), [anon_sym_AMP_GT] = ACTIONS(744), - [anon_sym_AMP_GT_GT] = ACTIONS(742), - [anon_sym_LT_AMP] = ACTIONS(742), - [anon_sym_GT_AMP] = ACTIONS(742), + [anon_sym_AMP_GT_GT] = ACTIONS(740), + [anon_sym_LT_AMP] = ACTIONS(740), + [anon_sym_GT_AMP] = ACTIONS(740), [sym__special_characters] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(740), [anon_sym_DOLLAR] = ACTIONS(744), - [sym_raw_string] = ACTIONS(742), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(742), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LT_LPAREN] = ACTIONS(742), - [anon_sym_GT_LPAREN] = ACTIONS(742), + [sym_raw_string] = ACTIONS(740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(740), + [anon_sym_BQUOTE] = ACTIONS(740), + [anon_sym_LT_LPAREN] = ACTIONS(740), + [anon_sym_GT_LPAREN] = ACTIONS(740), [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(744), }, + [122] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(416), + [anon_sym_DQUOTE] = ACTIONS(746), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, [123] = { - [sym_subscript] = STATE(416), - [sym_variable_name] = ACTIONS(746), + [sym_string] = STATE(419), + [anon_sym_DQUOTE] = ACTIONS(208), [anon_sym_DOLLAR] = ACTIONS(748), - [anon_sym_POUND] = ACTIONS(750), + [anon_sym_POUND] = ACTIONS(748), [anon_sym_DASH] = ACTIONS(748), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(752), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(750), [anon_sym_STAR] = ACTIONS(748), [anon_sym_AT] = ACTIONS(748), [anon_sym_QMARK] = ACTIONS(748), - [anon_sym_0] = ACTIONS(754), - [anon_sym__] = ACTIONS(754), + [anon_sym_0] = ACTIONS(752), + [anon_sym__] = ACTIONS(752), }, [124] = { - [sym_for_statement] = STATE(417), - [sym_while_statement] = STATE(417), - [sym_if_statement] = STATE(417), - [sym_case_statement] = STATE(417), - [sym_function_definition] = STATE(417), - [sym_subshell] = STATE(417), - [sym_pipeline] = STATE(417), - [sym_list] = STATE(417), - [sym_bracket_command] = STATE(417), - [sym_command] = STATE(417), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(418), - [sym_declaration_command] = STATE(417), - [sym_unset_command] = STATE(417), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [125] = { - [sym_for_statement] = STATE(419), - [sym_while_statement] = STATE(419), - [sym_if_statement] = STATE(419), - [sym_case_statement] = STATE(419), - [sym_function_definition] = STATE(419), - [sym_subshell] = STATE(419), - [sym_pipeline] = STATE(419), - [sym_list] = STATE(419), - [sym_bracket_command] = STATE(419), - [sym_command] = STATE(419), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(420), - [sym_declaration_command] = STATE(419), - [sym_unset_command] = STATE(419), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), - }, - [126] = { - [sym_for_statement] = STATE(421), - [sym_while_statement] = STATE(421), - [sym_if_statement] = STATE(421), - [sym_case_statement] = STATE(421), - [sym_function_definition] = STATE(421), - [sym_subshell] = STATE(421), - [sym_pipeline] = STATE(421), - [sym_list] = STATE(421), - [sym_bracket_command] = STATE(421), - [sym_command] = STATE(421), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(422), - [sym_declaration_command] = STATE(421), - [sym_unset_command] = STATE(421), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [127] = { - [sym_file_descriptor] = ACTIONS(742), - [sym_variable_name] = ACTIONS(742), - [anon_sym_LT] = ACTIONS(744), - [anon_sym_GT] = ACTIONS(744), - [anon_sym_GT_GT] = ACTIONS(742), - [anon_sym_AMP_GT] = ACTIONS(744), - [anon_sym_AMP_GT_GT] = ACTIONS(742), - [anon_sym_LT_AMP] = ACTIONS(742), - [anon_sym_GT_AMP] = ACTIONS(742), - [sym__special_characters] = ACTIONS(744), - [anon_sym_DQUOTE] = ACTIONS(742), - [anon_sym_DOLLAR] = ACTIONS(744), - [sym_raw_string] = ACTIONS(742), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(742), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [anon_sym_LT_LPAREN] = ACTIONS(742), - [anon_sym_GT_LPAREN] = ACTIONS(742), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(744), - }, - [128] = { - [sym_string] = STATE(423), - [sym_simple_expansion] = STATE(423), - [sym_string_expansion] = STATE(423), - [sym_expansion] = STATE(423), - [sym_command_substitution] = STATE(423), - [sym_process_substitution] = STATE(423), + [aux_sym_concatenation_repeat1] = STATE(414), + [sym_file_descriptor] = ACTIONS(754), + [sym__concat] = ACTIONS(742), + [sym_variable_name] = ACTIONS(754), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(754), + [anon_sym_AMP_GT] = ACTIONS(756), + [anon_sym_AMP_GT_GT] = ACTIONS(754), + [anon_sym_LT_AMP] = ACTIONS(754), + [anon_sym_GT_AMP] = ACTIONS(754), [sym__special_characters] = ACTIONS(756), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(758), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(754), + [anon_sym_DOLLAR] = ACTIONS(756), + [sym_raw_string] = ACTIONS(754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(754), + [anon_sym_BQUOTE] = ACTIONS(754), + [anon_sym_LT_LPAREN] = ACTIONS(754), + [anon_sym_GT_LPAREN] = ACTIONS(754), [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(756), }, + [125] = { + [sym_subscript] = STATE(424), + [sym_variable_name] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(760), + [anon_sym_POUND] = ACTIONS(762), + [anon_sym_DASH] = ACTIONS(760), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(764), + [anon_sym_STAR] = ACTIONS(760), + [anon_sym_AT] = ACTIONS(760), + [anon_sym_QMARK] = ACTIONS(760), + [anon_sym_0] = ACTIONS(766), + [anon_sym__] = ACTIONS(766), + }, + [126] = { + [sym_for_statement] = STATE(425), + [sym_while_statement] = STATE(425), + [sym_if_statement] = STATE(425), + [sym_case_statement] = STATE(425), + [sym_function_definition] = STATE(425), + [sym_subshell] = STATE(425), + [sym_pipeline] = STATE(425), + [sym_list] = STATE(425), + [sym_command] = STATE(425), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(425), + [sym_variable_assignment] = STATE(426), + [sym_declaration_command] = STATE(425), + [sym_unset_command] = STATE(425), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [127] = { + [sym_for_statement] = STATE(427), + [sym_while_statement] = STATE(427), + [sym_if_statement] = STATE(427), + [sym_case_statement] = STATE(427), + [sym_function_definition] = STATE(427), + [sym_subshell] = STATE(427), + [sym_pipeline] = STATE(427), + [sym_list] = STATE(427), + [sym_command] = STATE(427), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(427), + [sym_variable_assignment] = STATE(428), + [sym_declaration_command] = STATE(427), + [sym_unset_command] = STATE(427), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), + }, + [128] = { + [sym_for_statement] = STATE(429), + [sym_while_statement] = STATE(429), + [sym_if_statement] = STATE(429), + [sym_case_statement] = STATE(429), + [sym_function_definition] = STATE(429), + [sym_subshell] = STATE(429), + [sym_pipeline] = STATE(429), + [sym_list] = STATE(429), + [sym_command] = STATE(429), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(429), + [sym_variable_assignment] = STATE(430), + [sym_declaration_command] = STATE(429), + [sym_unset_command] = STATE(429), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, [129] = { - [aux_sym_concatenation_repeat1] = STATE(424), - [sym_file_descriptor] = ACTIONS(760), - [sym__concat] = ACTIONS(222), - [anon_sym_PIPE] = ACTIONS(762), - [anon_sym_SEMI_SEMI] = ACTIONS(762), - [anon_sym_PIPE_AMP] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(762), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_LT] = ACTIONS(762), - [anon_sym_GT] = ACTIONS(762), - [anon_sym_GT_GT] = ACTIONS(762), - [anon_sym_AMP_GT] = ACTIONS(762), - [anon_sym_AMP_GT_GT] = ACTIONS(762), - [anon_sym_LT_AMP] = ACTIONS(762), - [anon_sym_GT_AMP] = ACTIONS(762), - [anon_sym_LT_LT] = ACTIONS(762), - [anon_sym_LT_LT_DASH] = ACTIONS(762), - [anon_sym_LT_LT_LT] = ACTIONS(762), - [sym__special_characters] = ACTIONS(762), - [anon_sym_DQUOTE] = ACTIONS(762), - [anon_sym_DOLLAR] = ACTIONS(762), - [sym_raw_string] = ACTIONS(762), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(762), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(762), - [anon_sym_BQUOTE] = ACTIONS(762), - [anon_sym_LT_LPAREN] = ACTIONS(762), - [anon_sym_GT_LPAREN] = ACTIONS(762), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(762), - [anon_sym_SEMI] = ACTIONS(762), - [anon_sym_LF] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(762), + [sym_file_descriptor] = ACTIONS(754), + [sym_variable_name] = ACTIONS(754), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(754), + [anon_sym_AMP_GT] = ACTIONS(756), + [anon_sym_AMP_GT_GT] = ACTIONS(754), + [anon_sym_LT_AMP] = ACTIONS(754), + [anon_sym_GT_AMP] = ACTIONS(754), + [sym__special_characters] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(754), + [anon_sym_DOLLAR] = ACTIONS(756), + [sym_raw_string] = ACTIONS(754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(754), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(754), + [anon_sym_BQUOTE] = ACTIONS(754), + [anon_sym_LT_LPAREN] = ACTIONS(754), + [anon_sym_GT_LPAREN] = ACTIONS(754), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(756), }, [130] = { - [sym_file_descriptor] = ACTIONS(764), - [sym__concat] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_SEMI_SEMI] = ACTIONS(766), - [anon_sym_PIPE_AMP] = ACTIONS(766), - [anon_sym_AMP_AMP] = ACTIONS(766), - [anon_sym_PIPE_PIPE] = ACTIONS(766), - [anon_sym_LT] = ACTIONS(766), - [anon_sym_GT] = ACTIONS(766), - [anon_sym_GT_GT] = ACTIONS(766), - [anon_sym_AMP_GT] = ACTIONS(766), - [anon_sym_AMP_GT_GT] = ACTIONS(766), - [anon_sym_LT_AMP] = ACTIONS(766), - [anon_sym_GT_AMP] = ACTIONS(766), - [anon_sym_LT_LT] = ACTIONS(766), - [anon_sym_LT_LT_DASH] = ACTIONS(766), - [anon_sym_LT_LT_LT] = ACTIONS(766), - [sym__special_characters] = ACTIONS(766), - [anon_sym_DQUOTE] = ACTIONS(766), - [anon_sym_DOLLAR] = ACTIONS(766), - [sym_raw_string] = ACTIONS(766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(766), - [anon_sym_BQUOTE] = ACTIONS(766), - [anon_sym_LT_LPAREN] = ACTIONS(766), - [anon_sym_GT_LPAREN] = ACTIONS(766), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(766), - [anon_sym_SEMI] = ACTIONS(766), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(766), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [sym__special_characters] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(768), }, [131] = { - [anon_sym_DOLLAR] = ACTIONS(768), - [sym__string_content] = ACTIONS(770), - [anon_sym_POUND] = ACTIONS(772), - [anon_sym_DASH] = ACTIONS(772), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(774), - [anon_sym_STAR] = ACTIONS(772), - [anon_sym_AT] = ACTIONS(772), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_0] = ACTIONS(776), - [anon_sym__] = ACTIONS(776), + [aux_sym_concatenation_repeat1] = STATE(432), + [sym_file_descriptor] = ACTIONS(772), + [sym__concat] = ACTIONS(226), + [anon_sym_PIPE] = ACTIONS(774), + [anon_sym_SEMI_SEMI] = ACTIONS(774), + [anon_sym_PIPE_AMP] = ACTIONS(774), + [anon_sym_AMP_AMP] = ACTIONS(774), + [anon_sym_PIPE_PIPE] = ACTIONS(774), + [anon_sym_EQ_TILDE] = ACTIONS(774), + [anon_sym_LT] = ACTIONS(774), + [anon_sym_GT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(774), + [anon_sym_AMP_GT] = ACTIONS(774), + [anon_sym_AMP_GT_GT] = ACTIONS(774), + [anon_sym_LT_AMP] = ACTIONS(774), + [anon_sym_GT_AMP] = ACTIONS(774), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_LT_LT_DASH] = ACTIONS(774), + [anon_sym_LT_LT_LT] = ACTIONS(774), + [sym__special_characters] = ACTIONS(774), + [anon_sym_DQUOTE] = ACTIONS(774), + [anon_sym_DOLLAR] = ACTIONS(774), + [sym_raw_string] = ACTIONS(774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(774), + [anon_sym_BQUOTE] = ACTIONS(774), + [anon_sym_LT_LPAREN] = ACTIONS(774), + [anon_sym_GT_LPAREN] = ACTIONS(774), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(774), + [anon_sym_SEMI] = ACTIONS(774), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_AMP] = ACTIONS(774), }, [132] = { - [sym__concat] = ACTIONS(778), - [anon_sym_DQUOTE] = ACTIONS(780), - [anon_sym_DOLLAR] = ACTIONS(780), - [sym__string_content] = ACTIONS(782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(780), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(780), - [anon_sym_BQUOTE] = ACTIONS(780), - [sym_comment] = ACTIONS(178), + [sym_file_descriptor] = ACTIONS(776), + [sym__concat] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(778), + [anon_sym_SEMI_SEMI] = ACTIONS(778), + [anon_sym_PIPE_AMP] = ACTIONS(778), + [anon_sym_AMP_AMP] = ACTIONS(778), + [anon_sym_PIPE_PIPE] = ACTIONS(778), + [anon_sym_EQ_TILDE] = ACTIONS(778), + [anon_sym_LT] = ACTIONS(778), + [anon_sym_GT] = ACTIONS(778), + [anon_sym_GT_GT] = ACTIONS(778), + [anon_sym_AMP_GT] = ACTIONS(778), + [anon_sym_AMP_GT_GT] = ACTIONS(778), + [anon_sym_LT_AMP] = ACTIONS(778), + [anon_sym_GT_AMP] = ACTIONS(778), + [anon_sym_LT_LT] = ACTIONS(778), + [anon_sym_LT_LT_DASH] = ACTIONS(778), + [anon_sym_LT_LT_LT] = ACTIONS(778), + [sym__special_characters] = ACTIONS(778), + [anon_sym_DQUOTE] = ACTIONS(778), + [anon_sym_DOLLAR] = ACTIONS(778), + [sym_raw_string] = ACTIONS(778), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(778), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(778), + [anon_sym_BQUOTE] = ACTIONS(778), + [anon_sym_LT_LPAREN] = ACTIONS(778), + [anon_sym_GT_LPAREN] = ACTIONS(778), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(778), + [anon_sym_SEMI] = ACTIONS(778), + [anon_sym_LF] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(778), }, [133] = { - [sym_subscript] = STATE(433), - [sym_variable_name] = ACTIONS(784), - [anon_sym_DOLLAR] = ACTIONS(786), - [anon_sym_POUND] = ACTIONS(788), - [anon_sym_DASH] = ACTIONS(786), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(790), - [anon_sym_STAR] = ACTIONS(786), - [anon_sym_AT] = ACTIONS(786), - [anon_sym_QMARK] = ACTIONS(786), - [anon_sym_0] = ACTIONS(792), - [anon_sym__] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(780), + [sym__string_content] = ACTIONS(782), + [anon_sym_POUND] = ACTIONS(784), + [anon_sym_DASH] = ACTIONS(784), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(786), + [anon_sym_STAR] = ACTIONS(784), + [anon_sym_AT] = ACTIONS(784), + [anon_sym_QMARK] = ACTIONS(784), + [anon_sym_0] = ACTIONS(788), + [anon_sym__] = ACTIONS(788), }, [134] = { - [sym_for_statement] = STATE(434), - [sym_while_statement] = STATE(434), - [sym_if_statement] = STATE(434), - [sym_case_statement] = STATE(434), - [sym_function_definition] = STATE(434), - [sym_subshell] = STATE(434), - [sym_pipeline] = STATE(434), - [sym_list] = STATE(434), - [sym_bracket_command] = STATE(434), - [sym_command] = STATE(434), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(435), - [sym_declaration_command] = STATE(434), - [sym_unset_command] = STATE(434), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym__concat] = ACTIONS(790), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(792), + [sym__string_content] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [sym_comment] = ACTIONS(182), }, [135] = { - [sym_for_statement] = STATE(436), - [sym_while_statement] = STATE(436), - [sym_if_statement] = STATE(436), - [sym_case_statement] = STATE(436), - [sym_function_definition] = STATE(436), - [sym_subshell] = STATE(436), - [sym_pipeline] = STATE(436), - [sym_list] = STATE(436), - [sym_bracket_command] = STATE(436), - [sym_command] = STATE(436), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(437), - [sym_declaration_command] = STATE(436), - [sym_unset_command] = STATE(436), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), + [sym_subscript] = STATE(441), + [sym_variable_name] = ACTIONS(796), + [anon_sym_DOLLAR] = ACTIONS(798), + [anon_sym_POUND] = ACTIONS(800), + [anon_sym_DASH] = ACTIONS(798), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(802), + [anon_sym_STAR] = ACTIONS(798), + [anon_sym_AT] = ACTIONS(798), + [anon_sym_QMARK] = ACTIONS(798), + [anon_sym_0] = ACTIONS(804), + [anon_sym__] = ACTIONS(804), }, [136] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym_for_statement] = STATE(442), + [sym_while_statement] = STATE(442), + [sym_if_statement] = STATE(442), + [sym_case_statement] = STATE(442), + [sym_function_definition] = STATE(442), + [sym_subshell] = STATE(442), + [sym_pipeline] = STATE(442), + [sym_list] = STATE(442), + [sym_command] = STATE(442), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(442), + [sym_variable_assignment] = STATE(443), + [sym_declaration_command] = STATE(442), + [sym_unset_command] = STATE(442), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), }, [137] = { - [sym_file_descriptor] = ACTIONS(796), - [sym__concat] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(798), - [anon_sym_SEMI_SEMI] = ACTIONS(798), - [anon_sym_PIPE_AMP] = ACTIONS(798), - [anon_sym_AMP_AMP] = ACTIONS(798), - [anon_sym_PIPE_PIPE] = ACTIONS(798), - [anon_sym_LT] = ACTIONS(798), - [anon_sym_GT] = ACTIONS(798), - [anon_sym_GT_GT] = ACTIONS(798), - [anon_sym_AMP_GT] = ACTIONS(798), - [anon_sym_AMP_GT_GT] = ACTIONS(798), - [anon_sym_LT_AMP] = ACTIONS(798), - [anon_sym_GT_AMP] = ACTIONS(798), - [anon_sym_LT_LT] = ACTIONS(798), - [anon_sym_LT_LT_DASH] = ACTIONS(798), - [anon_sym_LT_LT_LT] = ACTIONS(798), - [sym__special_characters] = ACTIONS(798), - [anon_sym_DQUOTE] = ACTIONS(798), - [anon_sym_DOLLAR] = ACTIONS(798), - [sym_raw_string] = ACTIONS(798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(798), - [anon_sym_BQUOTE] = ACTIONS(798), - [anon_sym_LT_LPAREN] = ACTIONS(798), - [anon_sym_GT_LPAREN] = ACTIONS(798), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(798), - [anon_sym_SEMI] = ACTIONS(798), - [anon_sym_LF] = ACTIONS(798), - [anon_sym_AMP] = ACTIONS(798), + [sym_for_statement] = STATE(444), + [sym_while_statement] = STATE(444), + [sym_if_statement] = STATE(444), + [sym_case_statement] = STATE(444), + [sym_function_definition] = STATE(444), + [sym_subshell] = STATE(444), + [sym_pipeline] = STATE(444), + [sym_list] = STATE(444), + [sym_command] = STATE(444), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(444), + [sym_variable_assignment] = STATE(445), + [sym_declaration_command] = STATE(444), + [sym_unset_command] = STATE(444), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), }, [138] = { - [sym_file_descriptor] = ACTIONS(800), - [sym__concat] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(802), - [anon_sym_SEMI_SEMI] = ACTIONS(802), - [anon_sym_PIPE_AMP] = ACTIONS(802), - [anon_sym_AMP_AMP] = ACTIONS(802), - [anon_sym_PIPE_PIPE] = ACTIONS(802), - [anon_sym_LT] = ACTIONS(802), - [anon_sym_GT] = ACTIONS(802), - [anon_sym_GT_GT] = ACTIONS(802), - [anon_sym_AMP_GT] = ACTIONS(802), - [anon_sym_AMP_GT_GT] = ACTIONS(802), - [anon_sym_LT_AMP] = ACTIONS(802), - [anon_sym_GT_AMP] = ACTIONS(802), - [anon_sym_LT_LT] = ACTIONS(802), - [anon_sym_LT_LT_DASH] = ACTIONS(802), - [anon_sym_LT_LT_LT] = ACTIONS(802), - [sym__special_characters] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(802), - [sym_raw_string] = ACTIONS(802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(802), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(802), - [anon_sym_BQUOTE] = ACTIONS(802), - [anon_sym_LT_LPAREN] = ACTIONS(802), - [anon_sym_GT_LPAREN] = ACTIONS(802), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(802), - [anon_sym_LF] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(802), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(806), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, [139] = { - [sym_file_descriptor] = ACTIONS(804), - [sym__concat] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(806), - [anon_sym_SEMI_SEMI] = ACTIONS(806), - [anon_sym_PIPE_AMP] = ACTIONS(806), - [anon_sym_AMP_AMP] = ACTIONS(806), - [anon_sym_PIPE_PIPE] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(806), - [anon_sym_GT] = ACTIONS(806), - [anon_sym_GT_GT] = ACTIONS(806), - [anon_sym_AMP_GT] = ACTIONS(806), - [anon_sym_AMP_GT_GT] = ACTIONS(806), - [anon_sym_LT_AMP] = ACTIONS(806), - [anon_sym_GT_AMP] = ACTIONS(806), - [anon_sym_LT_LT] = ACTIONS(806), - [anon_sym_LT_LT_DASH] = ACTIONS(806), - [anon_sym_LT_LT_LT] = ACTIONS(806), - [sym__special_characters] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(806), - [anon_sym_DOLLAR] = ACTIONS(806), - [sym_raw_string] = ACTIONS(806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(806), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(806), - [anon_sym_BQUOTE] = ACTIONS(806), - [anon_sym_LT_LPAREN] = ACTIONS(806), - [anon_sym_GT_LPAREN] = ACTIONS(806), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(806), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(806), + [sym_file_descriptor] = ACTIONS(808), + [sym__concat] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(810), + [anon_sym_SEMI_SEMI] = ACTIONS(810), + [anon_sym_PIPE_AMP] = ACTIONS(810), + [anon_sym_AMP_AMP] = ACTIONS(810), + [anon_sym_PIPE_PIPE] = ACTIONS(810), + [anon_sym_EQ_TILDE] = ACTIONS(810), + [anon_sym_LT] = ACTIONS(810), + [anon_sym_GT] = ACTIONS(810), + [anon_sym_GT_GT] = ACTIONS(810), + [anon_sym_AMP_GT] = ACTIONS(810), + [anon_sym_AMP_GT_GT] = ACTIONS(810), + [anon_sym_LT_AMP] = ACTIONS(810), + [anon_sym_GT_AMP] = ACTIONS(810), + [anon_sym_LT_LT] = ACTIONS(810), + [anon_sym_LT_LT_DASH] = ACTIONS(810), + [anon_sym_LT_LT_LT] = ACTIONS(810), + [sym__special_characters] = ACTIONS(810), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_DOLLAR] = ACTIONS(810), + [sym_raw_string] = ACTIONS(810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(810), + [anon_sym_BQUOTE] = ACTIONS(810), + [anon_sym_LT_LPAREN] = ACTIONS(810), + [anon_sym_GT_LPAREN] = ACTIONS(810), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(810), + [anon_sym_LF] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(810), }, [140] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(810), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(812), + [sym__concat] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(814), + [anon_sym_SEMI_SEMI] = ACTIONS(814), + [anon_sym_PIPE_AMP] = ACTIONS(814), + [anon_sym_AMP_AMP] = ACTIONS(814), + [anon_sym_PIPE_PIPE] = ACTIONS(814), + [anon_sym_EQ_TILDE] = ACTIONS(814), + [anon_sym_LT] = ACTIONS(814), + [anon_sym_GT] = ACTIONS(814), + [anon_sym_GT_GT] = ACTIONS(814), + [anon_sym_AMP_GT] = ACTIONS(814), + [anon_sym_AMP_GT_GT] = ACTIONS(814), + [anon_sym_LT_AMP] = ACTIONS(814), + [anon_sym_GT_AMP] = ACTIONS(814), + [anon_sym_LT_LT] = ACTIONS(814), + [anon_sym_LT_LT_DASH] = ACTIONS(814), + [anon_sym_LT_LT_LT] = ACTIONS(814), + [sym__special_characters] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_DOLLAR] = ACTIONS(814), + [sym_raw_string] = ACTIONS(814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(814), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(814), + [anon_sym_BQUOTE] = ACTIONS(814), + [anon_sym_LT_LPAREN] = ACTIONS(814), + [anon_sym_GT_LPAREN] = ACTIONS(814), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(814), + [anon_sym_SEMI] = ACTIONS(814), + [anon_sym_LF] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(814), }, [141] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(452), - [anon_sym_RBRACE] = ACTIONS(812), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), + [sym_file_descriptor] = ACTIONS(816), + [sym__concat] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_SEMI_SEMI] = ACTIONS(818), + [anon_sym_PIPE_AMP] = ACTIONS(818), + [anon_sym_AMP_AMP] = ACTIONS(818), + [anon_sym_PIPE_PIPE] = ACTIONS(818), + [anon_sym_EQ_TILDE] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(818), + [anon_sym_GT] = ACTIONS(818), + [anon_sym_GT_GT] = ACTIONS(818), + [anon_sym_AMP_GT] = ACTIONS(818), + [anon_sym_AMP_GT_GT] = ACTIONS(818), + [anon_sym_LT_AMP] = ACTIONS(818), + [anon_sym_GT_AMP] = ACTIONS(818), + [anon_sym_LT_LT] = ACTIONS(818), + [anon_sym_LT_LT_DASH] = ACTIONS(818), + [anon_sym_LT_LT_LT] = ACTIONS(818), + [sym__special_characters] = ACTIONS(818), [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(818), + [sym_raw_string] = ACTIONS(818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(818), + [anon_sym_BQUOTE] = ACTIONS(818), + [anon_sym_LT_LPAREN] = ACTIONS(818), + [anon_sym_GT_LPAREN] = ACTIONS(818), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_LF] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(818), }, [142] = { - [sym_subscript] = STATE(456), - [sym_variable_name] = ACTIONS(836), - [anon_sym_DOLLAR] = ACTIONS(838), - [anon_sym_DASH] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(822), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(840), - [anon_sym_STAR] = ACTIONS(838), - [anon_sym_AT] = ACTIONS(838), - [anon_sym_QMARK] = ACTIONS(838), - [anon_sym_0] = ACTIONS(842), - [anon_sym__] = ACTIONS(842), }, [143] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(458), - [anon_sym_RBRACE] = ACTIONS(844), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(461), + [anon_sym_RBRACE] = ACTIONS(824), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(840), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [144] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(460), - [anon_sym_RBRACE] = ACTIONS(846), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_subscript] = STATE(465), + [sym_variable_name] = ACTIONS(850), + [anon_sym_DOLLAR] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(854), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_AT] = ACTIONS(852), + [anon_sym_QMARK] = ACTIONS(852), + [anon_sym_0] = ACTIONS(856), + [anon_sym__] = ACTIONS(856), }, [145] = { - [sym__assignment] = STATE(462), - [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(848), - [anon_sym_PLUS_EQ] = ACTIONS(848), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(468), + [anon_sym_RBRACE] = ACTIONS(858), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(860), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [146] = { - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(850), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(471), + [anon_sym_RBRACE] = ACTIONS(862), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(864), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [147] = { - [sym__terminated_statement] = STATE(464), - [sym_for_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_function_definition] = STATE(40), - [sym_subshell] = STATE(40), - [sym_pipeline] = STATE(40), - [sym_list] = STATE(40), - [sym_bracket_command] = STATE(40), - [sym_command] = STATE(40), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(41), - [sym_declaration_command] = STATE(40), - [sym_unset_command] = STATE(40), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym__assignment] = STATE(473), + [anon_sym_LBRACK] = ACTIONS(64), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_PLUS_EQ] = ACTIONS(866), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), }, [148] = { - [sym__terminated_statement] = STATE(465), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(868), + }, + [149] = { + [sym__terminated_statement] = STATE(475), [sym_for_statement] = STATE(40), [sym_while_statement] = STATE(40), [sym_if_statement] = STATE(40), @@ -13589,9 +14890,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(40), [sym_pipeline] = STATE(40), [sym_list] = STATE(40), - [sym_bracket_command] = STATE(40), [sym_command] = STATE(40), [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(40), [sym_variable_assignment] = STATE(41), [sym_declaration_command] = STATE(40), [sym_unset_command] = STATE(40), @@ -13641,57 +14942,119 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(58), }, - [149] = { - [sym_concatenation] = STATE(468), - [sym_string] = STATE(467), - [sym_simple_expansion] = STATE(467), - [sym_string_expansion] = STATE(467), - [sym_expansion] = STATE(467), - [sym_command_substitution] = STATE(467), - [sym_process_substitution] = STATE(467), - [sym__special_characters] = ACTIONS(852), + [150] = { + [sym__terminated_statement] = STATE(476), + [sym_for_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_function_definition] = STATE(40), + [sym_subshell] = STATE(40), + [sym_pipeline] = STATE(40), + [sym_list] = STATE(40), + [sym_command] = STATE(40), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(40), + [sym_variable_assignment] = STATE(41), + [sym_declaration_command] = STATE(40), + [sym_unset_command] = STATE(40), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [151] = { + [sym_concatenation] = STATE(479), + [sym_string] = STATE(478), + [sym_simple_expansion] = STATE(478), + [sym_string_expansion] = STATE(478), + [sym_expansion] = STATE(478), + [sym_command_substitution] = STATE(478), + [sym_process_substitution] = STATE(478), + [sym__special_characters] = ACTIONS(870), [anon_sym_DQUOTE] = ACTIONS(72), [anon_sym_DOLLAR] = ACTIONS(74), - [sym_raw_string] = ACTIONS(854), + [sym_raw_string] = ACTIONS(872), [anon_sym_DOLLAR_LBRACE] = ACTIONS(78), [anon_sym_DOLLAR_LPAREN] = ACTIONS(80), [anon_sym_BQUOTE] = ACTIONS(82), [anon_sym_LT_LPAREN] = ACTIONS(84), [anon_sym_GT_LPAREN] = ACTIONS(84), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(856), + [sym_word] = ACTIONS(874), }, - [150] = { + [152] = { [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(858), + [sym_word] = ACTIONS(876), }, - [151] = { + [153] = { [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(470), - [sym_while_statement] = STATE(470), - [sym_if_statement] = STATE(470), - [sym_case_statement] = STATE(470), - [sym_function_definition] = STATE(470), - [sym_subshell] = STATE(470), - [sym_pipeline] = STATE(470), - [sym_list] = STATE(470), - [sym_bracket_command] = STATE(470), - [sym_command] = STATE(470), - [sym_command_name] = STATE(68), - [sym_variable_assignment] = STATE(471), - [sym_declaration_command] = STATE(470), - [sym_unset_command] = STATE(470), - [sym_subscript] = STATE(70), + [sym_for_statement] = STATE(481), + [sym_while_statement] = STATE(481), + [sym_if_statement] = STATE(481), + [sym_case_statement] = STATE(481), + [sym_function_definition] = STATE(481), + [sym_subshell] = STATE(481), + [sym_pipeline] = STATE(481), + [sym_list] = STATE(481), + [sym_command] = STATE(481), + [sym_command_name] = STATE(70), + [sym_bracket_command] = STATE(481), + [sym_variable_assignment] = STATE(482), + [sym_declaration_command] = STATE(481), + [sym_unset_command] = STATE(481), + [sym_subscript] = STATE(72), [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(472), - [aux_sym_command_repeat1] = STATE(72), + [sym_string] = STATE(63), + [sym_simple_expansion] = STATE(63), + [sym_string_expansion] = STATE(63), + [sym_expansion] = STATE(63), + [sym_command_substitution] = STATE(63), + [sym_process_substitution] = STATE(63), + [aux_sym_program_repeat1] = STATE(483), + [aux_sym_command_repeat1] = STATE(74), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(90), [anon_sym_for] = ACTIONS(16), @@ -13700,15 +15063,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(94), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(96), - [anon_sym_typeset] = ACTIONS(96), - [anon_sym_export] = ACTIONS(96), - [anon_sym_readonly] = ACTIONS(96), - [anon_sym_local] = ACTIONS(96), - [anon_sym_unset] = ACTIONS(98), - [anon_sym_unsetenv] = ACTIONS(98), + [anon_sym_LBRACK] = ACTIONS(96), + [anon_sym_LBRACK_LBRACK] = ACTIONS(98), + [anon_sym_declare] = ACTIONS(100), + [anon_sym_typeset] = ACTIONS(100), + [anon_sym_export] = ACTIONS(100), + [anon_sym_readonly] = ACTIONS(100), + [anon_sym_local] = ACTIONS(100), + [anon_sym_unset] = ACTIONS(102), + [anon_sym_unsetenv] = ACTIONS(102), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -13716,386 +15079,266 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(100), - [anon_sym_DQUOTE] = ACTIONS(102), - [anon_sym_DOLLAR] = ACTIONS(104), - [sym_raw_string] = ACTIONS(106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(108), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(110), - [anon_sym_BQUOTE] = ACTIONS(112), - [anon_sym_LT_LPAREN] = ACTIONS(114), - [anon_sym_GT_LPAREN] = ACTIONS(114), + [sym__special_characters] = ACTIONS(104), + [anon_sym_DQUOTE] = ACTIONS(106), + [anon_sym_DOLLAR] = ACTIONS(108), + [sym_raw_string] = ACTIONS(110), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(112), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(114), + [anon_sym_BQUOTE] = ACTIONS(116), + [anon_sym_LT_LPAREN] = ACTIONS(118), + [anon_sym_GT_LPAREN] = ACTIONS(118), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(116), - }, - [152] = { - [sym_concatenation] = STATE(82), - [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), - [aux_sym_bracket_command_repeat1] = STATE(473), - [anon_sym_EQ_TILDE] = ACTIONS(118), - [sym__special_characters] = ACTIONS(120), - [anon_sym_DQUOTE] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [sym_raw_string] = ACTIONS(126), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(128), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(130), - [anon_sym_BQUOTE] = ACTIONS(132), - [anon_sym_LT_LPAREN] = ACTIONS(134), - [anon_sym_GT_LPAREN] = ACTIONS(134), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(136), - }, - [153] = { - [sym_concatenation] = STATE(93), - [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), - [aux_sym_bracket_command_repeat1] = STATE(474), - [anon_sym_EQ_TILDE] = ACTIONS(138), - [sym__special_characters] = ACTIONS(140), - [anon_sym_DQUOTE] = ACTIONS(142), - [anon_sym_DOLLAR] = ACTIONS(144), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(148), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(150), - [anon_sym_BQUOTE] = ACTIONS(152), - [anon_sym_LT_LPAREN] = ACTIONS(154), - [anon_sym_GT_LPAREN] = ACTIONS(154), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(156), + [sym_word] = ACTIONS(120), }, [154] = { - [sym_variable_assignment] = STATE(485), - [sym_subscript] = STATE(486), - [sym_concatenation] = STATE(485), - [sym_string] = STATE(479), - [sym_simple_expansion] = STATE(479), - [sym_string_expansion] = STATE(479), - [sym_expansion] = STATE(479), - [sym_command_substitution] = STATE(479), - [sym_process_substitution] = STATE(479), - [aux_sym_declaration_command_repeat1] = STATE(487), - [sym_variable_name] = ACTIONS(860), - [anon_sym_PIPE] = ACTIONS(862), - [anon_sym_RPAREN] = ACTIONS(864), - [anon_sym_PIPE_AMP] = ACTIONS(864), - [anon_sym_AMP_AMP] = ACTIONS(864), - [anon_sym_PIPE_PIPE] = ACTIONS(864), - [sym__special_characters] = ACTIONS(866), - [anon_sym_DQUOTE] = ACTIONS(868), - [anon_sym_DOLLAR] = ACTIONS(870), - [sym_raw_string] = ACTIONS(872), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(878), - [anon_sym_LT_LPAREN] = ACTIONS(880), - [anon_sym_GT_LPAREN] = ACTIONS(880), + [sym_concatenation] = STATE(84), + [sym_string] = STATE(79), + [sym_simple_expansion] = STATE(79), + [sym_string_expansion] = STATE(79), + [sym_expansion] = STATE(79), + [sym_command_substitution] = STATE(79), + [sym_process_substitution] = STATE(79), + [aux_sym_command_repeat2] = STATE(484), + [anon_sym_EQ_TILDE] = ACTIONS(122), + [sym__special_characters] = ACTIONS(124), + [anon_sym_DQUOTE] = ACTIONS(126), + [anon_sym_DOLLAR] = ACTIONS(128), + [sym_raw_string] = ACTIONS(130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(132), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(134), + [anon_sym_BQUOTE] = ACTIONS(136), + [anon_sym_LT_LPAREN] = ACTIONS(138), + [anon_sym_GT_LPAREN] = ACTIONS(138), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(882), - [sym_word] = ACTIONS(884), + [sym_word] = ACTIONS(140), }, [155] = { - [sym_concatenation] = STATE(497), - [sym_string] = STATE(491), - [sym_simple_expansion] = STATE(491), - [sym_string_expansion] = STATE(491), - [sym_expansion] = STATE(491), - [sym_command_substitution] = STATE(491), - [sym_process_substitution] = STATE(491), - [aux_sym_unset_command_repeat1] = STATE(498), - [anon_sym_PIPE] = ACTIONS(886), - [anon_sym_RPAREN] = ACTIONS(888), - [anon_sym_PIPE_AMP] = ACTIONS(888), - [anon_sym_AMP_AMP] = ACTIONS(888), - [anon_sym_PIPE_PIPE] = ACTIONS(888), - [sym__special_characters] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(892), - [anon_sym_DOLLAR] = ACTIONS(894), - [sym_raw_string] = ACTIONS(896), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(898), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(900), - [anon_sym_BQUOTE] = ACTIONS(902), - [anon_sym_LT_LPAREN] = ACTIONS(904), - [anon_sym_GT_LPAREN] = ACTIONS(904), + [sym_concatenation] = STATE(95), + [sym_string] = STATE(90), + [sym_simple_expansion] = STATE(90), + [sym_string_expansion] = STATE(90), + [sym_expansion] = STATE(90), + [sym_command_substitution] = STATE(90), + [sym_process_substitution] = STATE(90), + [aux_sym_command_repeat2] = STATE(485), + [anon_sym_EQ_TILDE] = ACTIONS(142), + [sym__special_characters] = ACTIONS(144), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [sym_raw_string] = ACTIONS(150), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(156), + [anon_sym_LT_LPAREN] = ACTIONS(158), + [anon_sym_GT_LPAREN] = ACTIONS(158), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(906), - [sym_word] = ACTIONS(908), + [sym_word] = ACTIONS(160), }, [156] = { - [aux_sym_concatenation_repeat1] = STATE(500), - [sym_file_descriptor] = ACTIONS(220), - [sym__concat] = ACTIONS(910), - [anon_sym_PIPE] = ACTIONS(912), - [anon_sym_RPAREN] = ACTIONS(220), - [anon_sym_PIPE_AMP] = ACTIONS(220), - [anon_sym_AMP_AMP] = ACTIONS(220), - [anon_sym_PIPE_PIPE] = ACTIONS(220), - [anon_sym_LT] = ACTIONS(912), - [anon_sym_GT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(220), - [anon_sym_AMP_GT] = ACTIONS(912), - [anon_sym_AMP_GT_GT] = ACTIONS(220), - [anon_sym_LT_AMP] = ACTIONS(220), - [anon_sym_GT_AMP] = ACTIONS(220), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_LT_LT_DASH] = ACTIONS(220), - [anon_sym_LT_LT_LT] = ACTIONS(220), - [sym__special_characters] = ACTIONS(912), - [anon_sym_DQUOTE] = ACTIONS(220), - [anon_sym_DOLLAR] = ACTIONS(912), - [sym_raw_string] = ACTIONS(220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(220), - [anon_sym_BQUOTE] = ACTIONS(220), - [anon_sym_LT_LPAREN] = ACTIONS(220), - [anon_sym_GT_LPAREN] = ACTIONS(220), + [sym_variable_assignment] = STATE(496), + [sym_subscript] = STATE(497), + [sym_concatenation] = STATE(496), + [sym_string] = STATE(490), + [sym_simple_expansion] = STATE(490), + [sym_string_expansion] = STATE(490), + [sym_expansion] = STATE(490), + [sym_command_substitution] = STATE(490), + [sym_process_substitution] = STATE(490), + [aux_sym_declaration_command_repeat1] = STATE(498), + [sym_variable_name] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_RPAREN] = ACTIONS(882), + [anon_sym_PIPE_AMP] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__special_characters] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(886), + [anon_sym_DOLLAR] = ACTIONS(888), + [sym_raw_string] = ACTIONS(890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(894), + [anon_sym_BQUOTE] = ACTIONS(896), + [anon_sym_LT_LPAREN] = ACTIONS(898), + [anon_sym_GT_LPAREN] = ACTIONS(898), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(912), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(900), + [sym_word] = ACTIONS(902), }, [157] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(502), - [anon_sym_DQUOTE] = ACTIONS(914), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym_concatenation] = STATE(508), + [sym_string] = STATE(502), + [sym_simple_expansion] = STATE(502), + [sym_string_expansion] = STATE(502), + [sym_expansion] = STATE(502), + [sym_command_substitution] = STATE(502), + [sym_process_substitution] = STATE(502), + [aux_sym_unset_command_repeat1] = STATE(509), + [anon_sym_PIPE] = ACTIONS(904), + [anon_sym_RPAREN] = ACTIONS(906), + [anon_sym_PIPE_AMP] = ACTIONS(906), + [anon_sym_AMP_AMP] = ACTIONS(906), + [anon_sym_PIPE_PIPE] = ACTIONS(906), + [sym__special_characters] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(910), + [anon_sym_DOLLAR] = ACTIONS(912), + [sym_raw_string] = ACTIONS(914), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(916), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(920), + [anon_sym_LT_LPAREN] = ACTIONS(922), + [anon_sym_GT_LPAREN] = ACTIONS(922), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(924), + [sym_word] = ACTIONS(926), }, [158] = { - [sym_string] = STATE(505), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(916), - [anon_sym_POUND] = ACTIONS(916), - [anon_sym_DASH] = ACTIONS(916), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(918), - [anon_sym_STAR] = ACTIONS(916), - [anon_sym_AT] = ACTIONS(916), - [anon_sym_QMARK] = ACTIONS(916), - [anon_sym_0] = ACTIONS(920), - [anon_sym__] = ACTIONS(920), + [aux_sym_concatenation_repeat1] = STATE(511), + [sym_file_descriptor] = ACTIONS(224), + [sym__concat] = ACTIONS(928), + [anon_sym_PIPE] = ACTIONS(930), + [anon_sym_RPAREN] = ACTIONS(224), + [anon_sym_PIPE_AMP] = ACTIONS(224), + [anon_sym_AMP_AMP] = ACTIONS(224), + [anon_sym_PIPE_PIPE] = ACTIONS(224), + [anon_sym_EQ_TILDE] = ACTIONS(930), + [anon_sym_LT] = ACTIONS(930), + [anon_sym_GT] = ACTIONS(930), + [anon_sym_GT_GT] = ACTIONS(224), + [anon_sym_AMP_GT] = ACTIONS(930), + [anon_sym_AMP_GT_GT] = ACTIONS(224), + [anon_sym_LT_AMP] = ACTIONS(224), + [anon_sym_GT_AMP] = ACTIONS(224), + [anon_sym_LT_LT] = ACTIONS(930), + [anon_sym_LT_LT_DASH] = ACTIONS(224), + [anon_sym_LT_LT_LT] = ACTIONS(224), + [sym__special_characters] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(224), + [anon_sym_DOLLAR] = ACTIONS(930), + [sym_raw_string] = ACTIONS(224), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(224), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(224), + [anon_sym_GT_LPAREN] = ACTIONS(224), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(228), }, [159] = { - [aux_sym_concatenation_repeat1] = STATE(500), - [sym_file_descriptor] = ACTIONS(244), - [sym__concat] = ACTIONS(910), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_RPAREN] = ACTIONS(244), - [anon_sym_PIPE_AMP] = ACTIONS(244), - [anon_sym_AMP_AMP] = ACTIONS(244), - [anon_sym_PIPE_PIPE] = ACTIONS(244), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_GT_GT] = ACTIONS(244), - [anon_sym_AMP_GT] = ACTIONS(922), - [anon_sym_AMP_GT_GT] = ACTIONS(244), - [anon_sym_LT_AMP] = ACTIONS(244), - [anon_sym_GT_AMP] = ACTIONS(244), - [anon_sym_LT_LT] = ACTIONS(922), - [anon_sym_LT_LT_DASH] = ACTIONS(244), - [anon_sym_LT_LT_LT] = ACTIONS(244), - [sym__special_characters] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(244), - [anon_sym_DOLLAR] = ACTIONS(922), - [sym_raw_string] = ACTIONS(244), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(244), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(244), - [anon_sym_BQUOTE] = ACTIONS(244), - [anon_sym_LT_LPAREN] = ACTIONS(244), - [anon_sym_GT_LPAREN] = ACTIONS(244), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(922), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(513), + [anon_sym_DQUOTE] = ACTIONS(932), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, [160] = { - [sym_subscript] = STATE(510), - [sym_variable_name] = ACTIONS(924), - [anon_sym_DOLLAR] = ACTIONS(926), - [anon_sym_POUND] = ACTIONS(928), - [anon_sym_DASH] = ACTIONS(926), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(930), - [anon_sym_STAR] = ACTIONS(926), - [anon_sym_AT] = ACTIONS(926), - [anon_sym_QMARK] = ACTIONS(926), - [anon_sym_0] = ACTIONS(932), - [anon_sym__] = ACTIONS(932), + [sym_string] = STATE(516), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(934), + [anon_sym_POUND] = ACTIONS(934), + [anon_sym_DASH] = ACTIONS(934), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(936), + [anon_sym_STAR] = ACTIONS(934), + [anon_sym_AT] = ACTIONS(934), + [anon_sym_QMARK] = ACTIONS(934), + [anon_sym_0] = ACTIONS(938), + [anon_sym__] = ACTIONS(938), }, [161] = { - [sym_for_statement] = STATE(511), - [sym_while_statement] = STATE(511), - [sym_if_statement] = STATE(511), - [sym_case_statement] = STATE(511), - [sym_function_definition] = STATE(511), - [sym_subshell] = STATE(511), - [sym_pipeline] = STATE(511), - [sym_list] = STATE(511), - [sym_bracket_command] = STATE(511), - [sym_command] = STATE(511), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(512), - [sym_declaration_command] = STATE(511), - [sym_unset_command] = STATE(511), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [aux_sym_concatenation_repeat1] = STATE(511), + [sym_file_descriptor] = ACTIONS(248), + [sym__concat] = ACTIONS(928), + [anon_sym_PIPE] = ACTIONS(940), + [anon_sym_RPAREN] = ACTIONS(248), + [anon_sym_PIPE_AMP] = ACTIONS(248), + [anon_sym_AMP_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(248), + [anon_sym_EQ_TILDE] = ACTIONS(940), + [anon_sym_LT] = ACTIONS(940), + [anon_sym_GT] = ACTIONS(940), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_AMP_GT] = ACTIONS(940), + [anon_sym_AMP_GT_GT] = ACTIONS(248), + [anon_sym_LT_AMP] = ACTIONS(248), + [anon_sym_GT_AMP] = ACTIONS(248), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_LT_LT_DASH] = ACTIONS(248), + [anon_sym_LT_LT_LT] = ACTIONS(248), + [sym__special_characters] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(248), + [anon_sym_DOLLAR] = ACTIONS(940), + [sym_raw_string] = ACTIONS(248), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(248), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(248), + [anon_sym_BQUOTE] = ACTIONS(248), + [anon_sym_LT_LPAREN] = ACTIONS(248), + [anon_sym_GT_LPAREN] = ACTIONS(248), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym_word] = ACTIONS(250), }, [162] = { - [sym_for_statement] = STATE(513), - [sym_while_statement] = STATE(513), - [sym_if_statement] = STATE(513), - [sym_case_statement] = STATE(513), - [sym_function_definition] = STATE(513), - [sym_subshell] = STATE(513), - [sym_pipeline] = STATE(513), - [sym_list] = STATE(513), - [sym_bracket_command] = STATE(513), - [sym_command] = STATE(513), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(514), - [sym_declaration_command] = STATE(513), - [sym_unset_command] = STATE(513), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), + [sym_subscript] = STATE(521), + [sym_variable_name] = ACTIONS(942), + [anon_sym_DOLLAR] = ACTIONS(944), + [anon_sym_POUND] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(944), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(948), + [anon_sym_STAR] = ACTIONS(944), + [anon_sym_AT] = ACTIONS(944), + [anon_sym_QMARK] = ACTIONS(944), + [anon_sym_0] = ACTIONS(950), + [anon_sym__] = ACTIONS(950), }, [163] = { - [sym_for_statement] = STATE(515), - [sym_while_statement] = STATE(515), - [sym_if_statement] = STATE(515), - [sym_case_statement] = STATE(515), - [sym_function_definition] = STATE(515), - [sym_subshell] = STATE(515), - [sym_pipeline] = STATE(515), - [sym_list] = STATE(515), - [sym_bracket_command] = STATE(515), - [sym_command] = STATE(515), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(516), - [sym_declaration_command] = STATE(515), - [sym_unset_command] = STATE(515), - [sym_subscript] = STATE(168), + [sym_for_statement] = STATE(522), + [sym_while_statement] = STATE(522), + [sym_if_statement] = STATE(522), + [sym_case_statement] = STATE(522), + [sym_function_definition] = STATE(522), + [sym_subshell] = STATE(522), + [sym_pipeline] = STATE(522), + [sym_list] = STATE(522), + [sym_command] = STATE(522), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(522), + [sym_variable_assignment] = STATE(523), + [sym_declaration_command] = STATE(522), + [sym_unset_command] = STATE(522), + [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -14103,176 +15346,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym_word] = ACTIONS(300), }, [164] = { - [aux_sym_concatenation_repeat1] = STATE(500), - [sym_file_descriptor] = ACTIONS(244), - [sym__concat] = ACTIONS(910), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_RPAREN] = ACTIONS(244), - [anon_sym_LPAREN] = ACTIONS(934), - [anon_sym_PIPE_AMP] = ACTIONS(244), - [anon_sym_AMP_AMP] = ACTIONS(244), - [anon_sym_PIPE_PIPE] = ACTIONS(244), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_GT_GT] = ACTIONS(244), - [anon_sym_AMP_GT] = ACTIONS(922), - [anon_sym_AMP_GT_GT] = ACTIONS(244), - [anon_sym_LT_AMP] = ACTIONS(244), - [anon_sym_GT_AMP] = ACTIONS(244), - [anon_sym_LT_LT] = ACTIONS(922), - [anon_sym_LT_LT_DASH] = ACTIONS(244), - [anon_sym_LT_LT_LT] = ACTIONS(244), - [sym__special_characters] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(244), - [anon_sym_DOLLAR] = ACTIONS(922), - [sym_raw_string] = ACTIONS(244), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(244), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(244), - [anon_sym_BQUOTE] = ACTIONS(244), - [anon_sym_LT_LPAREN] = ACTIONS(244), - [anon_sym_GT_LPAREN] = ACTIONS(244), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(922), - }, - [165] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(938), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [166] = { - [sym_file_redirect] = STATE(527), - [sym_heredoc_redirect] = STATE(527), - [sym_herestring_redirect] = STATE(527), - [sym_concatenation] = STATE(528), - [sym_string] = STATE(526), - [sym_simple_expansion] = STATE(526), - [sym_string_expansion] = STATE(526), - [sym_expansion] = STATE(526), - [sym_command_substitution] = STATE(526), - [sym_process_substitution] = STATE(526), - [aux_sym_for_statement_repeat1] = STATE(529), - [aux_sym_while_statement_repeat1] = STATE(530), - [sym_file_descriptor] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(946), - [anon_sym_RPAREN] = ACTIONS(948), - [anon_sym_PIPE_AMP] = ACTIONS(948), - [anon_sym_AMP_AMP] = ACTIONS(948), - [anon_sym_PIPE_PIPE] = ACTIONS(948), - [anon_sym_LT] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_GT_GT] = ACTIONS(952), - [anon_sym_AMP_GT] = ACTIONS(950), - [anon_sym_AMP_GT_GT] = ACTIONS(952), - [anon_sym_LT_AMP] = ACTIONS(952), - [anon_sym_GT_AMP] = ACTIONS(952), - [anon_sym_LT_LT] = ACTIONS(954), - [anon_sym_LT_LT_DASH] = ACTIONS(956), - [anon_sym_LT_LT_LT] = ACTIONS(958), - [sym__special_characters] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(962), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(964), - }, - [167] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(938), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [168] = { - [sym__assignment] = STATE(462), - [anon_sym_EQ] = ACTIONS(848), - [anon_sym_PLUS_EQ] = ACTIONS(848), - [sym_comment] = ACTIONS(56), - }, - [169] = { - [sym_file_descriptor] = ACTIONS(244), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_RPAREN] = ACTIONS(244), - [anon_sym_PIPE_AMP] = ACTIONS(244), - [anon_sym_AMP_AMP] = ACTIONS(244), - [anon_sym_PIPE_PIPE] = ACTIONS(244), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_GT_GT] = ACTIONS(244), - [anon_sym_AMP_GT] = ACTIONS(922), - [anon_sym_AMP_GT_GT] = ACTIONS(244), - [anon_sym_LT_AMP] = ACTIONS(244), - [anon_sym_GT_AMP] = ACTIONS(244), - [anon_sym_LT_LT] = ACTIONS(922), - [anon_sym_LT_LT_DASH] = ACTIONS(244), - [anon_sym_LT_LT_LT] = ACTIONS(244), - [sym__special_characters] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(244), - [anon_sym_DOLLAR] = ACTIONS(922), - [sym_raw_string] = ACTIONS(244), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(244), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(244), - [anon_sym_BQUOTE] = ACTIONS(244), - [anon_sym_LT_LPAREN] = ACTIONS(244), - [anon_sym_GT_LPAREN] = ACTIONS(244), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(922), - }, - [170] = { - [sym_command_name] = STATE(531), - [sym_variable_assignment] = STATE(30), - [sym_subscript] = STATE(209), + [sym_for_statement] = STATE(524), + [sym_while_statement] = STATE(524), + [sym_if_statement] = STATE(524), + [sym_case_statement] = STATE(524), + [sym_function_definition] = STATE(524), + [sym_subshell] = STATE(524), + [sym_pipeline] = STATE(524), + [sym_list] = STATE(524), + [sym_command] = STATE(524), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(524), + [sym_variable_assignment] = STATE(525), + [sym_declaration_command] = STATE(524), + [sym_unset_command] = STATE(524), + [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(210), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(376), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -14280,27 +15407,268 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), + }, + [165] = { + [sym_for_statement] = STATE(526), + [sym_while_statement] = STATE(526), + [sym_if_statement] = STATE(526), + [sym_case_statement] = STATE(526), + [sym_function_definition] = STATE(526), + [sym_subshell] = STATE(526), + [sym_pipeline] = STATE(526), + [sym_list] = STATE(526), + [sym_command] = STATE(526), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(526), + [sym_variable_assignment] = STATE(527), + [sym_declaration_command] = STATE(526), + [sym_unset_command] = STATE(526), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [166] = { + [aux_sym_concatenation_repeat1] = STATE(511), + [sym_file_descriptor] = ACTIONS(248), + [sym__concat] = ACTIONS(928), + [anon_sym_PIPE] = ACTIONS(940), + [anon_sym_RPAREN] = ACTIONS(248), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_PIPE_AMP] = ACTIONS(248), + [anon_sym_AMP_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(248), + [anon_sym_EQ_TILDE] = ACTIONS(940), + [anon_sym_LT] = ACTIONS(940), + [anon_sym_GT] = ACTIONS(940), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_AMP_GT] = ACTIONS(940), + [anon_sym_AMP_GT_GT] = ACTIONS(248), + [anon_sym_LT_AMP] = ACTIONS(248), + [anon_sym_GT_AMP] = ACTIONS(248), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_LT_LT_DASH] = ACTIONS(248), + [anon_sym_LT_LT_LT] = ACTIONS(248), + [sym__special_characters] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(248), + [anon_sym_DOLLAR] = ACTIONS(940), + [sym_raw_string] = ACTIONS(248), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(248), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(248), + [anon_sym_BQUOTE] = ACTIONS(248), + [anon_sym_LT_LPAREN] = ACTIONS(248), + [anon_sym_GT_LPAREN] = ACTIONS(248), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(250), + }, + [167] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(956), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [168] = { + [sym_file_redirect] = STATE(539), + [sym_heredoc_redirect] = STATE(539), + [sym_herestring_redirect] = STATE(539), + [sym_concatenation] = STATE(540), + [sym_string] = STATE(538), + [sym_simple_expansion] = STATE(538), + [sym_string_expansion] = STATE(538), + [sym_expansion] = STATE(538), + [sym_command_substitution] = STATE(538), + [sym_process_substitution] = STATE(538), + [aux_sym_while_statement_repeat1] = STATE(541), + [aux_sym_command_repeat2] = STATE(542), + [sym_file_descriptor] = ACTIONS(962), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_PIPE_AMP] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(966), + [anon_sym_PIPE_PIPE] = ACTIONS(966), + [anon_sym_EQ_TILDE] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(970), + [anon_sym_GT] = ACTIONS(970), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_AMP_GT] = ACTIONS(970), + [anon_sym_AMP_GT_GT] = ACTIONS(972), + [anon_sym_LT_AMP] = ACTIONS(972), + [anon_sym_GT_AMP] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_LT_LT_DASH] = ACTIONS(976), + [anon_sym_LT_LT_LT] = ACTIONS(978), + [sym__special_characters] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(982), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(984), + }, + [169] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(956), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [170] = { + [sym__assignment] = STATE(473), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_PLUS_EQ] = ACTIONS(866), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(968), }, [171] = { - [sym__assignment] = STATE(462), - [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(970), - [anon_sym_PLUS_EQ] = ACTIONS(970), + [sym_file_descriptor] = ACTIONS(248), + [anon_sym_PIPE] = ACTIONS(940), + [anon_sym_RPAREN] = ACTIONS(248), + [anon_sym_PIPE_AMP] = ACTIONS(248), + [anon_sym_AMP_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(248), + [anon_sym_EQ_TILDE] = ACTIONS(940), + [anon_sym_LT] = ACTIONS(940), + [anon_sym_GT] = ACTIONS(940), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_AMP_GT] = ACTIONS(940), + [anon_sym_AMP_GT_GT] = ACTIONS(248), + [anon_sym_LT_AMP] = ACTIONS(248), + [anon_sym_GT_AMP] = ACTIONS(248), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_LT_LT_DASH] = ACTIONS(248), + [anon_sym_LT_LT_LT] = ACTIONS(248), + [sym__special_characters] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(248), + [anon_sym_DOLLAR] = ACTIONS(940), + [sym_raw_string] = ACTIONS(248), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(248), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(248), + [anon_sym_BQUOTE] = ACTIONS(248), + [anon_sym_LT_LPAREN] = ACTIONS(248), + [anon_sym_GT_LPAREN] = ACTIONS(248), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(250), }, [172] = { - [sym__terminated_statement] = STATE(533), + [sym_command_name] = STATE(543), + [sym_variable_assignment] = STATE(30), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(215), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(386), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(988), + }, + [173] = { + [sym__assignment] = STATE(473), + [anon_sym_LBRACK] = ACTIONS(64), + [anon_sym_EQ] = ACTIONS(990), + [anon_sym_PLUS_EQ] = ACTIONS(990), + [sym_comment] = ACTIONS(56), + }, + [174] = { + [sym__terminated_statement] = STATE(545), [sym_for_statement] = STATE(40), [sym_while_statement] = STATE(40), [sym_if_statement] = STATE(40), @@ -14309,9 +15677,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(40), [sym_pipeline] = STATE(40), [sym_list] = STATE(40), - [sym_bracket_command] = STATE(40), [sym_command] = STATE(40), [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(40), [sym_variable_assignment] = STATE(41), [sym_declaration_command] = STATE(40), [sym_unset_command] = STATE(40), @@ -14361,475 +15729,254 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(58), }, - [173] = { - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(972), - }, - [174] = { - [sym_variable_assignment] = STATE(485), - [sym_subscript] = STATE(544), - [sym_concatenation] = STATE(485), - [sym_string] = STATE(539), - [sym_simple_expansion] = STATE(539), - [sym_string_expansion] = STATE(539), - [sym_expansion] = STATE(539), - [sym_command_substitution] = STATE(539), - [sym_process_substitution] = STATE(539), - [aux_sym_declaration_command_repeat1] = STATE(545), - [sym_variable_name] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(862), - [anon_sym_PIPE_AMP] = ACTIONS(864), - [anon_sym_AMP_AMP] = ACTIONS(864), - [anon_sym_PIPE_PIPE] = ACTIONS(864), - [sym__special_characters] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(980), - [sym_raw_string] = ACTIONS(982), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(984), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(986), - [anon_sym_BQUOTE] = ACTIONS(864), - [anon_sym_LT_LPAREN] = ACTIONS(988), - [anon_sym_GT_LPAREN] = ACTIONS(988), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(882), - [sym_word] = ACTIONS(990), - }, [175] = { - [sym_concatenation] = STATE(497), - [sym_string] = STATE(549), - [sym_simple_expansion] = STATE(549), - [sym_string_expansion] = STATE(549), - [sym_expansion] = STATE(549), - [sym_command_substitution] = STATE(549), - [sym_process_substitution] = STATE(549), - [aux_sym_unset_command_repeat1] = STATE(554), - [anon_sym_PIPE] = ACTIONS(886), - [anon_sym_PIPE_AMP] = ACTIONS(888), - [anon_sym_AMP_AMP] = ACTIONS(888), - [anon_sym_PIPE_PIPE] = ACTIONS(888), - [sym__special_characters] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(996), - [sym_raw_string] = ACTIONS(998), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1000), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1002), - [anon_sym_BQUOTE] = ACTIONS(888), - [anon_sym_LT_LPAREN] = ACTIONS(1004), - [anon_sym_GT_LPAREN] = ACTIONS(1004), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(906), - [sym_word] = ACTIONS(1006), + [sym_word] = ACTIONS(992), }, [176] = { - [aux_sym_concatenation_repeat1] = STATE(556), - [sym_file_descriptor] = ACTIONS(220), - [sym__concat] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(912), - [anon_sym_PIPE_AMP] = ACTIONS(220), - [anon_sym_AMP_AMP] = ACTIONS(220), - [anon_sym_PIPE_PIPE] = ACTIONS(220), - [anon_sym_LT] = ACTIONS(912), - [anon_sym_GT] = ACTIONS(912), - [anon_sym_GT_GT] = ACTIONS(220), - [anon_sym_AMP_GT] = ACTIONS(912), - [anon_sym_AMP_GT_GT] = ACTIONS(220), - [anon_sym_LT_AMP] = ACTIONS(220), - [anon_sym_GT_AMP] = ACTIONS(220), - [anon_sym_LT_LT] = ACTIONS(912), - [anon_sym_LT_LT_DASH] = ACTIONS(220), - [anon_sym_LT_LT_LT] = ACTIONS(220), - [sym__special_characters] = ACTIONS(912), - [anon_sym_DQUOTE] = ACTIONS(220), - [anon_sym_DOLLAR] = ACTIONS(912), - [sym_raw_string] = ACTIONS(220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(220), - [anon_sym_BQUOTE] = ACTIONS(220), - [anon_sym_LT_LPAREN] = ACTIONS(220), - [anon_sym_GT_LPAREN] = ACTIONS(220), + [sym_concatenation] = STATE(84), + [sym_string] = STATE(79), + [sym_simple_expansion] = STATE(79), + [sym_string_expansion] = STATE(79), + [sym_expansion] = STATE(79), + [sym_command_substitution] = STATE(79), + [sym_process_substitution] = STATE(79), + [aux_sym_command_repeat2] = STATE(547), + [anon_sym_EQ_TILDE] = ACTIONS(122), + [sym__special_characters] = ACTIONS(124), + [anon_sym_DQUOTE] = ACTIONS(126), + [anon_sym_DOLLAR] = ACTIONS(128), + [sym_raw_string] = ACTIONS(130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(132), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(134), + [anon_sym_BQUOTE] = ACTIONS(136), + [anon_sym_LT_LPAREN] = ACTIONS(138), + [anon_sym_GT_LPAREN] = ACTIONS(138), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(912), + [sym_word] = ACTIONS(140), }, [177] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(558), - [anon_sym_DQUOTE] = ACTIONS(1010), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym_concatenation] = STATE(95), + [sym_string] = STATE(90), + [sym_simple_expansion] = STATE(90), + [sym_string_expansion] = STATE(90), + [sym_expansion] = STATE(90), + [sym_command_substitution] = STATE(90), + [sym_process_substitution] = STATE(90), + [aux_sym_command_repeat2] = STATE(548), + [anon_sym_EQ_TILDE] = ACTIONS(142), + [sym__special_characters] = ACTIONS(144), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [sym_raw_string] = ACTIONS(150), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(156), + [anon_sym_LT_LPAREN] = ACTIONS(158), + [anon_sym_GT_LPAREN] = ACTIONS(158), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(160), }, [178] = { - [sym_string] = STATE(561), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1012), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_AT] = ACTIONS(1012), - [anon_sym_QMARK] = ACTIONS(1012), - [anon_sym_0] = ACTIONS(1016), - [anon_sym__] = ACTIONS(1016), + [sym_variable_assignment] = STATE(496), + [sym_subscript] = STATE(558), + [sym_concatenation] = STATE(496), + [sym_string] = STATE(553), + [sym_simple_expansion] = STATE(553), + [sym_string_expansion] = STATE(553), + [sym_expansion] = STATE(553), + [sym_command_substitution] = STATE(553), + [sym_process_substitution] = STATE(553), + [aux_sym_declaration_command_repeat1] = STATE(559), + [sym_variable_name] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_PIPE_AMP] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [sym__special_characters] = ACTIONS(996), + [anon_sym_DQUOTE] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1000), + [sym_raw_string] = ACTIONS(1002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1004), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1006), + [anon_sym_BQUOTE] = ACTIONS(882), + [anon_sym_LT_LPAREN] = ACTIONS(1008), + [anon_sym_GT_LPAREN] = ACTIONS(1008), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(900), + [sym_word] = ACTIONS(1010), }, [179] = { - [aux_sym_concatenation_repeat1] = STATE(556), - [sym_file_descriptor] = ACTIONS(244), - [sym__concat] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_PIPE_AMP] = ACTIONS(244), - [anon_sym_AMP_AMP] = ACTIONS(244), - [anon_sym_PIPE_PIPE] = ACTIONS(244), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_GT_GT] = ACTIONS(244), - [anon_sym_AMP_GT] = ACTIONS(922), - [anon_sym_AMP_GT_GT] = ACTIONS(244), - [anon_sym_LT_AMP] = ACTIONS(244), - [anon_sym_GT_AMP] = ACTIONS(244), - [anon_sym_LT_LT] = ACTIONS(922), - [anon_sym_LT_LT_DASH] = ACTIONS(244), - [anon_sym_LT_LT_LT] = ACTIONS(244), - [sym__special_characters] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(244), - [anon_sym_DOLLAR] = ACTIONS(922), - [sym_raw_string] = ACTIONS(244), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(244), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(244), - [anon_sym_BQUOTE] = ACTIONS(244), - [anon_sym_LT_LPAREN] = ACTIONS(244), - [anon_sym_GT_LPAREN] = ACTIONS(244), + [sym_concatenation] = STATE(508), + [sym_string] = STATE(563), + [sym_simple_expansion] = STATE(563), + [sym_string_expansion] = STATE(563), + [sym_expansion] = STATE(563), + [sym_command_substitution] = STATE(563), + [sym_process_substitution] = STATE(563), + [aux_sym_unset_command_repeat1] = STATE(568), + [anon_sym_PIPE] = ACTIONS(904), + [anon_sym_PIPE_AMP] = ACTIONS(906), + [anon_sym_AMP_AMP] = ACTIONS(906), + [anon_sym_PIPE_PIPE] = ACTIONS(906), + [sym__special_characters] = ACTIONS(1012), + [anon_sym_DQUOTE] = ACTIONS(1014), + [anon_sym_DOLLAR] = ACTIONS(1016), + [sym_raw_string] = ACTIONS(1018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1020), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1022), + [anon_sym_BQUOTE] = ACTIONS(906), + [anon_sym_LT_LPAREN] = ACTIONS(1024), + [anon_sym_GT_LPAREN] = ACTIONS(1024), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(922), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(924), + [sym_word] = ACTIONS(1026), }, [180] = { - [sym_subscript] = STATE(566), - [sym_variable_name] = ACTIONS(1018), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(1022), - [anon_sym_DASH] = ACTIONS(1020), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1020), - [anon_sym_AT] = ACTIONS(1020), - [anon_sym_QMARK] = ACTIONS(1020), - [anon_sym_0] = ACTIONS(1026), - [anon_sym__] = ACTIONS(1026), + [aux_sym_concatenation_repeat1] = STATE(570), + [sym_file_descriptor] = ACTIONS(224), + [sym__concat] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(930), + [anon_sym_PIPE_AMP] = ACTIONS(224), + [anon_sym_AMP_AMP] = ACTIONS(224), + [anon_sym_PIPE_PIPE] = ACTIONS(224), + [anon_sym_EQ_TILDE] = ACTIONS(930), + [anon_sym_LT] = ACTIONS(930), + [anon_sym_GT] = ACTIONS(930), + [anon_sym_GT_GT] = ACTIONS(224), + [anon_sym_AMP_GT] = ACTIONS(930), + [anon_sym_AMP_GT_GT] = ACTIONS(224), + [anon_sym_LT_AMP] = ACTIONS(224), + [anon_sym_GT_AMP] = ACTIONS(224), + [anon_sym_LT_LT] = ACTIONS(930), + [anon_sym_LT_LT_DASH] = ACTIONS(224), + [anon_sym_LT_LT_LT] = ACTIONS(224), + [sym__special_characters] = ACTIONS(930), + [anon_sym_DQUOTE] = ACTIONS(224), + [anon_sym_DOLLAR] = ACTIONS(930), + [sym_raw_string] = ACTIONS(224), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(224), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), + [anon_sym_BQUOTE] = ACTIONS(224), + [anon_sym_LT_LPAREN] = ACTIONS(224), + [anon_sym_GT_LPAREN] = ACTIONS(224), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(228), }, [181] = { - [sym_for_statement] = STATE(567), - [sym_while_statement] = STATE(567), - [sym_if_statement] = STATE(567), - [sym_case_statement] = STATE(567), - [sym_function_definition] = STATE(567), - [sym_subshell] = STATE(567), - [sym_pipeline] = STATE(567), - [sym_list] = STATE(567), - [sym_bracket_command] = STATE(567), - [sym_command] = STATE(567), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(568), - [sym_declaration_command] = STATE(567), - [sym_unset_command] = STATE(567), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(572), + [anon_sym_DQUOTE] = ACTIONS(1030), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, [182] = { - [sym_for_statement] = STATE(569), - [sym_while_statement] = STATE(569), - [sym_if_statement] = STATE(569), - [sym_case_statement] = STATE(569), - [sym_function_definition] = STATE(569), - [sym_subshell] = STATE(569), - [sym_pipeline] = STATE(569), - [sym_list] = STATE(569), - [sym_bracket_command] = STATE(569), - [sym_command] = STATE(569), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(570), - [sym_declaration_command] = STATE(569), - [sym_unset_command] = STATE(569), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), + [sym_string] = STATE(575), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(1032), + [anon_sym_POUND] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1032), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1034), + [anon_sym_STAR] = ACTIONS(1032), + [anon_sym_AT] = ACTIONS(1032), + [anon_sym_QMARK] = ACTIONS(1032), + [anon_sym_0] = ACTIONS(1036), + [anon_sym__] = ACTIONS(1036), }, [183] = { - [sym_for_statement] = STATE(571), - [sym_while_statement] = STATE(571), - [sym_if_statement] = STATE(571), - [sym_case_statement] = STATE(571), - [sym_function_definition] = STATE(571), - [sym_subshell] = STATE(571), - [sym_pipeline] = STATE(571), - [sym_list] = STATE(571), - [sym_bracket_command] = STATE(571), - [sym_command] = STATE(571), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(572), - [sym_declaration_command] = STATE(571), - [sym_unset_command] = STATE(571), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [aux_sym_concatenation_repeat1] = STATE(570), + [sym_file_descriptor] = ACTIONS(248), + [sym__concat] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(940), + [anon_sym_PIPE_AMP] = ACTIONS(248), + [anon_sym_AMP_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(248), + [anon_sym_EQ_TILDE] = ACTIONS(940), + [anon_sym_LT] = ACTIONS(940), + [anon_sym_GT] = ACTIONS(940), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_AMP_GT] = ACTIONS(940), + [anon_sym_AMP_GT_GT] = ACTIONS(248), + [anon_sym_LT_AMP] = ACTIONS(248), + [anon_sym_GT_AMP] = ACTIONS(248), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_LT_LT_DASH] = ACTIONS(248), + [anon_sym_LT_LT_LT] = ACTIONS(248), + [sym__special_characters] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(248), + [anon_sym_DOLLAR] = ACTIONS(940), + [sym_raw_string] = ACTIONS(248), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(248), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(248), + [anon_sym_BQUOTE] = ACTIONS(248), + [anon_sym_LT_LPAREN] = ACTIONS(248), + [anon_sym_GT_LPAREN] = ACTIONS(248), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym_word] = ACTIONS(250), }, [184] = { - [aux_sym_concatenation_repeat1] = STATE(556), - [sym_file_descriptor] = ACTIONS(244), - [sym__concat] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(922), - [anon_sym_LPAREN] = ACTIONS(1028), - [anon_sym_PIPE_AMP] = ACTIONS(244), - [anon_sym_AMP_AMP] = ACTIONS(244), - [anon_sym_PIPE_PIPE] = ACTIONS(244), - [anon_sym_LT] = ACTIONS(922), - [anon_sym_GT] = ACTIONS(922), - [anon_sym_GT_GT] = ACTIONS(244), - [anon_sym_AMP_GT] = ACTIONS(922), - [anon_sym_AMP_GT_GT] = ACTIONS(244), - [anon_sym_LT_AMP] = ACTIONS(244), - [anon_sym_GT_AMP] = ACTIONS(244), - [anon_sym_LT_LT] = ACTIONS(922), - [anon_sym_LT_LT_DASH] = ACTIONS(244), - [anon_sym_LT_LT_LT] = ACTIONS(244), - [sym__special_characters] = ACTIONS(922), - [anon_sym_DQUOTE] = ACTIONS(244), - [anon_sym_DOLLAR] = ACTIONS(922), - [sym_raw_string] = ACTIONS(244), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(244), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(244), - [anon_sym_BQUOTE] = ACTIONS(244), - [anon_sym_LT_LPAREN] = ACTIONS(244), - [anon_sym_GT_LPAREN] = ACTIONS(244), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(922), + [sym_subscript] = STATE(580), + [sym_variable_name] = ACTIONS(1038), + [anon_sym_DOLLAR] = ACTIONS(1040), + [anon_sym_POUND] = ACTIONS(1042), + [anon_sym_DASH] = ACTIONS(1040), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1044), + [anon_sym_STAR] = ACTIONS(1040), + [anon_sym_AT] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_0] = ACTIONS(1046), + [anon_sym__] = ACTIONS(1046), }, [185] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(938), - [sym_comment] = ACTIONS(56), - }, - [186] = { - [sym_file_redirect] = STATE(527), - [sym_heredoc_redirect] = STATE(527), - [sym_herestring_redirect] = STATE(527), - [sym_concatenation] = STATE(528), - [sym_string] = STATE(580), - [sym_simple_expansion] = STATE(580), - [sym_string_expansion] = STATE(580), - [sym_expansion] = STATE(580), - [sym_command_substitution] = STATE(580), - [sym_process_substitution] = STATE(580), - [aux_sym_for_statement_repeat1] = STATE(581), - [aux_sym_while_statement_repeat1] = STATE(582), - [sym_file_descriptor] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(946), - [anon_sym_PIPE_AMP] = ACTIONS(948), - [anon_sym_AMP_AMP] = ACTIONS(948), - [anon_sym_PIPE_PIPE] = ACTIONS(948), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_GT] = ACTIONS(1038), - [anon_sym_GT_GT] = ACTIONS(1040), - [anon_sym_AMP_GT] = ACTIONS(1038), - [anon_sym_AMP_GT_GT] = ACTIONS(1040), - [anon_sym_LT_AMP] = ACTIONS(1040), - [anon_sym_GT_AMP] = ACTIONS(1040), - [anon_sym_LT_LT] = ACTIONS(954), - [anon_sym_LT_LT_DASH] = ACTIONS(956), - [anon_sym_LT_LT_LT] = ACTIONS(1042), - [sym__special_characters] = ACTIONS(1044), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(1046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(948), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1048), - }, - [187] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(938), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [188] = { - [sym__assignment] = STATE(462), - [anon_sym_EQ] = ACTIONS(970), - [anon_sym_PLUS_EQ] = ACTIONS(970), - [sym_comment] = ACTIONS(56), - }, - [189] = { - [sym_command_name] = STATE(583), - [sym_variable_assignment] = STATE(30), - [sym_subscript] = STATE(209), + [sym_for_statement] = STATE(581), + [sym_while_statement] = STATE(581), + [sym_if_statement] = STATE(581), + [sym_case_statement] = STATE(581), + [sym_function_definition] = STATE(581), + [sym_subshell] = STATE(581), + [sym_pipeline] = STATE(581), + [sym_list] = STATE(581), + [sym_command] = STATE(581), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(581), + [sym_variable_assignment] = STATE(582), + [sym_declaration_command] = STATE(581), + [sym_unset_command] = STATE(581), + [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(210), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(376), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -14837,99 +15984,268 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(1050), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [186] = { + [sym_for_statement] = STATE(583), + [sym_while_statement] = STATE(583), + [sym_if_statement] = STATE(583), + [sym_case_statement] = STATE(583), + [sym_function_definition] = STATE(583), + [sym_subshell] = STATE(583), + [sym_pipeline] = STATE(583), + [sym_list] = STATE(583), + [sym_command] = STATE(583), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(583), + [sym_variable_assignment] = STATE(584), + [sym_declaration_command] = STATE(583), + [sym_unset_command] = STATE(583), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), + }, + [187] = { + [sym_for_statement] = STATE(585), + [sym_while_statement] = STATE(585), + [sym_if_statement] = STATE(585), + [sym_case_statement] = STATE(585), + [sym_function_definition] = STATE(585), + [sym_subshell] = STATE(585), + [sym_pipeline] = STATE(585), + [sym_list] = STATE(585), + [sym_command] = STATE(585), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(585), + [sym_variable_assignment] = STATE(586), + [sym_declaration_command] = STATE(585), + [sym_unset_command] = STATE(585), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [188] = { + [aux_sym_concatenation_repeat1] = STATE(570), + [sym_file_descriptor] = ACTIONS(248), + [sym__concat] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(940), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_PIPE_AMP] = ACTIONS(248), + [anon_sym_AMP_AMP] = ACTIONS(248), + [anon_sym_PIPE_PIPE] = ACTIONS(248), + [anon_sym_EQ_TILDE] = ACTIONS(940), + [anon_sym_LT] = ACTIONS(940), + [anon_sym_GT] = ACTIONS(940), + [anon_sym_GT_GT] = ACTIONS(248), + [anon_sym_AMP_GT] = ACTIONS(940), + [anon_sym_AMP_GT_GT] = ACTIONS(248), + [anon_sym_LT_AMP] = ACTIONS(248), + [anon_sym_GT_AMP] = ACTIONS(248), + [anon_sym_LT_LT] = ACTIONS(940), + [anon_sym_LT_LT_DASH] = ACTIONS(248), + [anon_sym_LT_LT_LT] = ACTIONS(248), + [sym__special_characters] = ACTIONS(940), + [anon_sym_DQUOTE] = ACTIONS(248), + [anon_sym_DOLLAR] = ACTIONS(940), + [sym_raw_string] = ACTIONS(248), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(248), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(248), + [anon_sym_BQUOTE] = ACTIONS(248), + [anon_sym_LT_LPAREN] = ACTIONS(248), + [anon_sym_GT_LPAREN] = ACTIONS(248), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(250), + }, + [189] = { + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(956), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1052), }, [190] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1054), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), + [sym_file_redirect] = STATE(539), + [sym_heredoc_redirect] = STATE(539), + [sym_herestring_redirect] = STATE(539), + [sym_concatenation] = STATE(540), + [sym_string] = STATE(595), + [sym_simple_expansion] = STATE(595), + [sym_string_expansion] = STATE(595), + [sym_expansion] = STATE(595), + [sym_command_substitution] = STATE(595), + [sym_process_substitution] = STATE(595), + [aux_sym_while_statement_repeat1] = STATE(596), + [aux_sym_command_repeat2] = STATE(597), + [sym_file_descriptor] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(964), + [anon_sym_PIPE_AMP] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(966), + [anon_sym_PIPE_PIPE] = ACTIONS(966), + [anon_sym_EQ_TILDE] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1060), + [anon_sym_GT_GT] = ACTIONS(1062), + [anon_sym_AMP_GT] = ACTIONS(1060), + [anon_sym_AMP_GT_GT] = ACTIONS(1062), + [anon_sym_LT_AMP] = ACTIONS(1062), + [anon_sym_GT_AMP] = ACTIONS(1062), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_LT_LT_DASH] = ACTIONS(976), + [anon_sym_LT_LT_LT] = ACTIONS(1064), + [sym__special_characters] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(1068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(966), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1070), }, [191] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1054), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(956), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_word] = ACTIONS(382), }, [192] = { - [anon_sym_RPAREN] = ACTIONS(1056), + [sym__assignment] = STATE(473), + [anon_sym_EQ] = ACTIONS(990), + [anon_sym_PLUS_EQ] = ACTIONS(990), [sym_comment] = ACTIONS(56), }, [193] = { - [sym_for_statement] = STATE(586), - [sym_while_statement] = STATE(586), - [sym_if_statement] = STATE(586), - [sym_case_statement] = STATE(586), - [sym_function_definition] = STATE(586), - [sym_subshell] = STATE(586), - [sym_pipeline] = STATE(586), - [sym_list] = STATE(586), - [sym_bracket_command] = STATE(586), - [sym_command] = STATE(586), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(587), - [sym_declaration_command] = STATE(586), - [sym_unset_command] = STATE(586), - [sym_subscript] = STATE(29), + [sym_command_name] = STATE(598), + [sym_variable_assignment] = STATE(30), + [sym_subscript] = STATE(214), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_command_repeat1] = STATE(33), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(215), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), + [sym_variable_name] = ACTIONS(386), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -14937,369 +16253,494 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym__special_characters] = ACTIONS(1072), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [sym_word] = ACTIONS(1074), }, [194] = { - [sym_file_descriptor] = ACTIONS(1058), - [sym_variable_name] = ACTIONS(1058), - [ts_builtin_sym_end] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_SEMI_SEMI] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym_declare] = ACTIONS(1060), - [anon_sym_typeset] = ACTIONS(1060), - [anon_sym_export] = ACTIONS(1060), - [anon_sym_readonly] = ACTIONS(1060), - [anon_sym_local] = ACTIONS(1060), - [anon_sym_unset] = ACTIONS(1060), - [anon_sym_unsetenv] = ACTIONS(1060), - [anon_sym_LT] = ACTIONS(1060), - [anon_sym_GT] = ACTIONS(1060), - [anon_sym_GT_GT] = ACTIONS(1058), - [anon_sym_AMP_GT] = ACTIONS(1060), - [anon_sym_AMP_GT_GT] = ACTIONS(1058), - [anon_sym_LT_AMP] = ACTIONS(1058), - [anon_sym_GT_AMP] = ACTIONS(1058), - [sym__special_characters] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1058), - [anon_sym_DOLLAR] = ACTIONS(1060), - [sym_raw_string] = ACTIONS(1058), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1058), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1058), - [anon_sym_BQUOTE] = ACTIONS(1058), - [anon_sym_LT_LPAREN] = ACTIONS(1058), - [anon_sym_GT_LPAREN] = ACTIONS(1058), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1076), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1062), }, [195] = { - [sym_for_statement] = STATE(588), - [sym_while_statement] = STATE(588), - [sym_if_statement] = STATE(588), - [sym_case_statement] = STATE(588), - [sym_function_definition] = STATE(588), - [sym_subshell] = STATE(588), - [sym_pipeline] = STATE(588), - [sym_list] = STATE(588), - [sym_bracket_command] = STATE(588), - [sym_command] = STATE(588), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(589), - [sym_declaration_command] = STATE(588), - [sym_unset_command] = STATE(588), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1076), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [sym_word] = ACTIONS(382), }, [196] = { - [anon_sym_LT] = ACTIONS(1064), - [anon_sym_GT] = ACTIONS(1064), - [anon_sym_GT_GT] = ACTIONS(1066), - [anon_sym_AMP_GT] = ACTIONS(1064), - [anon_sym_AMP_GT_GT] = ACTIONS(1066), - [anon_sym_LT_AMP] = ACTIONS(1066), - [anon_sym_GT_AMP] = ACTIONS(1066), + [anon_sym_RPAREN] = ACTIONS(1078), [sym_comment] = ACTIONS(56), }, [197] = { - [sym_concatenation] = STATE(599), - [sym_string] = STATE(594), - [sym_simple_expansion] = STATE(594), - [sym_string_expansion] = STATE(594), - [sym_expansion] = STATE(594), - [sym_command_substitution] = STATE(594), - [sym_process_substitution] = STATE(594), - [sym__special_characters] = ACTIONS(1068), - [anon_sym_DQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1072), - [sym_raw_string] = ACTIONS(1074), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1076), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1078), + [sym_for_statement] = STATE(601), + [sym_while_statement] = STATE(601), + [sym_if_statement] = STATE(601), + [sym_case_statement] = STATE(601), + [sym_function_definition] = STATE(601), + [sym_subshell] = STATE(601), + [sym_pipeline] = STATE(601), + [sym_list] = STATE(601), + [sym_command] = STATE(601), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(601), + [sym_variable_assignment] = STATE(602), + [sym_declaration_command] = STATE(601), + [sym_unset_command] = STATE(601), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [198] = { + [sym_file_descriptor] = ACTIONS(1080), + [sym_variable_name] = ACTIONS(1080), + [ts_builtin_sym_end] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_SEMI_SEMI] = ACTIONS(1080), + [anon_sym_function] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1080), + [anon_sym_declare] = ACTIONS(1082), + [anon_sym_typeset] = ACTIONS(1082), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_readonly] = ACTIONS(1082), + [anon_sym_local] = ACTIONS(1082), + [anon_sym_unset] = ACTIONS(1082), + [anon_sym_unsetenv] = ACTIONS(1082), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1080), + [anon_sym_LT_AMP] = ACTIONS(1080), + [anon_sym_GT_AMP] = ACTIONS(1080), + [sym__special_characters] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(1080), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1080), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1080), [anon_sym_BQUOTE] = ACTIONS(1080), - [anon_sym_LT_LPAREN] = ACTIONS(1082), - [anon_sym_GT_LPAREN] = ACTIONS(1082), + [anon_sym_LT_LPAREN] = ACTIONS(1080), + [anon_sym_GT_LPAREN] = ACTIONS(1080), [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(1084), }, - [198] = { - [sym_heredoc] = STATE(602), - [sym__simple_heredoc] = ACTIONS(1086), - [sym__heredoc_beginning] = ACTIONS(1088), - [sym_comment] = ACTIONS(56), - }, [199] = { - [sym_concatenation] = STATE(605), - [sym_string] = STATE(604), - [sym_simple_expansion] = STATE(604), - [sym_string_expansion] = STATE(604), - [sym_expansion] = STATE(604), - [sym_command_substitution] = STATE(604), - [sym_process_substitution] = STATE(604), - [sym__special_characters] = ACTIONS(1090), - [anon_sym_DQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1072), - [sym_raw_string] = ACTIONS(1092), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1076), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1078), - [anon_sym_BQUOTE] = ACTIONS(1080), - [anon_sym_LT_LPAREN] = ACTIONS(1082), - [anon_sym_GT_LPAREN] = ACTIONS(1082), + [sym_for_statement] = STATE(603), + [sym_while_statement] = STATE(603), + [sym_if_statement] = STATE(603), + [sym_case_statement] = STATE(603), + [sym_function_definition] = STATE(603), + [sym_subshell] = STATE(603), + [sym_pipeline] = STATE(603), + [sym_list] = STATE(603), + [sym_command] = STATE(603), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(603), + [sym_variable_assignment] = STATE(604), + [sym_declaration_command] = STATE(603), + [sym_unset_command] = STATE(603), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1094), + [sym_word] = ACTIONS(58), }, [200] = { - [aux_sym_concatenation_repeat1] = STATE(129), - [sym_file_descriptor] = ACTIONS(1096), - [sym__concat] = ACTIONS(222), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_SEMI_SEMI] = ACTIONS(1098), - [anon_sym_PIPE_AMP] = ACTIONS(1098), - [anon_sym_AMP_AMP] = ACTIONS(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1098), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_AMP_GT] = ACTIONS(1098), - [anon_sym_AMP_GT_GT] = ACTIONS(1098), - [anon_sym_LT_AMP] = ACTIONS(1098), - [anon_sym_GT_AMP] = ACTIONS(1098), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_LT_LT_DASH] = ACTIONS(1098), - [anon_sym_LT_LT_LT] = ACTIONS(1098), - [sym__special_characters] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1098), - [sym_raw_string] = ACTIONS(1098), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1098), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1098), - [anon_sym_BQUOTE] = ACTIONS(1098), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_LF] = ACTIONS(1098), - [anon_sym_AMP] = ACTIONS(1098), + [anon_sym_LT] = ACTIONS(1086), + [anon_sym_GT] = ACTIONS(1086), + [anon_sym_GT_GT] = ACTIONS(1088), + [anon_sym_AMP_GT] = ACTIONS(1086), + [anon_sym_AMP_GT_GT] = ACTIONS(1088), + [anon_sym_LT_AMP] = ACTIONS(1088), + [anon_sym_GT_AMP] = ACTIONS(1088), + [sym_comment] = ACTIONS(56), }, [201] = { - [aux_sym_concatenation_repeat1] = STATE(129), - [sym_file_descriptor] = ACTIONS(1100), - [sym__concat] = ACTIONS(222), - [anon_sym_PIPE] = ACTIONS(1102), - [anon_sym_SEMI_SEMI] = ACTIONS(1102), - [anon_sym_PIPE_AMP] = ACTIONS(1102), - [anon_sym_AMP_AMP] = ACTIONS(1102), - [anon_sym_PIPE_PIPE] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1102), - [anon_sym_AMP_GT] = ACTIONS(1102), - [anon_sym_AMP_GT_GT] = ACTIONS(1102), - [anon_sym_LT_AMP] = ACTIONS(1102), - [anon_sym_GT_AMP] = ACTIONS(1102), - [anon_sym_LT_LT] = ACTIONS(1102), - [anon_sym_LT_LT_DASH] = ACTIONS(1102), - [anon_sym_LT_LT_LT] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [sym_raw_string] = ACTIONS(1102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), - [anon_sym_BQUOTE] = ACTIONS(1102), - [anon_sym_LT_LPAREN] = ACTIONS(1102), - [anon_sym_GT_LPAREN] = ACTIONS(1102), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1102), + [sym_concatenation] = STATE(608), + [sym_string] = STATE(607), + [sym_simple_expansion] = STATE(607), + [sym_string_expansion] = STATE(607), + [sym_expansion] = STATE(607), + [sym_command_substitution] = STATE(607), + [sym_process_substitution] = STATE(607), + [sym__special_characters] = ACTIONS(1090), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_DOLLAR] = ACTIONS(366), + [sym_raw_string] = ACTIONS(1092), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(370), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(372), + [anon_sym_BQUOTE] = ACTIONS(374), + [anon_sym_LT_LPAREN] = ACTIONS(376), + [anon_sym_GT_LPAREN] = ACTIONS(376), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1092), + [sym_regex] = ACTIONS(1094), }, [202] = { - [sym_file_descriptor] = ACTIONS(1104), - [anon_sym_PIPE] = ACTIONS(1106), - [anon_sym_RPAREN] = ACTIONS(1106), - [anon_sym_SEMI_SEMI] = ACTIONS(1106), - [anon_sym_PIPE_AMP] = ACTIONS(1106), - [anon_sym_AMP_AMP] = ACTIONS(1106), - [anon_sym_PIPE_PIPE] = ACTIONS(1106), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_GT] = ACTIONS(1106), - [anon_sym_GT_GT] = ACTIONS(1106), - [anon_sym_AMP_GT] = ACTIONS(1106), - [anon_sym_AMP_GT_GT] = ACTIONS(1106), - [anon_sym_LT_AMP] = ACTIONS(1106), - [anon_sym_GT_AMP] = ACTIONS(1106), - [anon_sym_LT_LT] = ACTIONS(1106), - [anon_sym_LT_LT_DASH] = ACTIONS(1106), - [anon_sym_LT_LT_LT] = ACTIONS(1106), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1106), - [anon_sym_LF] = ACTIONS(1106), - [anon_sym_AMP] = ACTIONS(1106), + [sym_concatenation] = STATE(617), + [sym_string] = STATE(612), + [sym_simple_expansion] = STATE(612), + [sym_string_expansion] = STATE(612), + [sym_expansion] = STATE(612), + [sym_command_substitution] = STATE(612), + [sym_process_substitution] = STATE(612), + [sym__special_characters] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(1098), + [anon_sym_DOLLAR] = ACTIONS(1100), + [sym_raw_string] = ACTIONS(1102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), + [anon_sym_BQUOTE] = ACTIONS(1108), + [anon_sym_LT_LPAREN] = ACTIONS(1110), + [anon_sym_GT_LPAREN] = ACTIONS(1110), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1112), }, [203] = { - [sym_file_descriptor] = ACTIONS(1100), - [anon_sym_PIPE] = ACTIONS(1102), - [anon_sym_RPAREN] = ACTIONS(1102), - [anon_sym_SEMI_SEMI] = ACTIONS(1102), - [anon_sym_PIPE_AMP] = ACTIONS(1102), - [anon_sym_AMP_AMP] = ACTIONS(1102), - [anon_sym_PIPE_PIPE] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1102), - [anon_sym_AMP_GT] = ACTIONS(1102), - [anon_sym_AMP_GT_GT] = ACTIONS(1102), - [anon_sym_LT_AMP] = ACTIONS(1102), - [anon_sym_GT_AMP] = ACTIONS(1102), - [anon_sym_LT_LT] = ACTIONS(1102), - [anon_sym_LT_LT_DASH] = ACTIONS(1102), - [anon_sym_LT_LT_LT] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [sym_raw_string] = ACTIONS(1102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), - [anon_sym_BQUOTE] = ACTIONS(1102), - [anon_sym_LT_LPAREN] = ACTIONS(1102), - [anon_sym_GT_LPAREN] = ACTIONS(1102), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1102), + [sym_heredoc] = STATE(620), + [sym__simple_heredoc] = ACTIONS(1114), + [sym__heredoc_beginning] = ACTIONS(1116), + [sym_comment] = ACTIONS(56), }, [204] = { - [sym_file_redirect] = STATE(202), - [sym_heredoc_redirect] = STATE(202), - [sym_herestring_redirect] = STATE(202), - [sym_concatenation] = STATE(203), - [sym_string] = STATE(201), - [sym_simple_expansion] = STATE(201), - [sym_string_expansion] = STATE(201), - [sym_expansion] = STATE(201), - [sym_command_substitution] = STATE(201), - [sym_process_substitution] = STATE(201), - [aux_sym_for_statement_repeat1] = STATE(606), - [aux_sym_while_statement_repeat1] = STATE(607), - [sym_file_descriptor] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_SEMI_SEMI] = ACTIONS(1108), - [anon_sym_PIPE_AMP] = ACTIONS(1108), - [anon_sym_AMP_AMP] = ACTIONS(1108), - [anon_sym_PIPE_PIPE] = ACTIONS(1108), - [anon_sym_LT] = ACTIONS(346), - [anon_sym_GT] = ACTIONS(346), - [anon_sym_GT_GT] = ACTIONS(346), - [anon_sym_AMP_GT] = ACTIONS(346), - [anon_sym_AMP_GT_GT] = ACTIONS(346), - [anon_sym_LT_AMP] = ACTIONS(346), - [anon_sym_GT_AMP] = ACTIONS(346), - [anon_sym_LT_LT] = ACTIONS(348), - [anon_sym_LT_LT_DASH] = ACTIONS(348), - [anon_sym_LT_LT_LT] = ACTIONS(350), - [sym__special_characters] = ACTIONS(352), - [anon_sym_DQUOTE] = ACTIONS(354), - [anon_sym_DOLLAR] = ACTIONS(356), - [sym_raw_string] = ACTIONS(358), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(362), - [anon_sym_BQUOTE] = ACTIONS(364), - [anon_sym_LT_LPAREN] = ACTIONS(366), - [anon_sym_GT_LPAREN] = ACTIONS(366), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(358), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_LF] = ACTIONS(1108), - [anon_sym_AMP] = ACTIONS(1108), + [sym_concatenation] = STATE(623), + [sym_string] = STATE(622), + [sym_simple_expansion] = STATE(622), + [sym_string_expansion] = STATE(622), + [sym_expansion] = STATE(622), + [sym_command_substitution] = STATE(622), + [sym_process_substitution] = STATE(622), + [sym__special_characters] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(1098), + [anon_sym_DOLLAR] = ACTIONS(1100), + [sym_raw_string] = ACTIONS(1120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), + [anon_sym_BQUOTE] = ACTIONS(1108), + [anon_sym_LT_LPAREN] = ACTIONS(1110), + [anon_sym_GT_LPAREN] = ACTIONS(1110), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1122), }, [205] = { - [sym_file_redirect] = STATE(202), - [sym_heredoc_redirect] = STATE(202), - [sym_herestring_redirect] = STATE(202), - [aux_sym_while_statement_repeat1] = STATE(608), - [sym_file_descriptor] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_SEMI_SEMI] = ACTIONS(1108), - [anon_sym_PIPE_AMP] = ACTIONS(1108), - [anon_sym_AMP_AMP] = ACTIONS(1108), - [anon_sym_PIPE_PIPE] = ACTIONS(1108), - [anon_sym_LT] = ACTIONS(346), - [anon_sym_GT] = ACTIONS(346), - [anon_sym_GT_GT] = ACTIONS(346), - [anon_sym_AMP_GT] = ACTIONS(346), - [anon_sym_AMP_GT_GT] = ACTIONS(346), - [anon_sym_LT_AMP] = ACTIONS(346), - [anon_sym_GT_AMP] = ACTIONS(346), - [anon_sym_LT_LT] = ACTIONS(348), - [anon_sym_LT_LT_DASH] = ACTIONS(348), - [anon_sym_LT_LT_LT] = ACTIONS(350), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_LF] = ACTIONS(1108), - [anon_sym_AMP] = ACTIONS(1108), + [aux_sym_concatenation_repeat1] = STATE(131), + [sym_file_descriptor] = ACTIONS(600), + [sym__concat] = ACTIONS(226), + [anon_sym_PIPE] = ACTIONS(602), + [anon_sym_SEMI_SEMI] = ACTIONS(602), + [anon_sym_PIPE_AMP] = ACTIONS(602), + [anon_sym_AMP_AMP] = ACTIONS(602), + [anon_sym_PIPE_PIPE] = ACTIONS(602), + [anon_sym_EQ_TILDE] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_GT_GT] = ACTIONS(602), + [anon_sym_AMP_GT] = ACTIONS(602), + [anon_sym_AMP_GT_GT] = ACTIONS(602), + [anon_sym_LT_AMP] = ACTIONS(602), + [anon_sym_GT_AMP] = ACTIONS(602), + [anon_sym_LT_LT] = ACTIONS(602), + [anon_sym_LT_LT_DASH] = ACTIONS(602), + [anon_sym_LT_LT_LT] = ACTIONS(602), + [sym__special_characters] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_DOLLAR] = ACTIONS(602), + [sym_raw_string] = ACTIONS(602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(602), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(602), + [anon_sym_BQUOTE] = ACTIONS(602), + [anon_sym_LT_LPAREN] = ACTIONS(602), + [anon_sym_GT_LPAREN] = ACTIONS(602), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(602), + [anon_sym_SEMI] = ACTIONS(602), + [anon_sym_LF] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(602), }, [206] = { + [aux_sym_concatenation_repeat1] = STATE(131), + [sym_file_descriptor] = ACTIONS(614), + [sym__concat] = ACTIONS(226), + [anon_sym_PIPE] = ACTIONS(616), + [anon_sym_SEMI_SEMI] = ACTIONS(616), + [anon_sym_PIPE_AMP] = ACTIONS(616), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_EQ_TILDE] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(616), + [anon_sym_GT_GT] = ACTIONS(616), + [anon_sym_AMP_GT] = ACTIONS(616), + [anon_sym_AMP_GT_GT] = ACTIONS(616), + [anon_sym_LT_AMP] = ACTIONS(616), + [anon_sym_GT_AMP] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(616), + [anon_sym_LT_LT_DASH] = ACTIONS(616), + [anon_sym_LT_LT_LT] = ACTIONS(616), + [sym__special_characters] = ACTIONS(616), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_DOLLAR] = ACTIONS(616), + [sym_raw_string] = ACTIONS(616), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(616), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(616), + [anon_sym_BQUOTE] = ACTIONS(616), + [anon_sym_LT_LPAREN] = ACTIONS(616), + [anon_sym_GT_LPAREN] = ACTIONS(616), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LF] = ACTIONS(616), + [anon_sym_AMP] = ACTIONS(616), + }, + [207] = { + [sym_file_descriptor] = ACTIONS(1124), + [anon_sym_PIPE] = ACTIONS(1126), + [anon_sym_RPAREN] = ACTIONS(1126), + [anon_sym_SEMI_SEMI] = ACTIONS(1126), + [anon_sym_PIPE_AMP] = ACTIONS(1126), + [anon_sym_AMP_AMP] = ACTIONS(1126), + [anon_sym_PIPE_PIPE] = ACTIONS(1126), + [anon_sym_LT] = ACTIONS(1126), + [anon_sym_GT] = ACTIONS(1126), + [anon_sym_GT_GT] = ACTIONS(1126), + [anon_sym_AMP_GT] = ACTIONS(1126), + [anon_sym_AMP_GT_GT] = ACTIONS(1126), + [anon_sym_LT_AMP] = ACTIONS(1126), + [anon_sym_GT_AMP] = ACTIONS(1126), + [anon_sym_LT_LT] = ACTIONS(1126), + [anon_sym_LT_LT_DASH] = ACTIONS(1126), + [anon_sym_LT_LT_LT] = ACTIONS(1126), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1126), + [anon_sym_LF] = ACTIONS(1126), + [anon_sym_AMP] = ACTIONS(1126), + }, + [208] = { + [sym_file_descriptor] = ACTIONS(614), + [anon_sym_PIPE] = ACTIONS(616), + [anon_sym_RPAREN] = ACTIONS(616), + [anon_sym_SEMI_SEMI] = ACTIONS(616), + [anon_sym_PIPE_AMP] = ACTIONS(616), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_EQ_TILDE] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(616), + [anon_sym_GT_GT] = ACTIONS(616), + [anon_sym_AMP_GT] = ACTIONS(616), + [anon_sym_AMP_GT_GT] = ACTIONS(616), + [anon_sym_LT_AMP] = ACTIONS(616), + [anon_sym_GT_AMP] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(616), + [anon_sym_LT_LT_DASH] = ACTIONS(616), + [anon_sym_LT_LT_LT] = ACTIONS(616), + [sym__special_characters] = ACTIONS(616), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_DOLLAR] = ACTIONS(616), + [sym_raw_string] = ACTIONS(616), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(616), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(616), + [anon_sym_BQUOTE] = ACTIONS(616), + [anon_sym_LT_LPAREN] = ACTIONS(616), + [anon_sym_GT_LPAREN] = ACTIONS(616), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LF] = ACTIONS(616), + [anon_sym_AMP] = ACTIONS(616), + }, + [209] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(624), + [sym_file_descriptor] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(1128), + [anon_sym_SEMI_SEMI] = ACTIONS(1128), + [anon_sym_PIPE_AMP] = ACTIONS(1128), + [anon_sym_AMP_AMP] = ACTIONS(1128), + [anon_sym_PIPE_PIPE] = ACTIONS(1128), + [anon_sym_LT] = ACTIONS(356), + [anon_sym_GT] = ACTIONS(356), + [anon_sym_GT_GT] = ACTIONS(356), + [anon_sym_AMP_GT] = ACTIONS(356), + [anon_sym_AMP_GT_GT] = ACTIONS(356), + [anon_sym_LT_AMP] = ACTIONS(356), + [anon_sym_GT_AMP] = ACTIONS(356), + [anon_sym_LT_LT] = ACTIONS(358), + [anon_sym_LT_LT_DASH] = ACTIONS(358), + [anon_sym_LT_LT_LT] = ACTIONS(360), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_LF] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1128), + }, + [210] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [sym_concatenation] = STATE(208), + [sym_string] = STATE(206), + [sym_simple_expansion] = STATE(206), + [sym_string_expansion] = STATE(206), + [sym_expansion] = STATE(206), + [sym_command_substitution] = STATE(206), + [sym_process_substitution] = STATE(206), + [aux_sym_while_statement_repeat1] = STATE(625), + [aux_sym_command_repeat2] = STATE(626), + [sym_file_descriptor] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(1128), + [anon_sym_SEMI_SEMI] = ACTIONS(1128), + [anon_sym_PIPE_AMP] = ACTIONS(1128), + [anon_sym_AMP_AMP] = ACTIONS(1128), + [anon_sym_PIPE_PIPE] = ACTIONS(1128), + [anon_sym_EQ_TILDE] = ACTIONS(354), + [anon_sym_LT] = ACTIONS(356), + [anon_sym_GT] = ACTIONS(356), + [anon_sym_GT_GT] = ACTIONS(356), + [anon_sym_AMP_GT] = ACTIONS(356), + [anon_sym_AMP_GT_GT] = ACTIONS(356), + [anon_sym_LT_AMP] = ACTIONS(356), + [anon_sym_GT_AMP] = ACTIONS(356), + [anon_sym_LT_LT] = ACTIONS(358), + [anon_sym_LT_LT_DASH] = ACTIONS(358), + [anon_sym_LT_LT_LT] = ACTIONS(360), + [sym__special_characters] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_DOLLAR] = ACTIONS(366), + [sym_raw_string] = ACTIONS(368), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(370), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(372), + [anon_sym_BQUOTE] = ACTIONS(374), + [anon_sym_LT_LPAREN] = ACTIONS(376), + [anon_sym_GT_LPAREN] = ACTIONS(376), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(368), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_LF] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1128), + }, + [211] = { [sym__terminated_statement] = STATE(25), [sym_for_statement] = STATE(26), [sym_while_statement] = STATE(26), @@ -15309,9 +16750,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(26), [sym_pipeline] = STATE(26), [sym_list] = STATE(26), - [sym_bracket_command] = STATE(26), [sym_command] = STATE(26), [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(26), [sym_variable_assignment] = STATE(28), [sym_declaration_command] = STATE(26), [sym_unset_command] = STATE(26), @@ -15324,803 +16765,599 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(206), + [aux_sym_program_repeat1] = STATE(211), [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1110), - [sym_variable_name] = ACTIONS(1113), - [ts_builtin_sym_end] = ACTIONS(1116), - [anon_sym_for] = ACTIONS(1118), - [anon_sym_while] = ACTIONS(1121), - [anon_sym_if] = ACTIONS(1124), - [anon_sym_case] = ACTIONS(1127), - [anon_sym_function] = ACTIONS(1130), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1136), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1139), - [anon_sym_declare] = ACTIONS(1142), - [anon_sym_typeset] = ACTIONS(1142), - [anon_sym_export] = ACTIONS(1142), - [anon_sym_readonly] = ACTIONS(1142), - [anon_sym_local] = ACTIONS(1142), - [anon_sym_unset] = ACTIONS(1145), - [anon_sym_unsetenv] = ACTIONS(1145), - [anon_sym_LT] = ACTIONS(1148), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_GT_GT] = ACTIONS(1151), - [anon_sym_AMP_GT] = ACTIONS(1148), - [anon_sym_AMP_GT_GT] = ACTIONS(1151), - [anon_sym_LT_AMP] = ACTIONS(1151), - [anon_sym_GT_AMP] = ACTIONS(1151), - [sym__special_characters] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1157), - [anon_sym_DOLLAR] = ACTIONS(1160), - [sym_raw_string] = ACTIONS(1163), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1166), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1169), - [anon_sym_BQUOTE] = ACTIONS(1172), - [anon_sym_LT_LPAREN] = ACTIONS(1175), - [anon_sym_GT_LPAREN] = ACTIONS(1175), + [sym_file_descriptor] = ACTIONS(1130), + [sym_variable_name] = ACTIONS(1133), + [ts_builtin_sym_end] = ACTIONS(1136), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_if] = ACTIONS(1144), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_function] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1162), + [anon_sym_typeset] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(1162), + [anon_sym_readonly] = ACTIONS(1162), + [anon_sym_local] = ACTIONS(1162), + [anon_sym_unset] = ACTIONS(1165), + [anon_sym_unsetenv] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(1168), + [anon_sym_GT] = ACTIONS(1168), + [anon_sym_GT_GT] = ACTIONS(1171), + [anon_sym_AMP_GT] = ACTIONS(1168), + [anon_sym_AMP_GT_GT] = ACTIONS(1171), + [anon_sym_LT_AMP] = ACTIONS(1171), + [anon_sym_GT_AMP] = ACTIONS(1171), + [sym__special_characters] = ACTIONS(1174), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1180), + [sym_raw_string] = ACTIONS(1183), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1186), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1189), + [anon_sym_BQUOTE] = ACTIONS(1192), + [anon_sym_LT_LPAREN] = ACTIONS(1195), + [anon_sym_GT_LPAREN] = ACTIONS(1195), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1178), - }, - [207] = { - [sym__assignment] = STATE(462), - [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(1181), - [anon_sym_PLUS_EQ] = ACTIONS(1181), - [sym_comment] = ACTIONS(56), - }, - [208] = { - [sym_file_redirect] = STATE(202), - [sym_heredoc_redirect] = STATE(202), - [sym_herestring_redirect] = STATE(202), - [sym_concatenation] = STATE(203), - [sym_string] = STATE(201), - [sym_simple_expansion] = STATE(201), - [sym_string_expansion] = STATE(201), - [sym_expansion] = STATE(201), - [sym_command_substitution] = STATE(201), - [sym_process_substitution] = STATE(201), - [aux_sym_for_statement_repeat1] = STATE(610), - [aux_sym_while_statement_repeat1] = STATE(607), - [sym_file_descriptor] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_SEMI_SEMI] = ACTIONS(1108), - [anon_sym_PIPE_AMP] = ACTIONS(1108), - [anon_sym_AMP_AMP] = ACTIONS(1108), - [anon_sym_PIPE_PIPE] = ACTIONS(1108), - [anon_sym_LT] = ACTIONS(346), - [anon_sym_GT] = ACTIONS(346), - [anon_sym_GT_GT] = ACTIONS(346), - [anon_sym_AMP_GT] = ACTIONS(346), - [anon_sym_AMP_GT_GT] = ACTIONS(346), - [anon_sym_LT_AMP] = ACTIONS(346), - [anon_sym_GT_AMP] = ACTIONS(346), - [anon_sym_LT_LT] = ACTIONS(348), - [anon_sym_LT_LT_DASH] = ACTIONS(348), - [anon_sym_LT_LT_LT] = ACTIONS(350), - [sym__special_characters] = ACTIONS(352), - [anon_sym_DQUOTE] = ACTIONS(354), - [anon_sym_DOLLAR] = ACTIONS(356), - [sym_raw_string] = ACTIONS(358), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(362), - [anon_sym_BQUOTE] = ACTIONS(364), - [anon_sym_LT_LPAREN] = ACTIONS(366), - [anon_sym_GT_LPAREN] = ACTIONS(366), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(358), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_LF] = ACTIONS(1108), - [anon_sym_AMP] = ACTIONS(1108), - }, - [209] = { - [sym__assignment] = STATE(462), - [anon_sym_EQ] = ACTIONS(1181), - [anon_sym_PLUS_EQ] = ACTIONS(1181), - [sym_comment] = ACTIONS(56), - }, - [210] = { - [sym_variable_assignment] = STATE(30), - [sym_subscript] = STATE(209), - [sym_file_redirect] = STATE(30), - [aux_sym_command_repeat1] = STATE(210), - [sym_file_descriptor] = ACTIONS(1183), - [sym_variable_name] = ACTIONS(1186), - [anon_sym_LT] = ACTIONS(1189), - [anon_sym_GT] = ACTIONS(1189), - [anon_sym_GT_GT] = ACTIONS(1192), - [anon_sym_AMP_GT] = ACTIONS(1189), - [anon_sym_AMP_GT_GT] = ACTIONS(1192), - [anon_sym_LT_AMP] = ACTIONS(1192), - [anon_sym_GT_AMP] = ACTIONS(1192), - [sym__special_characters] = ACTIONS(1195), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_DOLLAR] = ACTIONS(1195), - [sym_raw_string] = ACTIONS(1197), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1197), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1197), - [anon_sym_BQUOTE] = ACTIONS(1197), - [anon_sym_LT_LPAREN] = ACTIONS(1197), - [anon_sym_GT_LPAREN] = ACTIONS(1197), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1195), - }, - [211] = { - [aux_sym_concatenation_repeat1] = STATE(406), - [sym_file_descriptor] = ACTIONS(1199), - [sym__concat] = ACTIONS(730), - [sym_variable_name] = ACTIONS(1199), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_AMP_GT] = ACTIONS(1201), - [anon_sym_AMP_GT_GT] = ACTIONS(1199), - [anon_sym_LT_AMP] = ACTIONS(1199), - [anon_sym_GT_AMP] = ACTIONS(1199), - [sym__special_characters] = ACTIONS(1201), - [anon_sym_DQUOTE] = ACTIONS(1199), - [anon_sym_DOLLAR] = ACTIONS(1201), - [sym_raw_string] = ACTIONS(1199), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1199), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1199), - [anon_sym_BQUOTE] = ACTIONS(1199), - [anon_sym_LT_LPAREN] = ACTIONS(1199), - [anon_sym_GT_LPAREN] = ACTIONS(1199), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1201), + [sym_word] = ACTIONS(1198), }, [212] = { - [aux_sym_concatenation_repeat1] = STATE(406), - [sym_file_descriptor] = ACTIONS(1203), - [sym__concat] = ACTIONS(730), - [sym_variable_name] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1205), - [anon_sym_GT_GT] = ACTIONS(1203), - [anon_sym_AMP_GT] = ACTIONS(1205), - [anon_sym_AMP_GT_GT] = ACTIONS(1203), - [anon_sym_LT_AMP] = ACTIONS(1203), - [anon_sym_GT_AMP] = ACTIONS(1203), - [sym__special_characters] = ACTIONS(1205), - [anon_sym_DQUOTE] = ACTIONS(1203), - [anon_sym_DOLLAR] = ACTIONS(1205), - [sym_raw_string] = ACTIONS(1203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1203), - [anon_sym_BQUOTE] = ACTIONS(1203), - [anon_sym_LT_LPAREN] = ACTIONS(1203), - [anon_sym_GT_LPAREN] = ACTIONS(1203), + [sym__assignment] = STATE(473), + [anon_sym_LBRACK] = ACTIONS(64), + [anon_sym_EQ] = ACTIONS(1201), + [anon_sym_PLUS_EQ] = ACTIONS(1201), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1205), }, [213] = { - [sym_file_descriptor] = ACTIONS(1203), - [sym_variable_name] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1205), - [anon_sym_GT_GT] = ACTIONS(1203), - [anon_sym_AMP_GT] = ACTIONS(1205), - [anon_sym_AMP_GT_GT] = ACTIONS(1203), - [anon_sym_LT_AMP] = ACTIONS(1203), - [anon_sym_GT_AMP] = ACTIONS(1203), - [sym__special_characters] = ACTIONS(1205), - [anon_sym_DQUOTE] = ACTIONS(1203), - [anon_sym_DOLLAR] = ACTIONS(1205), - [sym_raw_string] = ACTIONS(1203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1203), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1203), - [anon_sym_BQUOTE] = ACTIONS(1203), - [anon_sym_LT_LPAREN] = ACTIONS(1203), - [anon_sym_GT_LPAREN] = ACTIONS(1203), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1205), + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [sym_concatenation] = STATE(208), + [sym_string] = STATE(206), + [sym_simple_expansion] = STATE(206), + [sym_string_expansion] = STATE(206), + [sym_expansion] = STATE(206), + [sym_command_substitution] = STATE(206), + [sym_process_substitution] = STATE(206), + [aux_sym_while_statement_repeat1] = STATE(625), + [aux_sym_command_repeat2] = STATE(628), + [sym_file_descriptor] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(1128), + [anon_sym_SEMI_SEMI] = ACTIONS(1128), + [anon_sym_PIPE_AMP] = ACTIONS(1128), + [anon_sym_AMP_AMP] = ACTIONS(1128), + [anon_sym_PIPE_PIPE] = ACTIONS(1128), + [anon_sym_EQ_TILDE] = ACTIONS(354), + [anon_sym_LT] = ACTIONS(356), + [anon_sym_GT] = ACTIONS(356), + [anon_sym_GT_GT] = ACTIONS(356), + [anon_sym_AMP_GT] = ACTIONS(356), + [anon_sym_AMP_GT_GT] = ACTIONS(356), + [anon_sym_LT_AMP] = ACTIONS(356), + [anon_sym_GT_AMP] = ACTIONS(356), + [anon_sym_LT_LT] = ACTIONS(358), + [anon_sym_LT_LT_DASH] = ACTIONS(358), + [anon_sym_LT_LT_LT] = ACTIONS(360), + [sym__special_characters] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_DOLLAR] = ACTIONS(366), + [sym_raw_string] = ACTIONS(368), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(370), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(372), + [anon_sym_BQUOTE] = ACTIONS(374), + [anon_sym_LT_LPAREN] = ACTIONS(376), + [anon_sym_GT_LPAREN] = ACTIONS(376), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(368), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_LF] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1128), }, [214] = { - [aux_sym_concatenation_repeat1] = STATE(613), - [sym__concat] = ACTIONS(1207), - [anon_sym_RBRACK] = ACTIONS(1209), + [sym__assignment] = STATE(473), + [anon_sym_EQ] = ACTIONS(1201), + [anon_sym_PLUS_EQ] = ACTIONS(1201), [sym_comment] = ACTIONS(56), }, [215] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(615), - [anon_sym_DQUOTE] = ACTIONS(1211), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym_variable_assignment] = STATE(30), + [sym_subscript] = STATE(214), + [sym_file_redirect] = STATE(30), + [aux_sym_command_repeat1] = STATE(215), + [sym_file_descriptor] = ACTIONS(1203), + [sym_variable_name] = ACTIONS(1206), + [anon_sym_LT] = ACTIONS(1209), + [anon_sym_GT] = ACTIONS(1209), + [anon_sym_GT_GT] = ACTIONS(1212), + [anon_sym_AMP_GT] = ACTIONS(1209), + [anon_sym_AMP_GT_GT] = ACTIONS(1212), + [anon_sym_LT_AMP] = ACTIONS(1212), + [anon_sym_GT_AMP] = ACTIONS(1212), + [sym__special_characters] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(1217), + [anon_sym_DOLLAR] = ACTIONS(1215), + [sym_raw_string] = ACTIONS(1217), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1217), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1217), + [anon_sym_BQUOTE] = ACTIONS(1217), + [anon_sym_LT_LPAREN] = ACTIONS(1217), + [anon_sym_GT_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1215), }, [216] = { - [sym_string] = STATE(618), - [anon_sym_DQUOTE] = ACTIONS(390), - [anon_sym_DOLLAR] = ACTIONS(1213), - [anon_sym_POUND] = ACTIONS(1213), - [anon_sym_DASH] = ACTIONS(1213), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1215), - [anon_sym_STAR] = ACTIONS(1213), - [anon_sym_AT] = ACTIONS(1213), - [anon_sym_QMARK] = ACTIONS(1213), - [anon_sym_0] = ACTIONS(1217), - [anon_sym__] = ACTIONS(1217), + [aux_sym_concatenation_repeat1] = STATE(414), + [sym_file_descriptor] = ACTIONS(1219), + [sym__concat] = ACTIONS(742), + [sym_variable_name] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_GT_GT] = ACTIONS(1219), + [anon_sym_AMP_GT] = ACTIONS(1221), + [anon_sym_AMP_GT_GT] = ACTIONS(1219), + [anon_sym_LT_AMP] = ACTIONS(1219), + [anon_sym_GT_AMP] = ACTIONS(1219), + [sym__special_characters] = ACTIONS(1221), + [anon_sym_DQUOTE] = ACTIONS(1219), + [anon_sym_DOLLAR] = ACTIONS(1221), + [sym_raw_string] = ACTIONS(1219), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1219), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1219), + [anon_sym_BQUOTE] = ACTIONS(1219), + [anon_sym_LT_LPAREN] = ACTIONS(1219), + [anon_sym_GT_LPAREN] = ACTIONS(1219), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1221), }, [217] = { - [aux_sym_concatenation_repeat1] = STATE(613), - [sym__concat] = ACTIONS(1219), - [anon_sym_RBRACK] = ACTIONS(1221), + [aux_sym_concatenation_repeat1] = STATE(414), + [sym_file_descriptor] = ACTIONS(1223), + [sym__concat] = ACTIONS(742), + [sym_variable_name] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(1225), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_GT_GT] = ACTIONS(1223), + [anon_sym_AMP_GT] = ACTIONS(1225), + [anon_sym_AMP_GT_GT] = ACTIONS(1223), + [anon_sym_LT_AMP] = ACTIONS(1223), + [anon_sym_GT_AMP] = ACTIONS(1223), + [sym__special_characters] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1223), + [anon_sym_DOLLAR] = ACTIONS(1225), + [sym_raw_string] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), + [anon_sym_BQUOTE] = ACTIONS(1223), + [anon_sym_LT_LPAREN] = ACTIONS(1223), + [anon_sym_GT_LPAREN] = ACTIONS(1223), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1225), }, [218] = { - [sym_subscript] = STATE(625), + [sym_file_descriptor] = ACTIONS(1223), [sym_variable_name] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(1225), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_GT_GT] = ACTIONS(1223), + [anon_sym_AMP_GT] = ACTIONS(1225), + [anon_sym_AMP_GT_GT] = ACTIONS(1223), + [anon_sym_LT_AMP] = ACTIONS(1223), + [anon_sym_GT_AMP] = ACTIONS(1223), + [sym__special_characters] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1223), [anon_sym_DOLLAR] = ACTIONS(1225), - [anon_sym_POUND] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1225), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1225), - [anon_sym_QMARK] = ACTIONS(1225), - [anon_sym_0] = ACTIONS(1231), - [anon_sym__] = ACTIONS(1231), + [sym_raw_string] = ACTIONS(1223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1223), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1223), + [anon_sym_BQUOTE] = ACTIONS(1223), + [anon_sym_LT_LPAREN] = ACTIONS(1223), + [anon_sym_GT_LPAREN] = ACTIONS(1223), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1225), }, [219] = { - [sym_for_statement] = STATE(626), - [sym_while_statement] = STATE(626), - [sym_if_statement] = STATE(626), - [sym_case_statement] = STATE(626), - [sym_function_definition] = STATE(626), - [sym_subshell] = STATE(626), - [sym_pipeline] = STATE(626), - [sym_list] = STATE(626), - [sym_bracket_command] = STATE(626), - [sym_command] = STATE(626), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(627), - [sym_declaration_command] = STATE(626), - [sym_unset_command] = STATE(626), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [aux_sym_concatenation_repeat1] = STATE(631), + [sym__concat] = ACTIONS(1227), + [anon_sym_RBRACK] = ACTIONS(1229), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), }, [220] = { - [sym_for_statement] = STATE(628), - [sym_while_statement] = STATE(628), - [sym_if_statement] = STATE(628), - [sym_case_statement] = STATE(628), - [sym_function_definition] = STATE(628), - [sym_subshell] = STATE(628), - [sym_pipeline] = STATE(628), - [sym_list] = STATE(628), - [sym_bracket_command] = STATE(628), - [sym_command] = STATE(628), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(629), - [sym_declaration_command] = STATE(628), - [sym_unset_command] = STATE(628), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(633), + [anon_sym_DQUOTE] = ACTIONS(1231), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, [221] = { - [sym_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_bracket_command] = STATE(630), - [sym_command] = STATE(630), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(631), - [sym_declaration_command] = STATE(630), - [sym_unset_command] = STATE(630), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym_string] = STATE(636), + [anon_sym_DQUOTE] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(1233), + [anon_sym_POUND] = ACTIONS(1233), + [anon_sym_DASH] = ACTIONS(1233), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1235), + [anon_sym_STAR] = ACTIONS(1233), + [anon_sym_AT] = ACTIONS(1233), + [anon_sym_QMARK] = ACTIONS(1233), + [anon_sym_0] = ACTIONS(1237), + [anon_sym__] = ACTIONS(1237), }, [222] = { - [sym__concat] = ACTIONS(1233), - [anon_sym_RBRACK] = ACTIONS(1221), + [aux_sym_concatenation_repeat1] = STATE(631), + [sym__concat] = ACTIONS(1239), + [anon_sym_RBRACK] = ACTIONS(1241), [sym_comment] = ACTIONS(56), }, [223] = { - [sym_file_descriptor] = ACTIONS(1235), - [sym_variable_name] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1237), - [anon_sym_SEMI_SEMI] = ACTIONS(1237), - [anon_sym_PIPE_AMP] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_LT] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1237), - [anon_sym_GT_GT] = ACTIONS(1237), - [anon_sym_AMP_GT] = ACTIONS(1237), - [anon_sym_AMP_GT_GT] = ACTIONS(1237), - [anon_sym_LT_AMP] = ACTIONS(1237), - [anon_sym_GT_AMP] = ACTIONS(1237), - [sym__special_characters] = ACTIONS(1237), - [anon_sym_DQUOTE] = ACTIONS(1237), - [anon_sym_DOLLAR] = ACTIONS(1237), - [sym_raw_string] = ACTIONS(1237), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1237), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1237), - [anon_sym_BQUOTE] = ACTIONS(1237), - [anon_sym_LT_LPAREN] = ACTIONS(1237), - [anon_sym_GT_LPAREN] = ACTIONS(1237), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LF] = ACTIONS(1237), - [anon_sym_AMP] = ACTIONS(1237), + [sym_subscript] = STATE(643), + [sym_variable_name] = ACTIONS(1243), + [anon_sym_DOLLAR] = ACTIONS(1245), + [anon_sym_POUND] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1245), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1249), + [anon_sym_STAR] = ACTIONS(1245), + [anon_sym_AT] = ACTIONS(1245), + [anon_sym_QMARK] = ACTIONS(1245), + [anon_sym_0] = ACTIONS(1251), + [anon_sym__] = ACTIONS(1251), }, [224] = { - [sym_concatenation] = STATE(642), - [sym_string] = STATE(637), - [sym_simple_expansion] = STATE(637), - [sym_string_expansion] = STATE(637), - [sym_expansion] = STATE(637), - [sym_command_substitution] = STATE(637), - [sym_process_substitution] = STATE(637), - [aux_sym_for_statement_repeat1] = STATE(643), - [anon_sym_RPAREN] = ACTIONS(1239), - [sym__special_characters] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1245), - [sym_raw_string] = ACTIONS(1247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1249), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), - [anon_sym_BQUOTE] = ACTIONS(1253), - [anon_sym_LT_LPAREN] = ACTIONS(1255), - [anon_sym_GT_LPAREN] = ACTIONS(1255), + [sym_for_statement] = STATE(644), + [sym_while_statement] = STATE(644), + [sym_if_statement] = STATE(644), + [sym_case_statement] = STATE(644), + [sym_function_definition] = STATE(644), + [sym_subshell] = STATE(644), + [sym_pipeline] = STATE(644), + [sym_list] = STATE(644), + [sym_command] = STATE(644), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(644), + [sym_variable_assignment] = STATE(645), + [sym_declaration_command] = STATE(644), + [sym_unset_command] = STATE(644), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1257), + [sym_word] = ACTIONS(300), }, [225] = { - [aux_sym_concatenation_repeat1] = STATE(645), - [sym_file_descriptor] = ACTIONS(1259), - [sym__concat] = ACTIONS(1261), - [sym_variable_name] = ACTIONS(1259), - [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(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_GT_GT] = ACTIONS(1263), - [anon_sym_AMP_GT] = ACTIONS(1263), - [anon_sym_AMP_GT_GT] = ACTIONS(1263), - [anon_sym_LT_AMP] = ACTIONS(1263), - [anon_sym_GT_AMP] = ACTIONS(1263), - [sym__special_characters] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [sym_raw_string] = ACTIONS(1263), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1263), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1263), - [anon_sym_BQUOTE] = ACTIONS(1263), - [anon_sym_LT_LPAREN] = ACTIONS(1263), - [anon_sym_GT_LPAREN] = ACTIONS(1263), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1263), + [sym_for_statement] = STATE(646), + [sym_while_statement] = STATE(646), + [sym_if_statement] = STATE(646), + [sym_case_statement] = STATE(646), + [sym_function_definition] = STATE(646), + [sym_subshell] = STATE(646), + [sym_pipeline] = STATE(646), + [sym_list] = STATE(646), + [sym_command] = STATE(646), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(646), + [sym_variable_assignment] = STATE(647), + [sym_declaration_command] = STATE(646), + [sym_unset_command] = STATE(646), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), }, [226] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(647), - [anon_sym_DQUOTE] = ACTIONS(1265), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym_for_statement] = STATE(648), + [sym_while_statement] = STATE(648), + [sym_if_statement] = STATE(648), + [sym_case_statement] = STATE(648), + [sym_function_definition] = STATE(648), + [sym_subshell] = STATE(648), + [sym_pipeline] = STATE(648), + [sym_list] = STATE(648), + [sym_command] = STATE(648), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(648), + [sym_variable_assignment] = STATE(649), + [sym_declaration_command] = STATE(648), + [sym_unset_command] = STATE(648), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), }, [227] = { - [sym_string] = STATE(650), - [anon_sym_DQUOTE] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(1267), - [anon_sym_POUND] = ACTIONS(1267), - [anon_sym_DASH] = ACTIONS(1267), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1269), - [anon_sym_STAR] = ACTIONS(1267), - [anon_sym_AT] = ACTIONS(1267), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_0] = ACTIONS(1271), - [anon_sym__] = ACTIONS(1271), + [sym__concat] = ACTIONS(1253), + [anon_sym_RBRACK] = ACTIONS(1241), + [sym_comment] = ACTIONS(56), }, [228] = { - [aux_sym_concatenation_repeat1] = STATE(645), - [sym_file_descriptor] = ACTIONS(1235), - [sym__concat] = ACTIONS(1261), - [sym_variable_name] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1237), - [anon_sym_SEMI_SEMI] = ACTIONS(1237), - [anon_sym_PIPE_AMP] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_LT] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1237), - [anon_sym_GT_GT] = ACTIONS(1237), - [anon_sym_AMP_GT] = ACTIONS(1237), - [anon_sym_AMP_GT_GT] = ACTIONS(1237), - [anon_sym_LT_AMP] = ACTIONS(1237), - [anon_sym_GT_AMP] = ACTIONS(1237), - [sym__special_characters] = ACTIONS(1237), - [anon_sym_DQUOTE] = ACTIONS(1237), - [anon_sym_DOLLAR] = ACTIONS(1237), - [sym_raw_string] = ACTIONS(1237), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1237), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1237), - [anon_sym_BQUOTE] = ACTIONS(1237), - [anon_sym_LT_LPAREN] = ACTIONS(1237), - [anon_sym_GT_LPAREN] = ACTIONS(1237), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LF] = ACTIONS(1237), - [anon_sym_AMP] = ACTIONS(1237), + [sym_file_descriptor] = ACTIONS(1255), + [sym_variable_name] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_RPAREN] = ACTIONS(1257), + [anon_sym_SEMI_SEMI] = ACTIONS(1257), + [anon_sym_PIPE_AMP] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_LT] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1257), + [anon_sym_GT_GT] = ACTIONS(1257), + [anon_sym_AMP_GT] = ACTIONS(1257), + [anon_sym_AMP_GT_GT] = ACTIONS(1257), + [anon_sym_LT_AMP] = ACTIONS(1257), + [anon_sym_GT_AMP] = ACTIONS(1257), + [sym__special_characters] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [anon_sym_DOLLAR] = ACTIONS(1257), + [sym_raw_string] = ACTIONS(1257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1257), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1257), + [anon_sym_BQUOTE] = ACTIONS(1257), + [anon_sym_LT_LPAREN] = ACTIONS(1257), + [anon_sym_GT_LPAREN] = ACTIONS(1257), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_LF] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), }, [229] = { - [sym_subscript] = STATE(655), - [sym_variable_name] = ACTIONS(1273), - [anon_sym_DOLLAR] = ACTIONS(1275), - [anon_sym_POUND] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1275), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1279), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_AT] = ACTIONS(1275), - [anon_sym_QMARK] = ACTIONS(1275), - [anon_sym_0] = ACTIONS(1281), - [anon_sym__] = ACTIONS(1281), + [sym_concatenation] = STATE(660), + [sym_string] = STATE(655), + [sym_simple_expansion] = STATE(655), + [sym_string_expansion] = STATE(655), + [sym_expansion] = STATE(655), + [sym_command_substitution] = STATE(655), + [sym_process_substitution] = STATE(655), + [aux_sym_for_statement_repeat1] = STATE(661), + [anon_sym_RPAREN] = ACTIONS(1259), + [sym__special_characters] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_DOLLAR] = ACTIONS(1265), + [sym_raw_string] = ACTIONS(1267), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1269), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1273), + [anon_sym_LT_LPAREN] = ACTIONS(1275), + [anon_sym_GT_LPAREN] = ACTIONS(1275), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1277), }, [230] = { - [sym_for_statement] = STATE(656), - [sym_while_statement] = STATE(656), - [sym_if_statement] = STATE(656), - [sym_case_statement] = STATE(656), - [sym_function_definition] = STATE(656), - [sym_subshell] = STATE(656), - [sym_pipeline] = STATE(656), - [sym_list] = STATE(656), - [sym_bracket_command] = STATE(656), - [sym_command] = STATE(656), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(657), - [sym_declaration_command] = STATE(656), - [sym_unset_command] = STATE(656), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [aux_sym_concatenation_repeat1] = STATE(663), + [sym_file_descriptor] = ACTIONS(1279), + [sym__concat] = ACTIONS(1281), + [sym_variable_name] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_SEMI_SEMI] = ACTIONS(1283), + [anon_sym_PIPE_AMP] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1283), + [anon_sym_PIPE_PIPE] = ACTIONS(1283), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_GT_GT] = ACTIONS(1283), + [anon_sym_AMP_GT] = ACTIONS(1283), + [anon_sym_AMP_GT_GT] = ACTIONS(1283), + [anon_sym_LT_AMP] = ACTIONS(1283), + [anon_sym_GT_AMP] = ACTIONS(1283), + [sym__special_characters] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1283), + [sym_raw_string] = ACTIONS(1283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1283), + [anon_sym_BQUOTE] = ACTIONS(1283), + [anon_sym_LT_LPAREN] = ACTIONS(1283), + [anon_sym_GT_LPAREN] = ACTIONS(1283), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1283), + [anon_sym_LF] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), }, [231] = { - [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_bracket_command] = STATE(658), - [sym_command] = STATE(658), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(659), - [sym_declaration_command] = STATE(658), - [sym_unset_command] = STATE(658), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(665), + [anon_sym_DQUOTE] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, [232] = { - [sym_for_statement] = STATE(660), - [sym_while_statement] = STATE(660), - [sym_if_statement] = STATE(660), - [sym_case_statement] = STATE(660), - [sym_function_definition] = STATE(660), - [sym_subshell] = STATE(660), - [sym_pipeline] = STATE(660), - [sym_list] = STATE(660), - [sym_bracket_command] = STATE(660), - [sym_command] = STATE(660), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(661), - [sym_declaration_command] = STATE(660), - [sym_unset_command] = STATE(660), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym_string] = STATE(668), + [anon_sym_DQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1289), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_AT] = ACTIONS(1287), + [anon_sym_QMARK] = ACTIONS(1287), + [anon_sym_0] = ACTIONS(1291), + [anon_sym__] = ACTIONS(1291), }, [233] = { - [sym_concatenation] = STATE(670), - [sym_string] = STATE(665), - [sym_simple_expansion] = STATE(665), - [sym_string_expansion] = STATE(665), - [sym_expansion] = STATE(665), - [sym_command_substitution] = STATE(665), - [sym_process_substitution] = STATE(665), - [aux_sym_for_statement_repeat1] = STATE(671), - [sym__special_characters] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1287), - [sym_raw_string] = ACTIONS(1289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LT_LPAREN] = ACTIONS(1297), - [anon_sym_GT_LPAREN] = ACTIONS(1297), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1299), + [aux_sym_concatenation_repeat1] = STATE(663), + [sym_file_descriptor] = ACTIONS(1255), + [sym__concat] = ACTIONS(1281), + [sym_variable_name] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_SEMI_SEMI] = ACTIONS(1257), + [anon_sym_PIPE_AMP] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_LT] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1257), + [anon_sym_GT_GT] = ACTIONS(1257), + [anon_sym_AMP_GT] = ACTIONS(1257), + [anon_sym_AMP_GT_GT] = ACTIONS(1257), + [anon_sym_LT_AMP] = ACTIONS(1257), + [anon_sym_GT_AMP] = ACTIONS(1257), + [sym__special_characters] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [anon_sym_DOLLAR] = ACTIONS(1257), + [sym_raw_string] = ACTIONS(1257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1257), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1257), + [anon_sym_BQUOTE] = ACTIONS(1257), + [anon_sym_LT_LPAREN] = ACTIONS(1257), + [anon_sym_GT_LPAREN] = ACTIONS(1257), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_LF] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), }, [234] = { - [sym__terminated_statement] = STATE(673), + [sym_subscript] = STATE(673), + [sym_variable_name] = ACTIONS(1293), + [anon_sym_DOLLAR] = ACTIONS(1295), + [anon_sym_POUND] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1295), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1295), + [anon_sym_AT] = ACTIONS(1295), + [anon_sym_QMARK] = ACTIONS(1295), + [anon_sym_0] = ACTIONS(1301), + [anon_sym__] = ACTIONS(1301), + }, + [235] = { [sym_for_statement] = STATE(674), [sym_while_statement] = STATE(674), [sym_if_statement] = STATE(674), @@ -16129,41 +17366,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(674), [sym_pipeline] = STATE(674), [sym_list] = STATE(674), - [sym_bracket_command] = STATE(674), [sym_command] = STATE(674), - [sym_command_name] = STATE(27), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(674), [sym_variable_assignment] = STATE(675), [sym_declaration_command] = STATE(674), [sym_unset_command] = STATE(674), - [sym_subscript] = STATE(29), + [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(676), - [aux_sym_command_repeat1] = STATE(33), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(1301), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -16171,67 +17406,177 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [235] = { - [sym_file_redirect] = STATE(202), - [sym_heredoc_redirect] = STATE(202), - [sym_herestring_redirect] = STATE(202), - [aux_sym_while_statement_repeat1] = STATE(677), - [sym_file_descriptor] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(1303), - [anon_sym_SEMI_SEMI] = ACTIONS(1303), - [anon_sym_PIPE_AMP] = ACTIONS(1303), - [anon_sym_AMP_AMP] = ACTIONS(1303), - [anon_sym_PIPE_PIPE] = ACTIONS(1303), - [anon_sym_LT] = ACTIONS(346), - [anon_sym_GT] = ACTIONS(346), - [anon_sym_GT_GT] = ACTIONS(346), - [anon_sym_AMP_GT] = ACTIONS(346), - [anon_sym_AMP_GT_GT] = ACTIONS(346), - [anon_sym_LT_AMP] = ACTIONS(346), - [anon_sym_GT_AMP] = ACTIONS(346), - [anon_sym_LT_LT] = ACTIONS(348), - [anon_sym_LT_LT_DASH] = ACTIONS(348), - [anon_sym_LT_LT_LT] = ACTIONS(350), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1303), - [anon_sym_LF] = ACTIONS(1303), - [anon_sym_AMP] = ACTIONS(1303), + [sym_word] = ACTIONS(300), }, [236] = { - [anon_sym_do] = ACTIONS(1058), - [anon_sym_then] = ACTIONS(1058), + [sym_for_statement] = STATE(676), + [sym_while_statement] = STATE(676), + [sym_if_statement] = STATE(676), + [sym_case_statement] = STATE(676), + [sym_function_definition] = STATE(676), + [sym_subshell] = STATE(676), + [sym_pipeline] = STATE(676), + [sym_list] = STATE(676), + [sym_command] = STATE(676), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(676), + [sym_variable_assignment] = STATE(677), + [sym_declaration_command] = STATE(676), + [sym_unset_command] = STATE(676), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), }, [237] = { - [sym__terminated_statement] = STATE(681), - [sym_for_statement] = STATE(682), - [sym_while_statement] = STATE(682), - [sym_if_statement] = STATE(682), - [sym_elif_clause] = STATE(683), - [sym_else_clause] = STATE(684), - [sym_case_statement] = STATE(682), - [sym_function_definition] = STATE(682), - [sym_subshell] = STATE(682), - [sym_pipeline] = STATE(682), - [sym_list] = STATE(682), - [sym_bracket_command] = STATE(682), - [sym_command] = STATE(682), + [sym_for_statement] = STATE(678), + [sym_while_statement] = STATE(678), + [sym_if_statement] = STATE(678), + [sym_case_statement] = STATE(678), + [sym_function_definition] = STATE(678), + [sym_subshell] = STATE(678), + [sym_pipeline] = STATE(678), + [sym_list] = STATE(678), + [sym_command] = STATE(678), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(678), + [sym_variable_assignment] = STATE(679), + [sym_declaration_command] = STATE(678), + [sym_unset_command] = STATE(678), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [238] = { + [sym_concatenation] = STATE(688), + [sym_string] = STATE(683), + [sym_simple_expansion] = STATE(683), + [sym_string_expansion] = STATE(683), + [sym_expansion] = STATE(683), + [sym_command_substitution] = STATE(683), + [sym_process_substitution] = STATE(683), + [aux_sym_for_statement_repeat1] = STATE(689), + [sym__special_characters] = ACTIONS(1303), + [anon_sym_DQUOTE] = ACTIONS(1305), + [anon_sym_DOLLAR] = ACTIONS(1307), + [sym_raw_string] = ACTIONS(1309), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1311), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1313), + [anon_sym_BQUOTE] = ACTIONS(1315), + [anon_sym_LT_LPAREN] = ACTIONS(1317), + [anon_sym_GT_LPAREN] = ACTIONS(1317), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1319), + }, + [239] = { + [sym__terminated_statement] = STATE(691), + [sym_for_statement] = STATE(692), + [sym_while_statement] = STATE(692), + [sym_if_statement] = STATE(692), + [sym_case_statement] = STATE(692), + [sym_function_definition] = STATE(692), + [sym_subshell] = STATE(692), + [sym_pipeline] = STATE(692), + [sym_list] = STATE(692), + [sym_command] = STATE(692), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(685), - [sym_declaration_command] = STATE(682), - [sym_unset_command] = STATE(682), + [sym_bracket_command] = STATE(692), + [sym_variable_assignment] = STATE(693), + [sym_declaration_command] = STATE(692), + [sym_unset_command] = STATE(692), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -16241,17 +17586,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(686), - [aux_sym_if_statement_repeat1] = STATE(687), + [aux_sym_program_repeat1] = STATE(694), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), + [anon_sym_done] = ACTIONS(1321), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(1305), - [anon_sym_elif] = ACTIONS(1307), - [anon_sym_else] = ACTIONS(1309), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -16283,338 +17625,438 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(58), }, - [238] = { - [sym_string] = STATE(688), - [sym_simple_expansion] = STATE(688), - [sym_string_expansion] = STATE(688), - [sym_expansion] = STATE(688), - [sym_command_substitution] = STATE(688), - [sym_process_substitution] = STATE(688), - [sym__special_characters] = ACTIONS(1311), + [240] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(695), + [sym_file_descriptor] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(1323), + [anon_sym_SEMI_SEMI] = ACTIONS(1323), + [anon_sym_PIPE_AMP] = ACTIONS(1323), + [anon_sym_AMP_AMP] = ACTIONS(1323), + [anon_sym_PIPE_PIPE] = ACTIONS(1323), + [anon_sym_LT] = ACTIONS(356), + [anon_sym_GT] = ACTIONS(356), + [anon_sym_GT_GT] = ACTIONS(356), + [anon_sym_AMP_GT] = ACTIONS(356), + [anon_sym_AMP_GT_GT] = ACTIONS(356), + [anon_sym_LT_AMP] = ACTIONS(356), + [anon_sym_GT_AMP] = ACTIONS(356), + [anon_sym_LT_LT] = ACTIONS(358), + [anon_sym_LT_LT_DASH] = ACTIONS(358), + [anon_sym_LT_LT_LT] = ACTIONS(360), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1323), + [anon_sym_LF] = ACTIONS(1323), + [anon_sym_AMP] = ACTIONS(1323), + }, + [241] = { + [anon_sym_do] = ACTIONS(1080), + [anon_sym_then] = ACTIONS(1080), + [sym_comment] = ACTIONS(56), + }, + [242] = { + [sym__terminated_statement] = STATE(699), + [sym_for_statement] = STATE(700), + [sym_while_statement] = STATE(700), + [sym_if_statement] = STATE(700), + [sym_elif_clause] = STATE(701), + [sym_else_clause] = STATE(702), + [sym_case_statement] = STATE(700), + [sym_function_definition] = STATE(700), + [sym_subshell] = STATE(700), + [sym_pipeline] = STATE(700), + [sym_list] = STATE(700), + [sym_command] = STATE(700), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(700), + [sym_variable_assignment] = STATE(703), + [sym_declaration_command] = STATE(700), + [sym_unset_command] = STATE(700), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(704), + [aux_sym_if_statement_repeat1] = STATE(705), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_fi] = ACTIONS(1325), + [anon_sym_elif] = ACTIONS(1327), + [anon_sym_else] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [243] = { + [sym_string] = STATE(706), + [sym_simple_expansion] = STATE(706), + [sym_string_expansion] = STATE(706), + [sym_expansion] = STATE(706), + [sym_command_substitution] = STATE(706), + [sym_process_substitution] = STATE(706), + [sym__special_characters] = ACTIONS(1331), [anon_sym_DQUOTE] = ACTIONS(72), [anon_sym_DOLLAR] = ACTIONS(74), - [sym_raw_string] = ACTIONS(1313), + [sym_raw_string] = ACTIONS(1333), [anon_sym_DOLLAR_LBRACE] = ACTIONS(78), [anon_sym_DOLLAR_LPAREN] = ACTIONS(80), [anon_sym_BQUOTE] = ACTIONS(82), [anon_sym_LT_LPAREN] = ACTIONS(84), [anon_sym_GT_LPAREN] = ACTIONS(84), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1311), - }, - [239] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1315), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1315), - [anon_sym_LF] = ACTIONS(1315), - [anon_sym_AMP] = ACTIONS(1315), - }, - [240] = { - [anon_sym_in] = ACTIONS(1317), - [sym_comment] = ACTIONS(56), - }, - [241] = { - [aux_sym_concatenation_repeat1] = STATE(691), - [sym__concat] = ACTIONS(440), - [anon_sym_in] = ACTIONS(762), - [anon_sym_SEMI_SEMI] = ACTIONS(762), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(762), - [anon_sym_LF] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(762), - }, - [242] = { - [sym__concat] = ACTIONS(764), - [anon_sym_in] = ACTIONS(766), - [anon_sym_SEMI_SEMI] = ACTIONS(766), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(766), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(766), - }, - [243] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(1319), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym_word] = ACTIONS(1331), }, [244] = { - [sym__concat] = ACTIONS(796), - [anon_sym_in] = ACTIONS(798), - [anon_sym_SEMI_SEMI] = ACTIONS(798), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(798), - [anon_sym_LF] = ACTIONS(798), - [anon_sym_AMP] = ACTIONS(798), + [anon_sym_SEMI_SEMI] = ACTIONS(1335), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1335), + [anon_sym_LF] = ACTIONS(1335), + [anon_sym_AMP] = ACTIONS(1335), }, [245] = { - [sym__concat] = ACTIONS(800), - [anon_sym_in] = ACTIONS(802), - [anon_sym_SEMI_SEMI] = ACTIONS(802), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(802), - [anon_sym_LF] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(802), + [anon_sym_in] = ACTIONS(1337), + [sym_comment] = ACTIONS(56), }, [246] = { - [sym__concat] = ACTIONS(804), - [anon_sym_in] = ACTIONS(806), - [anon_sym_SEMI_SEMI] = ACTIONS(806), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(806), + [aux_sym_concatenation_repeat1] = STATE(709), + [sym__concat] = ACTIONS(450), + [anon_sym_in] = ACTIONS(774), + [anon_sym_SEMI_SEMI] = ACTIONS(774), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(774), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_AMP] = ACTIONS(774), }, [247] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1321), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1321), - [anon_sym_LF] = ACTIONS(1321), - [anon_sym_AMP] = ACTIONS(1321), + [sym__concat] = ACTIONS(776), + [anon_sym_in] = ACTIONS(778), + [anon_sym_SEMI_SEMI] = ACTIONS(778), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(778), + [anon_sym_LF] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(778), }, [248] = { - [anon_sym_in] = ACTIONS(1323), - [sym_comment] = ACTIONS(56), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(1339), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, [249] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1325), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(808), + [anon_sym_in] = ACTIONS(810), + [anon_sym_SEMI_SEMI] = ACTIONS(810), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(810), + [anon_sym_LF] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(810), }, [250] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(697), - [anon_sym_RBRACE] = ACTIONS(1327), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym__concat] = ACTIONS(812), + [anon_sym_in] = ACTIONS(814), + [anon_sym_SEMI_SEMI] = ACTIONS(814), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(814), + [anon_sym_LF] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(814), }, [251] = { - [sym_subscript] = STATE(701), - [sym_variable_name] = ACTIONS(1329), - [anon_sym_DOLLAR] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1331), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1333), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_AT] = ACTIONS(1331), - [anon_sym_QMARK] = ACTIONS(1331), - [anon_sym_0] = ACTIONS(1335), - [anon_sym__] = ACTIONS(1335), + [sym__concat] = ACTIONS(816), + [anon_sym_in] = ACTIONS(818), + [anon_sym_SEMI_SEMI] = ACTIONS(818), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_LF] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(818), }, [252] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(703), - [anon_sym_RBRACE] = ACTIONS(1337), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [anon_sym_SEMI_SEMI] = ACTIONS(1341), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1341), + [anon_sym_LF] = ACTIONS(1341), + [anon_sym_AMP] = ACTIONS(1341), }, [253] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(705), - [anon_sym_RBRACE] = ACTIONS(1339), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [anon_sym_in] = ACTIONS(1343), + [sym_comment] = ACTIONS(56), }, [254] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1341), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(1345), [sym_comment] = ACTIONS(56), }, [255] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1341), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(716), + [anon_sym_RBRACE] = ACTIONS(1347), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1349), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [256] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1341), + [sym_subscript] = STATE(720), + [sym_variable_name] = ACTIONS(1351), + [anon_sym_DOLLAR] = ACTIONS(1353), + [anon_sym_DASH] = ACTIONS(1353), [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1355), + [anon_sym_STAR] = ACTIONS(1353), + [anon_sym_AT] = ACTIONS(1353), + [anon_sym_QMARK] = ACTIONS(1353), + [anon_sym_0] = ACTIONS(1357), + [anon_sym__] = ACTIONS(1357), }, [257] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(1341), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(723), + [anon_sym_RBRACE] = ACTIONS(1359), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1361), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [258] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1343), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(726), + [anon_sym_RBRACE] = ACTIONS(1363), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1365), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [259] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1343), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1367), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), }, [260] = { - [anon_sym_RPAREN] = ACTIONS(1345), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1367), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), }, [261] = { - [sym__terminated_statement] = STATE(710), - [sym_for_statement] = STATE(711), - [sym_while_statement] = STATE(711), - [sym_if_statement] = STATE(711), - [sym_case_statement] = STATE(711), - [sym_function_definition] = STATE(711), - [sym_subshell] = STATE(711), - [sym_pipeline] = STATE(711), - [sym_list] = STATE(711), - [sym_bracket_command] = STATE(711), - [sym_command] = STATE(711), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(1367), + [sym_comment] = ACTIONS(56), + }, + [262] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(1367), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [263] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1369), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [264] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1369), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [265] = { + [anon_sym_RPAREN] = ACTIONS(1371), + [sym_comment] = ACTIONS(56), + }, + [266] = { + [sym__terminated_statement] = STATE(731), + [sym_for_statement] = STATE(732), + [sym_while_statement] = STATE(732), + [sym_if_statement] = STATE(732), + [sym_case_statement] = STATE(732), + [sym_function_definition] = STATE(732), + [sym_subshell] = STATE(732), + [sym_pipeline] = STATE(732), + [sym_list] = STATE(732), + [sym_command] = STATE(732), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(712), - [sym_declaration_command] = STATE(711), - [sym_unset_command] = STATE(711), + [sym_bracket_command] = STATE(732), + [sym_variable_assignment] = STATE(733), + [sym_declaration_command] = STATE(732), + [sym_unset_command] = STATE(732), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -16624,7 +18066,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(713), + [aux_sym_program_repeat1] = STATE(734), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), @@ -16634,7 +18076,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_RBRACE] = ACTIONS(1347), + [anon_sym_RBRACE] = ACTIONS(1373), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_LBRACK_LBRACK] = ACTIONS(30), [anon_sym_declare] = ACTIONS(32), @@ -16663,324 +18105,248 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(58), }, - [262] = { - [sym_file_redirect] = STATE(716), - [sym_file_descriptor] = ACTIONS(1349), - [anon_sym_PIPE] = ACTIONS(1351), - [anon_sym_SEMI_SEMI] = ACTIONS(1351), - [anon_sym_PIPE_AMP] = ACTIONS(1351), - [anon_sym_AMP_AMP] = ACTIONS(1351), - [anon_sym_PIPE_PIPE] = ACTIONS(1351), - [anon_sym_LT] = ACTIONS(1353), - [anon_sym_GT] = ACTIONS(1353), - [anon_sym_GT_GT] = ACTIONS(1353), - [anon_sym_AMP_GT] = ACTIONS(1353), - [anon_sym_AMP_GT_GT] = ACTIONS(1353), - [anon_sym_LT_AMP] = ACTIONS(1353), - [anon_sym_GT_AMP] = ACTIONS(1353), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1351), - [anon_sym_LF] = ACTIONS(1351), - [anon_sym_AMP] = ACTIONS(1351), - }, - [263] = { - [sym_concatenation] = STATE(223), - [sym_string] = STATE(720), - [sym_array] = STATE(223), - [sym_simple_expansion] = STATE(720), - [sym_string_expansion] = STATE(720), - [sym_expansion] = STATE(720), - [sym_command_substitution] = STATE(720), - [sym_process_substitution] = STATE(720), - [sym__empty_value] = ACTIONS(406), - [anon_sym_LPAREN] = ACTIONS(408), - [sym__special_characters] = ACTIONS(1355), - [anon_sym_DQUOTE] = ACTIONS(1357), - [anon_sym_DOLLAR] = ACTIONS(1359), - [sym_raw_string] = ACTIONS(1361), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1363), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1365), - [anon_sym_BQUOTE] = ACTIONS(1367), - [anon_sym_LT_LPAREN] = ACTIONS(1369), - [anon_sym_GT_LPAREN] = ACTIONS(1369), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1371), - }, - [264] = { - [sym_do_group] = STATE(725), - [anon_sym_do] = ACTIONS(434), - [sym_comment] = ACTIONS(56), - }, - [265] = { - [sym_compound_statement] = STATE(727), - [anon_sym_LPAREN] = ACTIONS(1373), - [anon_sym_LBRACE] = ACTIONS(470), - [sym_comment] = ACTIONS(56), - }, - [266] = { - [sym__assignment] = STATE(366), - [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(1375), - [anon_sym_PLUS_EQ] = ACTIONS(1375), - [sym_comment] = ACTIONS(56), - }, [267] = { - [aux_sym_concatenation_repeat1] = STATE(730), - [sym__concat] = ACTIONS(1377), - [sym_variable_name] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(666), - [anon_sym_RPAREN] = ACTIONS(666), - [anon_sym_SEMI_SEMI] = ACTIONS(666), - [anon_sym_PIPE_AMP] = ACTIONS(666), - [anon_sym_AMP_AMP] = ACTIONS(666), - [anon_sym_PIPE_PIPE] = ACTIONS(666), - [sym__special_characters] = ACTIONS(666), - [anon_sym_DQUOTE] = ACTIONS(666), - [anon_sym_DOLLAR] = ACTIONS(666), - [sym_raw_string] = ACTIONS(666), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(666), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(666), - [anon_sym_BQUOTE] = ACTIONS(666), - [anon_sym_LT_LPAREN] = ACTIONS(666), - [anon_sym_GT_LPAREN] = ACTIONS(666), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(666), - [sym_word] = ACTIONS(666), - [anon_sym_SEMI] = ACTIONS(666), - [anon_sym_LF] = ACTIONS(666), - [anon_sym_AMP] = ACTIONS(666), + [sym_file_redirect] = STATE(737), + [sym_file_descriptor] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1377), + [anon_sym_SEMI_SEMI] = ACTIONS(1377), + [anon_sym_PIPE_AMP] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1377), + [anon_sym_PIPE_PIPE] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_GT_GT] = ACTIONS(1379), + [anon_sym_AMP_GT] = ACTIONS(1379), + [anon_sym_AMP_GT_GT] = ACTIONS(1379), + [anon_sym_LT_AMP] = ACTIONS(1379), + [anon_sym_GT_AMP] = ACTIONS(1379), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_LF] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1377), }, [268] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(732), - [anon_sym_DQUOTE] = ACTIONS(1379), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym_concatenation] = STATE(228), + [sym_string] = STATE(741), + [sym_array] = STATE(228), + [sym_simple_expansion] = STATE(741), + [sym_string_expansion] = STATE(741), + [sym_expansion] = STATE(741), + [sym_command_substitution] = STATE(741), + [sym_process_substitution] = STATE(741), + [sym__empty_value] = ACTIONS(416), + [anon_sym_LPAREN] = ACTIONS(418), + [sym__special_characters] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1383), + [anon_sym_DOLLAR] = ACTIONS(1385), + [sym_raw_string] = ACTIONS(1387), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1389), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1391), + [anon_sym_BQUOTE] = ACTIONS(1393), + [anon_sym_LT_LPAREN] = ACTIONS(1395), + [anon_sym_GT_LPAREN] = ACTIONS(1395), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1397), }, [269] = { - [sym_string] = STATE(735), - [anon_sym_DQUOTE] = ACTIONS(1381), - [anon_sym_DOLLAR] = ACTIONS(1383), - [anon_sym_POUND] = ACTIONS(1383), - [anon_sym_DASH] = ACTIONS(1383), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1383), - [anon_sym_AT] = ACTIONS(1383), - [anon_sym_QMARK] = ACTIONS(1383), - [anon_sym_0] = ACTIONS(1387), - [anon_sym__] = ACTIONS(1387), + [sym_do_group] = STATE(746), + [anon_sym_do] = ACTIONS(444), + [sym_comment] = ACTIONS(56), }, [270] = { - [aux_sym_concatenation_repeat1] = STATE(730), - [sym__concat] = ACTIONS(1377), - [sym_variable_name] = ACTIONS(678), - [anon_sym_PIPE] = ACTIONS(680), - [anon_sym_RPAREN] = ACTIONS(680), - [anon_sym_SEMI_SEMI] = ACTIONS(680), - [anon_sym_PIPE_AMP] = ACTIONS(680), - [anon_sym_AMP_AMP] = ACTIONS(680), - [anon_sym_PIPE_PIPE] = ACTIONS(680), - [sym__special_characters] = ACTIONS(680), - [anon_sym_DQUOTE] = ACTIONS(680), - [anon_sym_DOLLAR] = ACTIONS(680), - [sym_raw_string] = ACTIONS(680), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(680), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(680), - [anon_sym_BQUOTE] = ACTIONS(680), - [anon_sym_LT_LPAREN] = ACTIONS(680), - [anon_sym_GT_LPAREN] = ACTIONS(680), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(680), - [sym_word] = ACTIONS(680), - [anon_sym_SEMI] = ACTIONS(680), - [anon_sym_LF] = ACTIONS(680), - [anon_sym_AMP] = ACTIONS(680), + [sym_compound_statement] = STATE(748), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(480), + [sym_comment] = ACTIONS(56), }, [271] = { - [sym_subscript] = STATE(740), - [sym_variable_name] = ACTIONS(1389), - [anon_sym_DOLLAR] = ACTIONS(1391), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_DASH] = ACTIONS(1391), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1391), - [anon_sym_AT] = ACTIONS(1391), - [anon_sym_QMARK] = ACTIONS(1391), - [anon_sym_0] = ACTIONS(1397), - [anon_sym__] = ACTIONS(1397), + [sym_concatenation] = STATE(84), + [sym_string] = STATE(79), + [sym_simple_expansion] = STATE(79), + [sym_string_expansion] = STATE(79), + [sym_expansion] = STATE(79), + [sym_command_substitution] = STATE(79), + [sym_process_substitution] = STATE(79), + [aux_sym_command_repeat2] = STATE(350), + [anon_sym_EQ_TILDE] = ACTIONS(122), + [anon_sym_RBRACK] = ACTIONS(1401), + [sym__special_characters] = ACTIONS(630), + [anon_sym_DQUOTE] = ACTIONS(126), + [anon_sym_DOLLAR] = ACTIONS(128), + [sym_raw_string] = ACTIONS(130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(132), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(134), + [anon_sym_BQUOTE] = ACTIONS(136), + [anon_sym_LT_LPAREN] = ACTIONS(138), + [anon_sym_GT_LPAREN] = ACTIONS(138), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(140), }, [272] = { - [sym_for_statement] = STATE(741), - [sym_while_statement] = STATE(741), - [sym_if_statement] = STATE(741), - [sym_case_statement] = STATE(741), - [sym_function_definition] = STATE(741), - [sym_subshell] = STATE(741), - [sym_pipeline] = STATE(741), - [sym_list] = STATE(741), - [sym_bracket_command] = STATE(741), - [sym_command] = STATE(741), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(742), - [sym_declaration_command] = STATE(741), - [sym_unset_command] = STATE(741), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [sym_concatenation] = STATE(95), + [sym_string] = STATE(90), + [sym_simple_expansion] = STATE(90), + [sym_string_expansion] = STATE(90), + [sym_expansion] = STATE(90), + [sym_command_substitution] = STATE(90), + [sym_process_substitution] = STATE(90), + [aux_sym_command_repeat2] = STATE(372), + [anon_sym_EQ_TILDE] = ACTIONS(142), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1401), + [sym__special_characters] = ACTIONS(670), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [sym_raw_string] = ACTIONS(150), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(156), + [anon_sym_LT_LPAREN] = ACTIONS(158), + [anon_sym_GT_LPAREN] = ACTIONS(158), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym_word] = ACTIONS(160), }, [273] = { - [sym_for_statement] = STATE(743), - [sym_while_statement] = STATE(743), - [sym_if_statement] = STATE(743), - [sym_case_statement] = STATE(743), - [sym_function_definition] = STATE(743), - [sym_subshell] = STATE(743), - [sym_pipeline] = STATE(743), - [sym_list] = STATE(743), - [sym_bracket_command] = STATE(743), - [sym_command] = STATE(743), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(744), - [sym_declaration_command] = STATE(743), - [sym_unset_command] = STATE(743), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), + [sym__assignment] = STATE(374), + [anon_sym_LBRACK] = ACTIONS(64), + [anon_sym_EQ] = ACTIONS(1403), + [anon_sym_PLUS_EQ] = ACTIONS(1403), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), }, [274] = { - [sym_for_statement] = STATE(745), - [sym_while_statement] = STATE(745), - [sym_if_statement] = STATE(745), - [sym_case_statement] = STATE(745), - [sym_function_definition] = STATE(745), - [sym_subshell] = STATE(745), - [sym_pipeline] = STATE(745), - [sym_list] = STATE(745), - [sym_bracket_command] = STATE(745), - [sym_command] = STATE(745), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(746), - [sym_declaration_command] = STATE(745), - [sym_unset_command] = STATE(745), - [sym_subscript] = STATE(168), + [aux_sym_concatenation_repeat1] = STATE(752), + [sym__concat] = ACTIONS(1405), + [sym_variable_name] = ACTIONS(676), + [anon_sym_PIPE] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(678), + [anon_sym_SEMI_SEMI] = ACTIONS(678), + [anon_sym_PIPE_AMP] = ACTIONS(678), + [anon_sym_AMP_AMP] = ACTIONS(678), + [anon_sym_PIPE_PIPE] = ACTIONS(678), + [sym__special_characters] = ACTIONS(678), + [anon_sym_DQUOTE] = ACTIONS(678), + [anon_sym_DOLLAR] = ACTIONS(678), + [sym_raw_string] = ACTIONS(678), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(678), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(678), + [anon_sym_BQUOTE] = ACTIONS(678), + [anon_sym_LT_LPAREN] = ACTIONS(678), + [anon_sym_GT_LPAREN] = ACTIONS(678), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(678), + [sym_word] = ACTIONS(678), + [anon_sym_SEMI] = ACTIONS(678), + [anon_sym_LF] = ACTIONS(678), + [anon_sym_AMP] = ACTIONS(678), + }, + [275] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(754), + [anon_sym_DQUOTE] = ACTIONS(1407), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [276] = { + [sym_string] = STATE(757), + [anon_sym_DQUOTE] = ACTIONS(1409), + [anon_sym_DOLLAR] = ACTIONS(1411), + [anon_sym_POUND] = ACTIONS(1411), + [anon_sym_DASH] = ACTIONS(1411), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1413), + [anon_sym_STAR] = ACTIONS(1411), + [anon_sym_AT] = ACTIONS(1411), + [anon_sym_QMARK] = ACTIONS(1411), + [anon_sym_0] = ACTIONS(1415), + [anon_sym__] = ACTIONS(1415), + }, + [277] = { + [aux_sym_concatenation_repeat1] = STATE(752), + [sym__concat] = ACTIONS(1405), + [sym_variable_name] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(692), + [anon_sym_RPAREN] = ACTIONS(692), + [anon_sym_SEMI_SEMI] = ACTIONS(692), + [anon_sym_PIPE_AMP] = ACTIONS(692), + [anon_sym_AMP_AMP] = ACTIONS(692), + [anon_sym_PIPE_PIPE] = ACTIONS(692), + [sym__special_characters] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(692), + [anon_sym_DOLLAR] = ACTIONS(692), + [sym_raw_string] = ACTIONS(692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(692), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(692), + [anon_sym_BQUOTE] = ACTIONS(692), + [anon_sym_LT_LPAREN] = ACTIONS(692), + [anon_sym_GT_LPAREN] = ACTIONS(692), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(692), + [sym_word] = ACTIONS(692), + [anon_sym_SEMI] = ACTIONS(692), + [anon_sym_LF] = ACTIONS(692), + [anon_sym_AMP] = ACTIONS(692), + }, + [278] = { + [sym_subscript] = STATE(762), + [sym_variable_name] = ACTIONS(1417), + [anon_sym_DOLLAR] = ACTIONS(1419), + [anon_sym_POUND] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1419), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1423), + [anon_sym_STAR] = ACTIONS(1419), + [anon_sym_AT] = ACTIONS(1419), + [anon_sym_QMARK] = ACTIONS(1419), + [anon_sym_0] = ACTIONS(1425), + [anon_sym__] = ACTIONS(1425), + }, + [279] = { + [sym_for_statement] = STATE(763), + [sym_while_statement] = STATE(763), + [sym_if_statement] = STATE(763), + [sym_case_statement] = STATE(763), + [sym_function_definition] = STATE(763), + [sym_subshell] = STATE(763), + [sym_pipeline] = STATE(763), + [sym_list] = STATE(763), + [sym_command] = STATE(763), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(763), + [sym_variable_assignment] = STATE(764), + [sym_declaration_command] = STATE(763), + [sym_unset_command] = STATE(763), + [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -16988,113 +18354,183 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [275] = { - [sym__assignment] = STATE(366), - [anon_sym_EQ] = ACTIONS(1375), - [anon_sym_PLUS_EQ] = ACTIONS(1375), - [sym_comment] = ACTIONS(56), - }, - [276] = { - [sym_variable_assignment] = STATE(105), - [sym_subscript] = STATE(275), - [sym_concatenation] = STATE(105), - [sym_string] = STATE(270), - [sym_simple_expansion] = STATE(270), - [sym_string_expansion] = STATE(270), - [sym_expansion] = STATE(270), - [sym_command_substitution] = STATE(270), - [sym_process_substitution] = STATE(270), - [aux_sym_declaration_command_repeat1] = STATE(747), - [sym_variable_name] = ACTIONS(476), - [anon_sym_PIPE] = ACTIONS(696), - [anon_sym_RPAREN] = ACTIONS(696), - [anon_sym_SEMI_SEMI] = ACTIONS(696), - [anon_sym_PIPE_AMP] = ACTIONS(696), - [anon_sym_AMP_AMP] = ACTIONS(696), - [anon_sym_PIPE_PIPE] = ACTIONS(696), - [sym__special_characters] = ACTIONS(478), - [anon_sym_DQUOTE] = ACTIONS(480), - [anon_sym_DOLLAR] = ACTIONS(482), - [sym_raw_string] = ACTIONS(484), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(486), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(488), - [anon_sym_BQUOTE] = ACTIONS(490), - [anon_sym_LT_LPAREN] = ACTIONS(492), - [anon_sym_GT_LPAREN] = ACTIONS(492), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(180), - [sym_word] = ACTIONS(484), - [anon_sym_SEMI] = ACTIONS(696), - [anon_sym_LF] = ACTIONS(696), - [anon_sym_AMP] = ACTIONS(696), - }, - [277] = { - [aux_sym_concatenation_repeat1] = STATE(749), - [sym__concat] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(700), - [anon_sym_RPAREN] = ACTIONS(700), - [anon_sym_SEMI_SEMI] = ACTIONS(700), - [anon_sym_PIPE_AMP] = ACTIONS(700), - [anon_sym_AMP_AMP] = ACTIONS(700), - [anon_sym_PIPE_PIPE] = ACTIONS(700), - [sym__special_characters] = ACTIONS(700), - [anon_sym_DQUOTE] = ACTIONS(700), - [anon_sym_DOLLAR] = ACTIONS(700), - [sym_raw_string] = ACTIONS(700), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(700), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(700), - [anon_sym_BQUOTE] = ACTIONS(700), - [anon_sym_LT_LPAREN] = ACTIONS(700), - [anon_sym_GT_LPAREN] = ACTIONS(700), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(700), - [sym_word] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(700), - [anon_sym_LF] = ACTIONS(700), - [anon_sym_AMP] = ACTIONS(700), - }, - [278] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(751), - [anon_sym_DQUOTE] = ACTIONS(1401), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [279] = { - [sym_string] = STATE(754), - [anon_sym_DQUOTE] = ACTIONS(1403), - [anon_sym_DOLLAR] = ACTIONS(1405), - [anon_sym_POUND] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_AT] = ACTIONS(1405), - [anon_sym_QMARK] = ACTIONS(1405), - [anon_sym_0] = ACTIONS(1409), - [anon_sym__] = ACTIONS(1409), + [sym_word] = ACTIONS(300), }, [280] = { - [aux_sym_concatenation_repeat1] = STATE(749), - [sym__concat] = ACTIONS(1399), + [sym_for_statement] = STATE(765), + [sym_while_statement] = STATE(765), + [sym_if_statement] = STATE(765), + [sym_case_statement] = STATE(765), + [sym_function_definition] = STATE(765), + [sym_subshell] = STATE(765), + [sym_pipeline] = STATE(765), + [sym_list] = STATE(765), + [sym_command] = STATE(765), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(765), + [sym_variable_assignment] = STATE(766), + [sym_declaration_command] = STATE(765), + [sym_unset_command] = STATE(765), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), + }, + [281] = { + [sym_for_statement] = STATE(767), + [sym_while_statement] = STATE(767), + [sym_if_statement] = STATE(767), + [sym_case_statement] = STATE(767), + [sym_function_definition] = STATE(767), + [sym_subshell] = STATE(767), + [sym_pipeline] = STATE(767), + [sym_list] = STATE(767), + [sym_command] = STATE(767), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(767), + [sym_variable_assignment] = STATE(768), + [sym_declaration_command] = STATE(767), + [sym_unset_command] = STATE(767), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [282] = { + [sym__assignment] = STATE(374), + [anon_sym_EQ] = ACTIONS(1403), + [anon_sym_PLUS_EQ] = ACTIONS(1403), + [sym_comment] = ACTIONS(56), + }, + [283] = { + [sym_variable_assignment] = STATE(107), + [sym_subscript] = STATE(282), + [sym_concatenation] = STATE(107), + [sym_string] = STATE(277), + [sym_simple_expansion] = STATE(277), + [sym_string_expansion] = STATE(277), + [sym_expansion] = STATE(277), + [sym_command_substitution] = STATE(277), + [sym_process_substitution] = STATE(277), + [aux_sym_declaration_command_repeat1] = STATE(769), + [sym_variable_name] = ACTIONS(486), + [anon_sym_PIPE] = ACTIONS(708), + [anon_sym_RPAREN] = ACTIONS(708), + [anon_sym_SEMI_SEMI] = ACTIONS(708), + [anon_sym_PIPE_AMP] = ACTIONS(708), + [anon_sym_AMP_AMP] = ACTIONS(708), + [anon_sym_PIPE_PIPE] = ACTIONS(708), + [sym__special_characters] = ACTIONS(488), + [anon_sym_DQUOTE] = ACTIONS(490), + [anon_sym_DOLLAR] = ACTIONS(492), + [sym_raw_string] = ACTIONS(494), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(496), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(498), + [anon_sym_BQUOTE] = ACTIONS(500), + [anon_sym_LT_LPAREN] = ACTIONS(502), + [anon_sym_GT_LPAREN] = ACTIONS(502), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(184), + [sym_word] = ACTIONS(494), + [anon_sym_SEMI] = ACTIONS(708), + [anon_sym_LF] = ACTIONS(708), + [anon_sym_AMP] = ACTIONS(708), + }, + [284] = { + [aux_sym_concatenation_repeat1] = STATE(771), + [sym__concat] = ACTIONS(1427), [anon_sym_PIPE] = ACTIONS(712), [anon_sym_RPAREN] = ACTIONS(712), [anon_sym_SEMI_SEMI] = ACTIONS(712), @@ -17110,485 +18546,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(712), [anon_sym_LT_LPAREN] = ACTIONS(712), [anon_sym_GT_LPAREN] = ACTIONS(712), - [sym_comment] = ACTIONS(178), + [sym_comment] = ACTIONS(182), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(712), [sym_word] = ACTIONS(712), [anon_sym_SEMI] = ACTIONS(712), [anon_sym_LF] = ACTIONS(712), [anon_sym_AMP] = ACTIONS(712), }, - [281] = { - [sym_subscript] = STATE(759), - [sym_variable_name] = ACTIONS(1411), - [anon_sym_DOLLAR] = ACTIONS(1413), - [anon_sym_POUND] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1413), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1417), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_AT] = ACTIONS(1413), - [anon_sym_QMARK] = ACTIONS(1413), - [anon_sym_0] = ACTIONS(1419), - [anon_sym__] = ACTIONS(1419), - }, - [282] = { - [sym_for_statement] = STATE(760), - [sym_while_statement] = STATE(760), - [sym_if_statement] = STATE(760), - [sym_case_statement] = STATE(760), - [sym_function_definition] = STATE(760), - [sym_subshell] = STATE(760), - [sym_pipeline] = STATE(760), - [sym_list] = STATE(760), - [sym_bracket_command] = STATE(760), - [sym_command] = STATE(760), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(761), - [sym_declaration_command] = STATE(760), - [sym_unset_command] = STATE(760), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [283] = { - [sym_for_statement] = STATE(762), - [sym_while_statement] = STATE(762), - [sym_if_statement] = STATE(762), - [sym_case_statement] = STATE(762), - [sym_function_definition] = STATE(762), - [sym_subshell] = STATE(762), - [sym_pipeline] = STATE(762), - [sym_list] = STATE(762), - [sym_bracket_command] = STATE(762), - [sym_command] = STATE(762), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(763), - [sym_declaration_command] = STATE(762), - [sym_unset_command] = STATE(762), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), - }, - [284] = { - [sym_for_statement] = STATE(764), - [sym_while_statement] = STATE(764), - [sym_if_statement] = STATE(764), - [sym_case_statement] = STATE(764), - [sym_function_definition] = STATE(764), - [sym_subshell] = STATE(764), - [sym_pipeline] = STATE(764), - [sym_list] = STATE(764), - [sym_bracket_command] = STATE(764), - [sym_command] = STATE(764), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(765), - [sym_declaration_command] = STATE(764), - [sym_unset_command] = STATE(764), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, [285] = { - [sym_concatenation] = STATE(117), - [sym_string] = STATE(280), - [sym_simple_expansion] = STATE(280), - [sym_string_expansion] = STATE(280), - [sym_expansion] = STATE(280), - [sym_command_substitution] = STATE(280), - [sym_process_substitution] = STATE(280), - [aux_sym_unset_command_repeat1] = STATE(766), - [anon_sym_PIPE] = ACTIONS(726), - [anon_sym_RPAREN] = ACTIONS(726), - [anon_sym_SEMI_SEMI] = ACTIONS(726), - [anon_sym_PIPE_AMP] = ACTIONS(726), - [anon_sym_AMP_AMP] = ACTIONS(726), - [anon_sym_PIPE_PIPE] = ACTIONS(726), - [sym__special_characters] = ACTIONS(494), - [anon_sym_DQUOTE] = ACTIONS(496), - [anon_sym_DOLLAR] = ACTIONS(498), - [sym_raw_string] = ACTIONS(500), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(502), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(504), - [anon_sym_BQUOTE] = ACTIONS(506), - [anon_sym_LT_LPAREN] = ACTIONS(508), - [anon_sym_GT_LPAREN] = ACTIONS(508), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(200), - [sym_word] = ACTIONS(500), - [anon_sym_SEMI] = ACTIONS(726), - [anon_sym_LF] = ACTIONS(726), - [anon_sym_AMP] = ACTIONS(726), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(773), + [anon_sym_DQUOTE] = ACTIONS(1429), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, [286] = { - [sym_string] = STATE(767), - [sym_simple_expansion] = STATE(767), - [sym_string_expansion] = STATE(767), - [sym_expansion] = STATE(767), - [sym_command_substitution] = STATE(767), - [sym_process_substitution] = STATE(767), - [sym__special_characters] = ACTIONS(1421), - [anon_sym_DQUOTE] = ACTIONS(102), - [anon_sym_DOLLAR] = ACTIONS(104), - [sym_raw_string] = ACTIONS(1423), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(108), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(110), - [anon_sym_BQUOTE] = ACTIONS(112), - [anon_sym_LT_LPAREN] = ACTIONS(114), - [anon_sym_GT_LPAREN] = ACTIONS(114), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1421), - }, - [287] = { - [aux_sym_concatenation_repeat1] = STATE(768), - [sym_file_descriptor] = ACTIONS(760), - [sym__concat] = ACTIONS(510), - [anon_sym_PIPE] = ACTIONS(762), - [anon_sym_RPAREN] = ACTIONS(762), - [anon_sym_SEMI_SEMI] = ACTIONS(762), - [anon_sym_PIPE_AMP] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(762), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_LT] = ACTIONS(762), - [anon_sym_GT] = ACTIONS(762), - [anon_sym_GT_GT] = ACTIONS(762), - [anon_sym_AMP_GT] = ACTIONS(762), - [anon_sym_AMP_GT_GT] = ACTIONS(762), - [anon_sym_LT_AMP] = ACTIONS(762), - [anon_sym_GT_AMP] = ACTIONS(762), - [anon_sym_LT_LT] = ACTIONS(762), - [anon_sym_LT_LT_DASH] = ACTIONS(762), - [anon_sym_LT_LT_LT] = ACTIONS(762), - [sym__special_characters] = ACTIONS(762), - [anon_sym_DQUOTE] = ACTIONS(762), - [anon_sym_DOLLAR] = ACTIONS(762), - [sym_raw_string] = ACTIONS(762), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(762), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(762), - [anon_sym_BQUOTE] = ACTIONS(762), - [anon_sym_LT_LPAREN] = ACTIONS(762), - [anon_sym_GT_LPAREN] = ACTIONS(762), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(762), - [anon_sym_SEMI] = ACTIONS(762), - [anon_sym_LF] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(762), - }, - [288] = { - [sym_file_descriptor] = ACTIONS(764), - [sym__concat] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(766), - [anon_sym_SEMI_SEMI] = ACTIONS(766), - [anon_sym_PIPE_AMP] = ACTIONS(766), - [anon_sym_AMP_AMP] = ACTIONS(766), - [anon_sym_PIPE_PIPE] = ACTIONS(766), - [anon_sym_LT] = ACTIONS(766), - [anon_sym_GT] = ACTIONS(766), - [anon_sym_GT_GT] = ACTIONS(766), - [anon_sym_AMP_GT] = ACTIONS(766), - [anon_sym_AMP_GT_GT] = ACTIONS(766), - [anon_sym_LT_AMP] = ACTIONS(766), - [anon_sym_GT_AMP] = ACTIONS(766), - [anon_sym_LT_LT] = ACTIONS(766), - [anon_sym_LT_LT_DASH] = ACTIONS(766), - [anon_sym_LT_LT_LT] = ACTIONS(766), - [sym__special_characters] = ACTIONS(766), - [anon_sym_DQUOTE] = ACTIONS(766), - [anon_sym_DOLLAR] = ACTIONS(766), - [sym_raw_string] = ACTIONS(766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(766), - [anon_sym_BQUOTE] = ACTIONS(766), - [anon_sym_LT_LPAREN] = ACTIONS(766), - [anon_sym_GT_LPAREN] = ACTIONS(766), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(766), - [anon_sym_SEMI] = ACTIONS(766), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(766), - }, - [289] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(1425), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [290] = { - [sym_file_descriptor] = ACTIONS(796), - [sym__concat] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(798), - [anon_sym_RPAREN] = ACTIONS(798), - [anon_sym_SEMI_SEMI] = ACTIONS(798), - [anon_sym_PIPE_AMP] = ACTIONS(798), - [anon_sym_AMP_AMP] = ACTIONS(798), - [anon_sym_PIPE_PIPE] = ACTIONS(798), - [anon_sym_LT] = ACTIONS(798), - [anon_sym_GT] = ACTIONS(798), - [anon_sym_GT_GT] = ACTIONS(798), - [anon_sym_AMP_GT] = ACTIONS(798), - [anon_sym_AMP_GT_GT] = ACTIONS(798), - [anon_sym_LT_AMP] = ACTIONS(798), - [anon_sym_GT_AMP] = ACTIONS(798), - [anon_sym_LT_LT] = ACTIONS(798), - [anon_sym_LT_LT_DASH] = ACTIONS(798), - [anon_sym_LT_LT_LT] = ACTIONS(798), - [sym__special_characters] = ACTIONS(798), - [anon_sym_DQUOTE] = ACTIONS(798), - [anon_sym_DOLLAR] = ACTIONS(798), - [sym_raw_string] = ACTIONS(798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(798), - [anon_sym_BQUOTE] = ACTIONS(798), - [anon_sym_LT_LPAREN] = ACTIONS(798), - [anon_sym_GT_LPAREN] = ACTIONS(798), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(798), - [anon_sym_SEMI] = ACTIONS(798), - [anon_sym_LF] = ACTIONS(798), - [anon_sym_AMP] = ACTIONS(798), - }, - [291] = { - [sym_file_descriptor] = ACTIONS(800), - [sym__concat] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(802), - [anon_sym_RPAREN] = ACTIONS(802), - [anon_sym_SEMI_SEMI] = ACTIONS(802), - [anon_sym_PIPE_AMP] = ACTIONS(802), - [anon_sym_AMP_AMP] = ACTIONS(802), - [anon_sym_PIPE_PIPE] = ACTIONS(802), - [anon_sym_LT] = ACTIONS(802), - [anon_sym_GT] = ACTIONS(802), - [anon_sym_GT_GT] = ACTIONS(802), - [anon_sym_AMP_GT] = ACTIONS(802), - [anon_sym_AMP_GT_GT] = ACTIONS(802), - [anon_sym_LT_AMP] = ACTIONS(802), - [anon_sym_GT_AMP] = ACTIONS(802), - [anon_sym_LT_LT] = ACTIONS(802), - [anon_sym_LT_LT_DASH] = ACTIONS(802), - [anon_sym_LT_LT_LT] = ACTIONS(802), - [sym__special_characters] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(802), - [sym_raw_string] = ACTIONS(802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(802), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(802), - [anon_sym_BQUOTE] = ACTIONS(802), - [anon_sym_LT_LPAREN] = ACTIONS(802), - [anon_sym_GT_LPAREN] = ACTIONS(802), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(802), - [anon_sym_LF] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(802), - }, - [292] = { - [sym_file_descriptor] = ACTIONS(804), - [sym__concat] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(806), - [anon_sym_RPAREN] = ACTIONS(806), - [anon_sym_SEMI_SEMI] = ACTIONS(806), - [anon_sym_PIPE_AMP] = ACTIONS(806), - [anon_sym_AMP_AMP] = ACTIONS(806), - [anon_sym_PIPE_PIPE] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(806), - [anon_sym_GT] = ACTIONS(806), - [anon_sym_GT_GT] = ACTIONS(806), - [anon_sym_AMP_GT] = ACTIONS(806), - [anon_sym_AMP_GT_GT] = ACTIONS(806), - [anon_sym_LT_AMP] = ACTIONS(806), - [anon_sym_GT_AMP] = ACTIONS(806), - [anon_sym_LT_LT] = ACTIONS(806), - [anon_sym_LT_LT_DASH] = ACTIONS(806), - [anon_sym_LT_LT_LT] = ACTIONS(806), - [sym__special_characters] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(806), - [anon_sym_DOLLAR] = ACTIONS(806), - [sym_raw_string] = ACTIONS(806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(806), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(806), - [anon_sym_BQUOTE] = ACTIONS(806), - [anon_sym_LT_LPAREN] = ACTIONS(806), - [anon_sym_GT_LPAREN] = ACTIONS(806), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(806), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(806), - }, - [293] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1427), - [sym_comment] = ACTIONS(56), - }, - [294] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(772), - [anon_sym_RBRACE] = ACTIONS(1429), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [295] = { - [sym_subscript] = STATE(776), - [sym_variable_name] = ACTIONS(1431), + [sym_string] = STATE(776), + [anon_sym_DQUOTE] = ACTIONS(1431), [anon_sym_DOLLAR] = ACTIONS(1433), + [anon_sym_POUND] = ACTIONS(1433), [anon_sym_DASH] = ACTIONS(1433), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1435), [anon_sym_STAR] = ACTIONS(1433), [anon_sym_AT] = ACTIONS(1433), @@ -17596,582 +18580,1115 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(1437), [anon_sym__] = ACTIONS(1437), }, + [287] = { + [aux_sym_concatenation_repeat1] = STATE(771), + [sym__concat] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(724), + [anon_sym_RPAREN] = ACTIONS(724), + [anon_sym_SEMI_SEMI] = ACTIONS(724), + [anon_sym_PIPE_AMP] = ACTIONS(724), + [anon_sym_AMP_AMP] = ACTIONS(724), + [anon_sym_PIPE_PIPE] = ACTIONS(724), + [sym__special_characters] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(724), + [sym_raw_string] = ACTIONS(724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(724), + [anon_sym_BQUOTE] = ACTIONS(724), + [anon_sym_LT_LPAREN] = ACTIONS(724), + [anon_sym_GT_LPAREN] = ACTIONS(724), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(724), + [sym_word] = ACTIONS(724), + [anon_sym_SEMI] = ACTIONS(724), + [anon_sym_LF] = ACTIONS(724), + [anon_sym_AMP] = ACTIONS(724), + }, + [288] = { + [sym_subscript] = STATE(781), + [sym_variable_name] = ACTIONS(1439), + [anon_sym_DOLLAR] = ACTIONS(1441), + [anon_sym_POUND] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1441), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_AT] = ACTIONS(1441), + [anon_sym_QMARK] = ACTIONS(1441), + [anon_sym_0] = ACTIONS(1447), + [anon_sym__] = ACTIONS(1447), + }, + [289] = { + [sym_for_statement] = STATE(782), + [sym_while_statement] = STATE(782), + [sym_if_statement] = STATE(782), + [sym_case_statement] = STATE(782), + [sym_function_definition] = STATE(782), + [sym_subshell] = STATE(782), + [sym_pipeline] = STATE(782), + [sym_list] = STATE(782), + [sym_command] = STATE(782), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(782), + [sym_variable_assignment] = STATE(783), + [sym_declaration_command] = STATE(782), + [sym_unset_command] = STATE(782), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [290] = { + [sym_for_statement] = STATE(784), + [sym_while_statement] = STATE(784), + [sym_if_statement] = STATE(784), + [sym_case_statement] = STATE(784), + [sym_function_definition] = STATE(784), + [sym_subshell] = STATE(784), + [sym_pipeline] = STATE(784), + [sym_list] = STATE(784), + [sym_command] = STATE(784), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(784), + [sym_variable_assignment] = STATE(785), + [sym_declaration_command] = STATE(784), + [sym_unset_command] = STATE(784), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), + }, + [291] = { + [sym_for_statement] = STATE(786), + [sym_while_statement] = STATE(786), + [sym_if_statement] = STATE(786), + [sym_case_statement] = STATE(786), + [sym_function_definition] = STATE(786), + [sym_subshell] = STATE(786), + [sym_pipeline] = STATE(786), + [sym_list] = STATE(786), + [sym_command] = STATE(786), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(786), + [sym_variable_assignment] = STATE(787), + [sym_declaration_command] = STATE(786), + [sym_unset_command] = STATE(786), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [292] = { + [sym_concatenation] = STATE(119), + [sym_string] = STATE(287), + [sym_simple_expansion] = STATE(287), + [sym_string_expansion] = STATE(287), + [sym_expansion] = STATE(287), + [sym_command_substitution] = STATE(287), + [sym_process_substitution] = STATE(287), + [aux_sym_unset_command_repeat1] = STATE(788), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_RPAREN] = ACTIONS(738), + [anon_sym_SEMI_SEMI] = ACTIONS(738), + [anon_sym_PIPE_AMP] = ACTIONS(738), + [anon_sym_AMP_AMP] = ACTIONS(738), + [anon_sym_PIPE_PIPE] = ACTIONS(738), + [sym__special_characters] = ACTIONS(504), + [anon_sym_DQUOTE] = ACTIONS(506), + [anon_sym_DOLLAR] = ACTIONS(508), + [sym_raw_string] = ACTIONS(510), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(512), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(514), + [anon_sym_BQUOTE] = ACTIONS(516), + [anon_sym_LT_LPAREN] = ACTIONS(518), + [anon_sym_GT_LPAREN] = ACTIONS(518), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(204), + [sym_word] = ACTIONS(510), + [anon_sym_SEMI] = ACTIONS(738), + [anon_sym_LF] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(738), + }, + [293] = { + [sym_string] = STATE(789), + [sym_simple_expansion] = STATE(789), + [sym_string_expansion] = STATE(789), + [sym_expansion] = STATE(789), + [sym_command_substitution] = STATE(789), + [sym_process_substitution] = STATE(789), + [sym__special_characters] = ACTIONS(1449), + [anon_sym_DQUOTE] = ACTIONS(106), + [anon_sym_DOLLAR] = ACTIONS(108), + [sym_raw_string] = ACTIONS(1451), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(112), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(114), + [anon_sym_BQUOTE] = ACTIONS(116), + [anon_sym_LT_LPAREN] = ACTIONS(118), + [anon_sym_GT_LPAREN] = ACTIONS(118), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1449), + }, + [294] = { + [aux_sym_concatenation_repeat1] = STATE(790), + [sym_file_descriptor] = ACTIONS(772), + [sym__concat] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(774), + [anon_sym_RPAREN] = ACTIONS(774), + [anon_sym_SEMI_SEMI] = ACTIONS(774), + [anon_sym_PIPE_AMP] = ACTIONS(774), + [anon_sym_AMP_AMP] = ACTIONS(774), + [anon_sym_PIPE_PIPE] = ACTIONS(774), + [anon_sym_EQ_TILDE] = ACTIONS(774), + [anon_sym_LT] = ACTIONS(774), + [anon_sym_GT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(774), + [anon_sym_AMP_GT] = ACTIONS(774), + [anon_sym_AMP_GT_GT] = ACTIONS(774), + [anon_sym_LT_AMP] = ACTIONS(774), + [anon_sym_GT_AMP] = ACTIONS(774), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_LT_LT_DASH] = ACTIONS(774), + [anon_sym_LT_LT_LT] = ACTIONS(774), + [sym__special_characters] = ACTIONS(774), + [anon_sym_DQUOTE] = ACTIONS(774), + [anon_sym_DOLLAR] = ACTIONS(774), + [sym_raw_string] = ACTIONS(774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(774), + [anon_sym_BQUOTE] = ACTIONS(774), + [anon_sym_LT_LPAREN] = ACTIONS(774), + [anon_sym_GT_LPAREN] = ACTIONS(774), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(774), + [anon_sym_SEMI] = ACTIONS(774), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_AMP] = ACTIONS(774), + }, + [295] = { + [sym_file_descriptor] = ACTIONS(776), + [sym__concat] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(778), + [anon_sym_RPAREN] = ACTIONS(778), + [anon_sym_SEMI_SEMI] = ACTIONS(778), + [anon_sym_PIPE_AMP] = ACTIONS(778), + [anon_sym_AMP_AMP] = ACTIONS(778), + [anon_sym_PIPE_PIPE] = ACTIONS(778), + [anon_sym_EQ_TILDE] = ACTIONS(778), + [anon_sym_LT] = ACTIONS(778), + [anon_sym_GT] = ACTIONS(778), + [anon_sym_GT_GT] = ACTIONS(778), + [anon_sym_AMP_GT] = ACTIONS(778), + [anon_sym_AMP_GT_GT] = ACTIONS(778), + [anon_sym_LT_AMP] = ACTIONS(778), + [anon_sym_GT_AMP] = ACTIONS(778), + [anon_sym_LT_LT] = ACTIONS(778), + [anon_sym_LT_LT_DASH] = ACTIONS(778), + [anon_sym_LT_LT_LT] = ACTIONS(778), + [sym__special_characters] = ACTIONS(778), + [anon_sym_DQUOTE] = ACTIONS(778), + [anon_sym_DOLLAR] = ACTIONS(778), + [sym_raw_string] = ACTIONS(778), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(778), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(778), + [anon_sym_BQUOTE] = ACTIONS(778), + [anon_sym_LT_LPAREN] = ACTIONS(778), + [anon_sym_GT_LPAREN] = ACTIONS(778), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(778), + [anon_sym_SEMI] = ACTIONS(778), + [anon_sym_LF] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(778), + }, [296] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(778), - [anon_sym_RBRACE] = ACTIONS(1439), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(1453), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, [297] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(780), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_file_descriptor] = ACTIONS(808), + [sym__concat] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(810), + [anon_sym_SEMI_SEMI] = ACTIONS(810), + [anon_sym_PIPE_AMP] = ACTIONS(810), + [anon_sym_AMP_AMP] = ACTIONS(810), + [anon_sym_PIPE_PIPE] = ACTIONS(810), + [anon_sym_EQ_TILDE] = ACTIONS(810), + [anon_sym_LT] = ACTIONS(810), + [anon_sym_GT] = ACTIONS(810), + [anon_sym_GT_GT] = ACTIONS(810), + [anon_sym_AMP_GT] = ACTIONS(810), + [anon_sym_AMP_GT_GT] = ACTIONS(810), + [anon_sym_LT_AMP] = ACTIONS(810), + [anon_sym_GT_AMP] = ACTIONS(810), + [anon_sym_LT_LT] = ACTIONS(810), + [anon_sym_LT_LT_DASH] = ACTIONS(810), + [anon_sym_LT_LT_LT] = ACTIONS(810), + [sym__special_characters] = ACTIONS(810), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_DOLLAR] = ACTIONS(810), + [sym_raw_string] = ACTIONS(810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(810), + [anon_sym_BQUOTE] = ACTIONS(810), + [anon_sym_LT_LPAREN] = ACTIONS(810), + [anon_sym_GT_LPAREN] = ACTIONS(810), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(810), + [anon_sym_LF] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(810), }, [298] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1443), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(812), + [sym__concat] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(814), + [anon_sym_RPAREN] = ACTIONS(814), + [anon_sym_SEMI_SEMI] = ACTIONS(814), + [anon_sym_PIPE_AMP] = ACTIONS(814), + [anon_sym_AMP_AMP] = ACTIONS(814), + [anon_sym_PIPE_PIPE] = ACTIONS(814), + [anon_sym_EQ_TILDE] = ACTIONS(814), + [anon_sym_LT] = ACTIONS(814), + [anon_sym_GT] = ACTIONS(814), + [anon_sym_GT_GT] = ACTIONS(814), + [anon_sym_AMP_GT] = ACTIONS(814), + [anon_sym_AMP_GT_GT] = ACTIONS(814), + [anon_sym_LT_AMP] = ACTIONS(814), + [anon_sym_GT_AMP] = ACTIONS(814), + [anon_sym_LT_LT] = ACTIONS(814), + [anon_sym_LT_LT_DASH] = ACTIONS(814), + [anon_sym_LT_LT_LT] = ACTIONS(814), + [sym__special_characters] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_DOLLAR] = ACTIONS(814), + [sym_raw_string] = ACTIONS(814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(814), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(814), + [anon_sym_BQUOTE] = ACTIONS(814), + [anon_sym_LT_LPAREN] = ACTIONS(814), + [anon_sym_GT_LPAREN] = ACTIONS(814), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(814), + [anon_sym_SEMI] = ACTIONS(814), + [anon_sym_LF] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(814), }, [299] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1443), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_file_descriptor] = ACTIONS(816), + [sym__concat] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(818), + [anon_sym_SEMI_SEMI] = ACTIONS(818), + [anon_sym_PIPE_AMP] = ACTIONS(818), + [anon_sym_AMP_AMP] = ACTIONS(818), + [anon_sym_PIPE_PIPE] = ACTIONS(818), + [anon_sym_EQ_TILDE] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(818), + [anon_sym_GT] = ACTIONS(818), + [anon_sym_GT_GT] = ACTIONS(818), + [anon_sym_AMP_GT] = ACTIONS(818), + [anon_sym_AMP_GT_GT] = ACTIONS(818), + [anon_sym_LT_AMP] = ACTIONS(818), + [anon_sym_GT_AMP] = ACTIONS(818), + [anon_sym_LT_LT] = ACTIONS(818), + [anon_sym_LT_LT_DASH] = ACTIONS(818), + [anon_sym_LT_LT_LT] = ACTIONS(818), + [sym__special_characters] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(818), + [anon_sym_DOLLAR] = ACTIONS(818), + [sym_raw_string] = ACTIONS(818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(818), + [anon_sym_BQUOTE] = ACTIONS(818), + [anon_sym_LT_LPAREN] = ACTIONS(818), + [anon_sym_GT_LPAREN] = ACTIONS(818), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_LF] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(818), }, [300] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(1455), [sym_comment] = ACTIONS(56), }, [301] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(1443), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(795), + [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1459), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [302] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1445), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), + [sym_subscript] = STATE(799), + [sym_variable_name] = ACTIONS(1461), + [anon_sym_DOLLAR] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1463), [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_AT] = ACTIONS(1463), + [anon_sym_QMARK] = ACTIONS(1463), + [anon_sym_0] = ACTIONS(1467), + [anon_sym__] = ACTIONS(1467), }, [303] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1445), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(802), + [anon_sym_RBRACE] = ACTIONS(1469), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1471), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [304] = { - [anon_sym_RPAREN] = ACTIONS(1447), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(805), + [anon_sym_RBRACE] = ACTIONS(1473), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1475), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [305] = { - [sym_for_statement] = STATE(586), - [sym_while_statement] = STATE(586), - [sym_if_statement] = STATE(586), - [sym_case_statement] = STATE(586), - [sym_function_definition] = STATE(586), - [sym_subshell] = STATE(586), - [sym_pipeline] = STATE(586), - [sym_list] = STATE(586), - [sym_bracket_command] = STATE(586), - [sym_command] = STATE(586), - [sym_command_name] = STATE(68), - [sym_variable_assignment] = STATE(587), - [sym_declaration_command] = STATE(586), - [sym_unset_command] = STATE(586), - [sym_subscript] = STATE(70), - [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(72), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(90), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(92), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(94), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(96), - [anon_sym_typeset] = ACTIONS(96), - [anon_sym_export] = ACTIONS(96), - [anon_sym_readonly] = ACTIONS(96), - [anon_sym_local] = ACTIONS(96), - [anon_sym_unset] = ACTIONS(98), - [anon_sym_unsetenv] = ACTIONS(98), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(100), - [anon_sym_DQUOTE] = ACTIONS(102), - [anon_sym_DOLLAR] = ACTIONS(104), - [sym_raw_string] = ACTIONS(106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(108), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(110), - [anon_sym_BQUOTE] = ACTIONS(112), - [anon_sym_LT_LPAREN] = ACTIONS(114), - [anon_sym_GT_LPAREN] = ACTIONS(114), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1477), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(116), }, [306] = { - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_RPAREN] = ACTIONS(1449), - [anon_sym_SEMI_SEMI] = ACTIONS(1449), - [anon_sym_PIPE_AMP] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1449), - [anon_sym_PIPE_PIPE] = ACTIONS(1449), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1449), - [anon_sym_LF] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1449), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1477), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), }, [307] = { - [sym_file_descriptor] = ACTIONS(1058), - [sym_variable_name] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(1451), - [anon_sym_function] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym_declare] = ACTIONS(1060), - [anon_sym_typeset] = ACTIONS(1060), - [anon_sym_export] = ACTIONS(1060), - [anon_sym_readonly] = ACTIONS(1060), - [anon_sym_local] = ACTIONS(1060), - [anon_sym_unset] = ACTIONS(1060), - [anon_sym_unsetenv] = ACTIONS(1060), - [anon_sym_LT] = ACTIONS(1060), - [anon_sym_GT] = ACTIONS(1060), - [anon_sym_GT_GT] = ACTIONS(1058), - [anon_sym_AMP_GT] = ACTIONS(1060), - [anon_sym_AMP_GT_GT] = ACTIONS(1058), - [anon_sym_LT_AMP] = ACTIONS(1058), - [anon_sym_GT_AMP] = ACTIONS(1058), - [sym__special_characters] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1058), - [anon_sym_DOLLAR] = ACTIONS(1060), - [sym_raw_string] = ACTIONS(1058), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1058), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1058), - [anon_sym_BQUOTE] = ACTIONS(1058), - [anon_sym_LT_LPAREN] = ACTIONS(1058), - [anon_sym_GT_LPAREN] = ACTIONS(1058), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(1477), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1062), }, [308] = { - [sym_for_statement] = STATE(785), - [sym_while_statement] = STATE(785), - [sym_if_statement] = STATE(785), - [sym_case_statement] = STATE(785), - [sym_function_definition] = STATE(785), - [sym_subshell] = STATE(785), - [sym_pipeline] = STATE(785), - [sym_list] = STATE(785), - [sym_bracket_command] = STATE(785), - [sym_command] = STATE(785), - [sym_command_name] = STATE(68), - [sym_variable_assignment] = STATE(786), - [sym_declaration_command] = STATE(785), - [sym_unset_command] = STATE(785), - [sym_subscript] = STATE(70), - [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(72), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(90), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(92), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(94), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(96), - [anon_sym_typeset] = ACTIONS(96), - [anon_sym_export] = ACTIONS(96), - [anon_sym_readonly] = ACTIONS(96), - [anon_sym_local] = ACTIONS(96), - [anon_sym_unset] = ACTIONS(98), - [anon_sym_unsetenv] = ACTIONS(98), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(100), - [anon_sym_DQUOTE] = ACTIONS(102), - [anon_sym_DOLLAR] = ACTIONS(104), - [sym_raw_string] = ACTIONS(106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(108), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(110), - [anon_sym_BQUOTE] = ACTIONS(112), - [anon_sym_LT_LPAREN] = ACTIONS(114), - [anon_sym_GT_LPAREN] = ACTIONS(114), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(1477), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(116), + [sym_word] = ACTIONS(382), }, [309] = { - [anon_sym_LT] = ACTIONS(1453), - [anon_sym_GT] = ACTIONS(1453), - [anon_sym_GT_GT] = ACTIONS(1455), - [anon_sym_AMP_GT] = ACTIONS(1453), - [anon_sym_AMP_GT_GT] = ACTIONS(1455), - [anon_sym_LT_AMP] = ACTIONS(1455), - [anon_sym_GT_AMP] = ACTIONS(1455), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1479), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), [sym_comment] = ACTIONS(56), }, [310] = { - [sym_concatenation] = STATE(599), - [sym_string] = STATE(791), - [sym_simple_expansion] = STATE(791), - [sym_string_expansion] = STATE(791), - [sym_expansion] = STATE(791), - [sym_command_substitution] = STATE(791), - [sym_process_substitution] = STATE(791), - [sym__special_characters] = ACTIONS(1457), - [anon_sym_DQUOTE] = ACTIONS(1459), - [anon_sym_DOLLAR] = ACTIONS(1461), - [sym_raw_string] = ACTIONS(1463), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1465), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1467), - [anon_sym_BQUOTE] = ACTIONS(1469), - [anon_sym_LT_LPAREN] = ACTIONS(1471), - [anon_sym_GT_LPAREN] = ACTIONS(1471), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1479), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1473), + [sym_word] = ACTIONS(382), }, [311] = { - [sym_concatenation] = STATE(605), - [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(1475), - [anon_sym_DQUOTE] = ACTIONS(1459), - [anon_sym_DOLLAR] = ACTIONS(1461), - [sym_raw_string] = ACTIONS(1477), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1465), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1467), - [anon_sym_BQUOTE] = ACTIONS(1469), - [anon_sym_LT_LPAREN] = ACTIONS(1471), - [anon_sym_GT_LPAREN] = ACTIONS(1471), + [anon_sym_RPAREN] = ACTIONS(1481), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1479), }, [312] = { - [aux_sym_concatenation_repeat1] = STATE(287), - [sym_file_descriptor] = ACTIONS(1096), - [sym__concat] = ACTIONS(510), - [anon_sym_PIPE] = ACTIONS(1098), - [anon_sym_RPAREN] = ACTIONS(1098), - [anon_sym_SEMI_SEMI] = ACTIONS(1098), - [anon_sym_PIPE_AMP] = ACTIONS(1098), - [anon_sym_AMP_AMP] = ACTIONS(1098), - [anon_sym_PIPE_PIPE] = ACTIONS(1098), - [anon_sym_LT] = ACTIONS(1098), - [anon_sym_GT] = ACTIONS(1098), - [anon_sym_GT_GT] = ACTIONS(1098), - [anon_sym_AMP_GT] = ACTIONS(1098), - [anon_sym_AMP_GT_GT] = ACTIONS(1098), - [anon_sym_LT_AMP] = ACTIONS(1098), - [anon_sym_GT_AMP] = ACTIONS(1098), - [anon_sym_LT_LT] = ACTIONS(1098), - [anon_sym_LT_LT_DASH] = ACTIONS(1098), - [anon_sym_LT_LT_LT] = ACTIONS(1098), - [sym__special_characters] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1098), - [sym_raw_string] = ACTIONS(1098), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1098), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1098), - [anon_sym_BQUOTE] = ACTIONS(1098), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_LF] = ACTIONS(1098), - [anon_sym_AMP] = ACTIONS(1098), + [sym_for_statement] = STATE(601), + [sym_while_statement] = STATE(601), + [sym_if_statement] = STATE(601), + [sym_case_statement] = STATE(601), + [sym_function_definition] = STATE(601), + [sym_subshell] = STATE(601), + [sym_pipeline] = STATE(601), + [sym_list] = STATE(601), + [sym_command] = STATE(601), + [sym_command_name] = STATE(70), + [sym_bracket_command] = STATE(601), + [sym_variable_assignment] = STATE(602), + [sym_declaration_command] = STATE(601), + [sym_unset_command] = STATE(601), + [sym_subscript] = STATE(72), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(63), + [sym_simple_expansion] = STATE(63), + [sym_string_expansion] = STATE(63), + [sym_expansion] = STATE(63), + [sym_command_substitution] = STATE(63), + [sym_process_substitution] = STATE(63), + [aux_sym_command_repeat1] = STATE(74), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(90), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(92), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(94), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(96), + [anon_sym_LBRACK_LBRACK] = ACTIONS(98), + [anon_sym_declare] = ACTIONS(100), + [anon_sym_typeset] = ACTIONS(100), + [anon_sym_export] = ACTIONS(100), + [anon_sym_readonly] = ACTIONS(100), + [anon_sym_local] = ACTIONS(100), + [anon_sym_unset] = ACTIONS(102), + [anon_sym_unsetenv] = ACTIONS(102), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(104), + [anon_sym_DQUOTE] = ACTIONS(106), + [anon_sym_DOLLAR] = ACTIONS(108), + [sym_raw_string] = ACTIONS(110), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(112), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(114), + [anon_sym_BQUOTE] = ACTIONS(116), + [anon_sym_LT_LPAREN] = ACTIONS(118), + [anon_sym_GT_LPAREN] = ACTIONS(118), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(120), }, [313] = { - [aux_sym_concatenation_repeat1] = STATE(287), - [sym_file_descriptor] = ACTIONS(1100), - [sym__concat] = ACTIONS(510), - [anon_sym_PIPE] = ACTIONS(1102), - [anon_sym_RPAREN] = ACTIONS(1102), - [anon_sym_SEMI_SEMI] = ACTIONS(1102), - [anon_sym_PIPE_AMP] = ACTIONS(1102), - [anon_sym_AMP_AMP] = ACTIONS(1102), - [anon_sym_PIPE_PIPE] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1102), - [anon_sym_AMP_GT] = ACTIONS(1102), - [anon_sym_AMP_GT_GT] = ACTIONS(1102), - [anon_sym_LT_AMP] = ACTIONS(1102), - [anon_sym_GT_AMP] = ACTIONS(1102), - [anon_sym_LT_LT] = ACTIONS(1102), - [anon_sym_LT_LT_DASH] = ACTIONS(1102), - [anon_sym_LT_LT_LT] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [sym_raw_string] = ACTIONS(1102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), - [anon_sym_BQUOTE] = ACTIONS(1102), - [anon_sym_LT_LPAREN] = ACTIONS(1102), - [anon_sym_GT_LPAREN] = ACTIONS(1102), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1102), + [anon_sym_PIPE] = ACTIONS(1483), + [anon_sym_RPAREN] = ACTIONS(1483), + [anon_sym_SEMI_SEMI] = ACTIONS(1483), + [anon_sym_PIPE_AMP] = ACTIONS(1483), + [anon_sym_AMP_AMP] = ACTIONS(1483), + [anon_sym_PIPE_PIPE] = ACTIONS(1483), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_LF] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1483), }, [314] = { - [sym_file_redirect] = STATE(202), - [sym_heredoc_redirect] = STATE(202), - [sym_herestring_redirect] = STATE(202), - [sym_concatenation] = STATE(203), - [sym_string] = STATE(313), - [sym_simple_expansion] = STATE(313), - [sym_string_expansion] = STATE(313), - [sym_expansion] = STATE(313), - [sym_command_substitution] = STATE(313), - [sym_process_substitution] = STATE(313), - [aux_sym_for_statement_repeat1] = STATE(798), - [aux_sym_while_statement_repeat1] = STATE(799), - [sym_file_descriptor] = ACTIONS(540), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_RPAREN] = ACTIONS(1108), - [anon_sym_SEMI_SEMI] = ACTIONS(1108), - [anon_sym_PIPE_AMP] = ACTIONS(1108), - [anon_sym_AMP_AMP] = ACTIONS(1108), - [anon_sym_PIPE_PIPE] = ACTIONS(1108), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_GT_GT] = ACTIONS(542), - [anon_sym_AMP_GT] = ACTIONS(542), - [anon_sym_AMP_GT_GT] = ACTIONS(542), - [anon_sym_LT_AMP] = ACTIONS(542), - [anon_sym_GT_AMP] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(348), - [anon_sym_LT_LT_DASH] = ACTIONS(348), - [anon_sym_LT_LT_LT] = ACTIONS(544), - [sym__special_characters] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_DOLLAR] = ACTIONS(550), - [sym_raw_string] = ACTIONS(552), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(554), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(556), - [anon_sym_BQUOTE] = ACTIONS(558), - [anon_sym_LT_LPAREN] = ACTIONS(560), - [anon_sym_GT_LPAREN] = ACTIONS(560), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_LF] = ACTIONS(1108), - [anon_sym_AMP] = ACTIONS(1108), + [sym_file_descriptor] = ACTIONS(1080), + [sym_variable_name] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(1485), + [anon_sym_function] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1080), + [anon_sym_declare] = ACTIONS(1082), + [anon_sym_typeset] = ACTIONS(1082), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_readonly] = ACTIONS(1082), + [anon_sym_local] = ACTIONS(1082), + [anon_sym_unset] = ACTIONS(1082), + [anon_sym_unsetenv] = ACTIONS(1082), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1080), + [anon_sym_LT_AMP] = ACTIONS(1080), + [anon_sym_GT_AMP] = ACTIONS(1080), + [sym__special_characters] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(1080), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1080), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1080), + [anon_sym_BQUOTE] = ACTIONS(1080), + [anon_sym_LT_LPAREN] = ACTIONS(1080), + [anon_sym_GT_LPAREN] = ACTIONS(1080), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1084), }, [315] = { - [sym_file_redirect] = STATE(202), - [sym_heredoc_redirect] = STATE(202), - [sym_herestring_redirect] = STATE(202), - [aux_sym_while_statement_repeat1] = STATE(800), - [sym_file_descriptor] = ACTIONS(540), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_RPAREN] = ACTIONS(1108), - [anon_sym_SEMI_SEMI] = ACTIONS(1108), - [anon_sym_PIPE_AMP] = ACTIONS(1108), - [anon_sym_AMP_AMP] = ACTIONS(1108), - [anon_sym_PIPE_PIPE] = ACTIONS(1108), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_GT_GT] = ACTIONS(542), - [anon_sym_AMP_GT] = ACTIONS(542), - [anon_sym_AMP_GT_GT] = ACTIONS(542), - [anon_sym_LT_AMP] = ACTIONS(542), - [anon_sym_GT_AMP] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(348), - [anon_sym_LT_LT_DASH] = ACTIONS(348), - [anon_sym_LT_LT_LT] = ACTIONS(544), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_LF] = ACTIONS(1108), - [anon_sym_AMP] = ACTIONS(1108), + [sym_for_statement] = STATE(810), + [sym_while_statement] = STATE(810), + [sym_if_statement] = STATE(810), + [sym_case_statement] = STATE(810), + [sym_function_definition] = STATE(810), + [sym_subshell] = STATE(810), + [sym_pipeline] = STATE(810), + [sym_list] = STATE(810), + [sym_command] = STATE(810), + [sym_command_name] = STATE(70), + [sym_bracket_command] = STATE(810), + [sym_variable_assignment] = STATE(811), + [sym_declaration_command] = STATE(810), + [sym_unset_command] = STATE(810), + [sym_subscript] = STATE(72), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(63), + [sym_simple_expansion] = STATE(63), + [sym_string_expansion] = STATE(63), + [sym_expansion] = STATE(63), + [sym_command_substitution] = STATE(63), + [sym_process_substitution] = STATE(63), + [aux_sym_command_repeat1] = STATE(74), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(90), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(92), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(94), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(96), + [anon_sym_LBRACK_LBRACK] = ACTIONS(98), + [anon_sym_declare] = ACTIONS(100), + [anon_sym_typeset] = ACTIONS(100), + [anon_sym_export] = ACTIONS(100), + [anon_sym_readonly] = ACTIONS(100), + [anon_sym_local] = ACTIONS(100), + [anon_sym_unset] = ACTIONS(102), + [anon_sym_unsetenv] = ACTIONS(102), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(104), + [anon_sym_DQUOTE] = ACTIONS(106), + [anon_sym_DOLLAR] = ACTIONS(108), + [sym_raw_string] = ACTIONS(110), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(112), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(114), + [anon_sym_BQUOTE] = ACTIONS(116), + [anon_sym_LT_LPAREN] = ACTIONS(118), + [anon_sym_GT_LPAREN] = ACTIONS(118), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(120), }, [316] = { - [anon_sym_PIPE] = ACTIONS(532), - [anon_sym_RPAREN] = ACTIONS(1481), - [anon_sym_SEMI_SEMI] = ACTIONS(1483), - [anon_sym_PIPE_AMP] = ACTIONS(532), - [anon_sym_AMP_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(538), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_LF] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(1487), + [anon_sym_GT] = ACTIONS(1487), + [anon_sym_GT_GT] = ACTIONS(1489), + [anon_sym_AMP_GT] = ACTIONS(1487), + [anon_sym_AMP_GT_GT] = ACTIONS(1489), + [anon_sym_LT_AMP] = ACTIONS(1489), + [anon_sym_GT_AMP] = ACTIONS(1489), + [sym_comment] = ACTIONS(56), }, [317] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(532), - [anon_sym_RPAREN] = ACTIONS(1481), - [anon_sym_SEMI_SEMI] = ACTIONS(1483), - [anon_sym_PIPE_AMP] = ACTIONS(532), - [anon_sym_AMP_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_AMP_GT] = ACTIONS(370), - [anon_sym_AMP_GT_GT] = ACTIONS(370), - [anon_sym_LT_AMP] = ACTIONS(370), - [anon_sym_GT_AMP] = ACTIONS(370), - [sym__special_characters] = ACTIONS(370), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_DOLLAR] = ACTIONS(370), - [sym_raw_string] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(370), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(370), - [anon_sym_BQUOTE] = ACTIONS(370), - [anon_sym_LT_LPAREN] = ACTIONS(370), - [anon_sym_GT_LPAREN] = ACTIONS(370), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(370), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_LF] = ACTIONS(1483), - [anon_sym_AMP] = ACTIONS(1483), + [sym_concatenation] = STATE(608), + [sym_string] = STATE(814), + [sym_simple_expansion] = STATE(814), + [sym_string_expansion] = STATE(814), + [sym_expansion] = STATE(814), + [sym_command_substitution] = STATE(814), + [sym_process_substitution] = STATE(814), + [sym__special_characters] = ACTIONS(1491), + [anon_sym_DQUOTE] = ACTIONS(560), + [anon_sym_DOLLAR] = ACTIONS(562), + [sym_raw_string] = ACTIONS(1493), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(566), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(568), + [anon_sym_BQUOTE] = ACTIONS(570), + [anon_sym_LT_LPAREN] = ACTIONS(572), + [anon_sym_GT_LPAREN] = ACTIONS(572), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1493), + [sym_regex] = ACTIONS(1094), }, [318] = { + [sym_concatenation] = STATE(617), + [sym_string] = STATE(818), + [sym_simple_expansion] = STATE(818), + [sym_string_expansion] = STATE(818), + [sym_expansion] = STATE(818), + [sym_command_substitution] = STATE(818), + [sym_process_substitution] = STATE(818), + [sym__special_characters] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1497), + [anon_sym_DOLLAR] = ACTIONS(1499), + [sym_raw_string] = ACTIONS(1501), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1503), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1505), + [anon_sym_BQUOTE] = ACTIONS(1507), + [anon_sym_LT_LPAREN] = ACTIONS(1509), + [anon_sym_GT_LPAREN] = ACTIONS(1509), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1511), + }, + [319] = { + [sym_concatenation] = STATE(623), + [sym_string] = STATE(824), + [sym_simple_expansion] = STATE(824), + [sym_string_expansion] = STATE(824), + [sym_expansion] = STATE(824), + [sym_command_substitution] = STATE(824), + [sym_process_substitution] = STATE(824), + [sym__special_characters] = ACTIONS(1513), + [anon_sym_DQUOTE] = ACTIONS(1497), + [anon_sym_DOLLAR] = ACTIONS(1499), + [sym_raw_string] = ACTIONS(1515), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1503), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1505), + [anon_sym_BQUOTE] = ACTIONS(1507), + [anon_sym_LT_LPAREN] = ACTIONS(1509), + [anon_sym_GT_LPAREN] = ACTIONS(1509), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1517), + }, + [320] = { + [aux_sym_concatenation_repeat1] = STATE(294), + [sym_file_descriptor] = ACTIONS(600), + [sym__concat] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(602), + [anon_sym_RPAREN] = ACTIONS(602), + [anon_sym_SEMI_SEMI] = ACTIONS(602), + [anon_sym_PIPE_AMP] = ACTIONS(602), + [anon_sym_AMP_AMP] = ACTIONS(602), + [anon_sym_PIPE_PIPE] = ACTIONS(602), + [anon_sym_EQ_TILDE] = ACTIONS(602), + [anon_sym_LT] = ACTIONS(602), + [anon_sym_GT] = ACTIONS(602), + [anon_sym_GT_GT] = ACTIONS(602), + [anon_sym_AMP_GT] = ACTIONS(602), + [anon_sym_AMP_GT_GT] = ACTIONS(602), + [anon_sym_LT_AMP] = ACTIONS(602), + [anon_sym_GT_AMP] = ACTIONS(602), + [anon_sym_LT_LT] = ACTIONS(602), + [anon_sym_LT_LT_DASH] = ACTIONS(602), + [anon_sym_LT_LT_LT] = ACTIONS(602), + [sym__special_characters] = ACTIONS(602), + [anon_sym_DQUOTE] = ACTIONS(602), + [anon_sym_DOLLAR] = ACTIONS(602), + [sym_raw_string] = ACTIONS(602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(602), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(602), + [anon_sym_BQUOTE] = ACTIONS(602), + [anon_sym_LT_LPAREN] = ACTIONS(602), + [anon_sym_GT_LPAREN] = ACTIONS(602), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(602), + [anon_sym_SEMI] = ACTIONS(602), + [anon_sym_LF] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(602), + }, + [321] = { + [aux_sym_concatenation_repeat1] = STATE(294), + [sym_file_descriptor] = ACTIONS(614), + [sym__concat] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(616), + [anon_sym_RPAREN] = ACTIONS(616), + [anon_sym_SEMI_SEMI] = ACTIONS(616), + [anon_sym_PIPE_AMP] = ACTIONS(616), + [anon_sym_AMP_AMP] = ACTIONS(616), + [anon_sym_PIPE_PIPE] = ACTIONS(616), + [anon_sym_EQ_TILDE] = ACTIONS(616), + [anon_sym_LT] = ACTIONS(616), + [anon_sym_GT] = ACTIONS(616), + [anon_sym_GT_GT] = ACTIONS(616), + [anon_sym_AMP_GT] = ACTIONS(616), + [anon_sym_AMP_GT_GT] = ACTIONS(616), + [anon_sym_LT_AMP] = ACTIONS(616), + [anon_sym_GT_AMP] = ACTIONS(616), + [anon_sym_LT_LT] = ACTIONS(616), + [anon_sym_LT_LT_DASH] = ACTIONS(616), + [anon_sym_LT_LT_LT] = ACTIONS(616), + [sym__special_characters] = ACTIONS(616), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_DOLLAR] = ACTIONS(616), + [sym_raw_string] = ACTIONS(616), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(616), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(616), + [anon_sym_BQUOTE] = ACTIONS(616), + [anon_sym_LT_LPAREN] = ACTIONS(616), + [anon_sym_GT_LPAREN] = ACTIONS(616), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(616), + [anon_sym_LF] = ACTIONS(616), + [anon_sym_AMP] = ACTIONS(616), + }, + [322] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(825), + [sym_file_descriptor] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(1128), + [anon_sym_RPAREN] = ACTIONS(1128), + [anon_sym_SEMI_SEMI] = ACTIONS(1128), + [anon_sym_PIPE_AMP] = ACTIONS(1128), + [anon_sym_AMP_AMP] = ACTIONS(1128), + [anon_sym_PIPE_PIPE] = ACTIONS(1128), + [anon_sym_LT] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_AMP_GT] = ACTIONS(554), + [anon_sym_AMP_GT_GT] = ACTIONS(554), + [anon_sym_LT_AMP] = ACTIONS(554), + [anon_sym_GT_AMP] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(358), + [anon_sym_LT_LT_DASH] = ACTIONS(358), + [anon_sym_LT_LT_LT] = ACTIONS(556), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_LF] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1128), + }, + [323] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [sym_concatenation] = STATE(208), + [sym_string] = STATE(321), + [sym_simple_expansion] = STATE(321), + [sym_string_expansion] = STATE(321), + [sym_expansion] = STATE(321), + [sym_command_substitution] = STATE(321), + [sym_process_substitution] = STATE(321), + [aux_sym_while_statement_repeat1] = STATE(826), + [aux_sym_command_repeat2] = STATE(827), + [sym_file_descriptor] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(1128), + [anon_sym_RPAREN] = ACTIONS(1128), + [anon_sym_SEMI_SEMI] = ACTIONS(1128), + [anon_sym_PIPE_AMP] = ACTIONS(1128), + [anon_sym_AMP_AMP] = ACTIONS(1128), + [anon_sym_PIPE_PIPE] = ACTIONS(1128), + [anon_sym_EQ_TILDE] = ACTIONS(552), + [anon_sym_LT] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_AMP_GT] = ACTIONS(554), + [anon_sym_AMP_GT_GT] = ACTIONS(554), + [anon_sym_LT_AMP] = ACTIONS(554), + [anon_sym_GT_AMP] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(358), + [anon_sym_LT_LT_DASH] = ACTIONS(358), + [anon_sym_LT_LT_LT] = ACTIONS(556), + [sym__special_characters] = ACTIONS(558), + [anon_sym_DQUOTE] = ACTIONS(560), + [anon_sym_DOLLAR] = ACTIONS(562), + [sym_raw_string] = ACTIONS(564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(566), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(568), + [anon_sym_BQUOTE] = ACTIONS(570), + [anon_sym_LT_LPAREN] = ACTIONS(572), + [anon_sym_GT_LPAREN] = ACTIONS(572), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(564), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_LF] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1128), + }, + [324] = { + [anon_sym_PIPE] = ACTIONS(542), + [anon_sym_RPAREN] = ACTIONS(1519), + [anon_sym_SEMI_SEMI] = ACTIONS(1521), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(548), + [anon_sym_PIPE_PIPE] = ACTIONS(548), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_LF] = ACTIONS(1521), + [anon_sym_AMP] = ACTIONS(1521), + }, + [325] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(542), + [anon_sym_RPAREN] = ACTIONS(1519), + [anon_sym_SEMI_SEMI] = ACTIONS(1521), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(548), + [anon_sym_PIPE_PIPE] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(380), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(380), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(380), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(1521), + [anon_sym_LF] = ACTIONS(1521), + [anon_sym_AMP] = ACTIONS(1521), + }, + [326] = { [sym__terminated_statement] = STATE(25), [sym_for_statement] = STATE(26), [sym_while_statement] = STATE(26), @@ -18181,9 +19698,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(26), [sym_pipeline] = STATE(26), [sym_list] = STATE(26), - [sym_bracket_command] = STATE(26), [sym_command] = STATE(26), [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(26), [sym_variable_assignment] = STATE(28), [sym_declaration_command] = STATE(26), [sym_unset_command] = STATE(26), @@ -18196,3205 +19713,3232 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(318), + [aux_sym_program_repeat1] = STATE(326), [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1110), - [sym_variable_name] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1118), - [anon_sym_while] = ACTIONS(1121), - [anon_sym_if] = ACTIONS(1124), - [anon_sym_case] = ACTIONS(1127), - [anon_sym_function] = ACTIONS(1130), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1136), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1139), - [anon_sym_declare] = ACTIONS(1142), - [anon_sym_typeset] = ACTIONS(1142), - [anon_sym_export] = ACTIONS(1142), - [anon_sym_readonly] = ACTIONS(1142), - [anon_sym_local] = ACTIONS(1142), - [anon_sym_unset] = ACTIONS(1145), - [anon_sym_unsetenv] = ACTIONS(1145), - [anon_sym_LT] = ACTIONS(1148), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_GT_GT] = ACTIONS(1151), - [anon_sym_AMP_GT] = ACTIONS(1148), - [anon_sym_AMP_GT_GT] = ACTIONS(1151), - [anon_sym_LT_AMP] = ACTIONS(1151), - [anon_sym_GT_AMP] = ACTIONS(1151), - [sym__special_characters] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1157), - [anon_sym_DOLLAR] = ACTIONS(1160), - [sym_raw_string] = ACTIONS(1163), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1166), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1169), - [anon_sym_BQUOTE] = ACTIONS(1172), - [anon_sym_LT_LPAREN] = ACTIONS(1175), - [anon_sym_GT_LPAREN] = ACTIONS(1175), + [sym_file_descriptor] = ACTIONS(1130), + [sym_variable_name] = ACTIONS(1133), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_if] = ACTIONS(1144), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_function] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1162), + [anon_sym_typeset] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(1162), + [anon_sym_readonly] = ACTIONS(1162), + [anon_sym_local] = ACTIONS(1162), + [anon_sym_unset] = ACTIONS(1165), + [anon_sym_unsetenv] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(1168), + [anon_sym_GT] = ACTIONS(1168), + [anon_sym_GT_GT] = ACTIONS(1171), + [anon_sym_AMP_GT] = ACTIONS(1168), + [anon_sym_AMP_GT_GT] = ACTIONS(1171), + [anon_sym_LT_AMP] = ACTIONS(1171), + [anon_sym_GT_AMP] = ACTIONS(1171), + [sym__special_characters] = ACTIONS(1174), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1180), + [sym_raw_string] = ACTIONS(1183), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1186), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1189), + [anon_sym_BQUOTE] = ACTIONS(1192), + [anon_sym_LT_LPAREN] = ACTIONS(1195), + [anon_sym_GT_LPAREN] = ACTIONS(1195), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1178), - }, - [319] = { - [sym_file_redirect] = STATE(202), - [sym_heredoc_redirect] = STATE(202), - [sym_herestring_redirect] = STATE(202), - [sym_concatenation] = STATE(203), - [sym_string] = STATE(313), - [sym_simple_expansion] = STATE(313), - [sym_string_expansion] = STATE(313), - [sym_expansion] = STATE(313), - [sym_command_substitution] = STATE(313), - [sym_process_substitution] = STATE(313), - [aux_sym_for_statement_repeat1] = STATE(802), - [aux_sym_while_statement_repeat1] = STATE(799), - [sym_file_descriptor] = ACTIONS(540), - [anon_sym_PIPE] = ACTIONS(1108), - [anon_sym_RPAREN] = ACTIONS(1108), - [anon_sym_SEMI_SEMI] = ACTIONS(1108), - [anon_sym_PIPE_AMP] = ACTIONS(1108), - [anon_sym_AMP_AMP] = ACTIONS(1108), - [anon_sym_PIPE_PIPE] = ACTIONS(1108), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_GT_GT] = ACTIONS(542), - [anon_sym_AMP_GT] = ACTIONS(542), - [anon_sym_AMP_GT_GT] = ACTIONS(542), - [anon_sym_LT_AMP] = ACTIONS(542), - [anon_sym_GT_AMP] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(348), - [anon_sym_LT_LT_DASH] = ACTIONS(348), - [anon_sym_LT_LT_LT] = ACTIONS(544), - [sym__special_characters] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_DOLLAR] = ACTIONS(550), - [sym_raw_string] = ACTIONS(552), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(554), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(556), - [anon_sym_BQUOTE] = ACTIONS(558), - [anon_sym_LT_LPAREN] = ACTIONS(560), - [anon_sym_GT_LPAREN] = ACTIONS(560), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(1108), - [anon_sym_LF] = ACTIONS(1108), - [anon_sym_AMP] = ACTIONS(1108), - }, - [320] = { - [aux_sym_concatenation_repeat1] = STATE(324), - [sym__concat] = ACTIONS(584), - [anon_sym_EQ_TILDE] = ACTIONS(1485), - [anon_sym_RBRACK] = ACTIONS(1487), - [sym__special_characters] = ACTIONS(1489), - [anon_sym_DQUOTE] = ACTIONS(1487), - [anon_sym_DOLLAR] = ACTIONS(1485), - [sym_raw_string] = ACTIONS(1487), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1487), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1487), - [anon_sym_BQUOTE] = ACTIONS(1487), - [anon_sym_LT_LPAREN] = ACTIONS(1487), - [anon_sym_GT_LPAREN] = ACTIONS(1487), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1489), - }, - [321] = { - [aux_sym_concatenation_repeat1] = STATE(324), - [sym__concat] = ACTIONS(584), - [anon_sym_EQ_TILDE] = ACTIONS(1491), - [anon_sym_RBRACK] = ACTIONS(1493), - [sym__special_characters] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1493), - [anon_sym_DOLLAR] = ACTIONS(1491), - [sym_raw_string] = ACTIONS(1493), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1493), - [anon_sym_BQUOTE] = ACTIONS(1493), - [anon_sym_LT_LPAREN] = ACTIONS(1493), - [anon_sym_GT_LPAREN] = ACTIONS(1493), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1495), - }, - [322] = { - [anon_sym_EQ_TILDE] = ACTIONS(1491), - [anon_sym_RBRACK] = ACTIONS(1493), - [sym__special_characters] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1493), - [anon_sym_DOLLAR] = ACTIONS(1491), - [sym_raw_string] = ACTIONS(1493), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1493), - [anon_sym_BQUOTE] = ACTIONS(1493), - [anon_sym_LT_LPAREN] = ACTIONS(1493), - [anon_sym_GT_LPAREN] = ACTIONS(1493), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1495), - }, - [323] = { - [sym_string] = STATE(803), - [sym_simple_expansion] = STATE(803), - [sym_string_expansion] = STATE(803), - [sym_expansion] = STATE(803), - [sym_command_substitution] = STATE(803), - [sym_process_substitution] = STATE(803), - [sym__special_characters] = ACTIONS(1497), - [anon_sym_DQUOTE] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [sym_raw_string] = ACTIONS(1499), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(128), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(130), - [anon_sym_BQUOTE] = ACTIONS(132), - [anon_sym_LT_LPAREN] = ACTIONS(134), - [anon_sym_GT_LPAREN] = ACTIONS(134), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1497), - }, - [324] = { - [aux_sym_concatenation_repeat1] = STATE(804), - [sym__concat] = ACTIONS(584), - [anon_sym_EQ_TILDE] = ACTIONS(1501), - [anon_sym_RBRACK] = ACTIONS(760), - [sym__special_characters] = ACTIONS(762), - [anon_sym_DQUOTE] = ACTIONS(760), - [anon_sym_DOLLAR] = ACTIONS(1501), - [sym_raw_string] = ACTIONS(760), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(760), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(760), - [anon_sym_BQUOTE] = ACTIONS(760), - [anon_sym_LT_LPAREN] = ACTIONS(760), - [anon_sym_GT_LPAREN] = ACTIONS(760), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(762), - }, - [325] = { - [sym__concat] = ACTIONS(764), - [anon_sym_EQ_TILDE] = ACTIONS(1503), - [anon_sym_RBRACK] = ACTIONS(764), - [sym__special_characters] = ACTIONS(766), - [anon_sym_DQUOTE] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(1503), - [sym_raw_string] = ACTIONS(764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(764), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(764), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_LT_LPAREN] = ACTIONS(764), - [anon_sym_GT_LPAREN] = ACTIONS(764), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(766), - }, - [326] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(1505), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym_word] = ACTIONS(1198), }, [327] = { - [sym__concat] = ACTIONS(796), - [anon_sym_EQ_TILDE] = ACTIONS(1507), - [anon_sym_RBRACK] = ACTIONS(796), - [sym__special_characters] = ACTIONS(798), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(1507), - [sym_raw_string] = ACTIONS(796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [anon_sym_LT_LPAREN] = ACTIONS(796), - [anon_sym_GT_LPAREN] = ACTIONS(796), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(798), + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [sym_concatenation] = STATE(208), + [sym_string] = STATE(321), + [sym_simple_expansion] = STATE(321), + [sym_string_expansion] = STATE(321), + [sym_expansion] = STATE(321), + [sym_command_substitution] = STATE(321), + [sym_process_substitution] = STATE(321), + [aux_sym_while_statement_repeat1] = STATE(826), + [aux_sym_command_repeat2] = STATE(829), + [sym_file_descriptor] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(1128), + [anon_sym_RPAREN] = ACTIONS(1128), + [anon_sym_SEMI_SEMI] = ACTIONS(1128), + [anon_sym_PIPE_AMP] = ACTIONS(1128), + [anon_sym_AMP_AMP] = ACTIONS(1128), + [anon_sym_PIPE_PIPE] = ACTIONS(1128), + [anon_sym_EQ_TILDE] = ACTIONS(552), + [anon_sym_LT] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_AMP_GT] = ACTIONS(554), + [anon_sym_AMP_GT_GT] = ACTIONS(554), + [anon_sym_LT_AMP] = ACTIONS(554), + [anon_sym_GT_AMP] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(358), + [anon_sym_LT_LT_DASH] = ACTIONS(358), + [anon_sym_LT_LT_LT] = ACTIONS(556), + [sym__special_characters] = ACTIONS(558), + [anon_sym_DQUOTE] = ACTIONS(560), + [anon_sym_DOLLAR] = ACTIONS(562), + [sym_raw_string] = ACTIONS(564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(566), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(568), + [anon_sym_BQUOTE] = ACTIONS(570), + [anon_sym_LT_LPAREN] = ACTIONS(572), + [anon_sym_GT_LPAREN] = ACTIONS(572), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(564), + [anon_sym_SEMI] = ACTIONS(1128), + [anon_sym_LF] = ACTIONS(1128), + [anon_sym_AMP] = ACTIONS(1128), }, [328] = { - [sym__concat] = ACTIONS(800), - [anon_sym_EQ_TILDE] = ACTIONS(1509), - [anon_sym_RBRACK] = ACTIONS(800), - [sym__special_characters] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR] = ACTIONS(1509), - [sym_raw_string] = ACTIONS(800), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(800), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(800), - [anon_sym_BQUOTE] = ACTIONS(800), - [anon_sym_LT_LPAREN] = ACTIONS(800), - [anon_sym_GT_LPAREN] = ACTIONS(800), + [aux_sym_concatenation_repeat1] = STATE(332), + [sym__concat] = ACTIONS(596), + [anon_sym_EQ_TILDE] = ACTIONS(1523), + [anon_sym_RBRACK] = ACTIONS(1525), + [sym__special_characters] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(1523), + [sym_raw_string] = ACTIONS(1525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1525), + [anon_sym_BQUOTE] = ACTIONS(1525), + [anon_sym_LT_LPAREN] = ACTIONS(1525), + [anon_sym_GT_LPAREN] = ACTIONS(1525), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(802), + [sym_word] = ACTIONS(1527), }, [329] = { - [sym__concat] = ACTIONS(804), - [anon_sym_EQ_TILDE] = ACTIONS(1511), - [anon_sym_RBRACK] = ACTIONS(804), - [sym__special_characters] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(804), - [anon_sym_DOLLAR] = ACTIONS(1511), - [sym_raw_string] = ACTIONS(804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(804), - [anon_sym_BQUOTE] = ACTIONS(804), - [anon_sym_LT_LPAREN] = ACTIONS(804), - [anon_sym_GT_LPAREN] = ACTIONS(804), + [aux_sym_concatenation_repeat1] = STATE(332), + [sym__concat] = ACTIONS(596), + [anon_sym_EQ_TILDE] = ACTIONS(1529), + [anon_sym_RBRACK] = ACTIONS(1531), + [sym__special_characters] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(1531), + [anon_sym_DOLLAR] = ACTIONS(1529), + [sym_raw_string] = ACTIONS(1531), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1531), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1531), + [anon_sym_BQUOTE] = ACTIONS(1531), + [anon_sym_LT_LPAREN] = ACTIONS(1531), + [anon_sym_GT_LPAREN] = ACTIONS(1531), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(806), + [sym_word] = ACTIONS(1533), }, [330] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1513), + [anon_sym_EQ_TILDE] = ACTIONS(1529), + [anon_sym_RBRACK] = ACTIONS(1531), + [sym__special_characters] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(1531), + [anon_sym_DOLLAR] = ACTIONS(1529), + [sym_raw_string] = ACTIONS(1531), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1531), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1531), + [anon_sym_BQUOTE] = ACTIONS(1531), + [anon_sym_LT_LPAREN] = ACTIONS(1531), + [anon_sym_GT_LPAREN] = ACTIONS(1531), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1533), }, [331] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(808), - [anon_sym_RBRACE] = ACTIONS(1515), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_string] = STATE(830), + [sym_simple_expansion] = STATE(830), + [sym_string_expansion] = STATE(830), + [sym_expansion] = STATE(830), + [sym_command_substitution] = STATE(830), + [sym_process_substitution] = STATE(830), + [sym__special_characters] = ACTIONS(1535), + [anon_sym_DQUOTE] = ACTIONS(126), + [anon_sym_DOLLAR] = ACTIONS(128), + [sym_raw_string] = ACTIONS(1537), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(132), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(134), + [anon_sym_BQUOTE] = ACTIONS(136), + [anon_sym_LT_LPAREN] = ACTIONS(138), + [anon_sym_GT_LPAREN] = ACTIONS(138), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1535), }, [332] = { - [sym_subscript] = STATE(812), - [sym_variable_name] = ACTIONS(1517), - [anon_sym_DOLLAR] = ACTIONS(1519), - [anon_sym_DASH] = ACTIONS(1519), + [aux_sym_concatenation_repeat1] = STATE(831), + [sym__concat] = ACTIONS(596), + [anon_sym_EQ_TILDE] = ACTIONS(1539), + [anon_sym_RBRACK] = ACTIONS(772), + [sym__special_characters] = ACTIONS(774), + [anon_sym_DQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(1539), + [sym_raw_string] = ACTIONS(772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(772), + [anon_sym_BQUOTE] = ACTIONS(772), + [anon_sym_LT_LPAREN] = ACTIONS(772), + [anon_sym_GT_LPAREN] = ACTIONS(772), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1521), - [anon_sym_STAR] = ACTIONS(1519), - [anon_sym_AT] = ACTIONS(1519), - [anon_sym_QMARK] = ACTIONS(1519), - [anon_sym_0] = ACTIONS(1523), - [anon_sym__] = ACTIONS(1523), + [sym_word] = ACTIONS(774), }, [333] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(814), - [anon_sym_RBRACE] = ACTIONS(1525), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym__concat] = ACTIONS(776), + [anon_sym_EQ_TILDE] = ACTIONS(1541), + [anon_sym_RBRACK] = ACTIONS(776), + [sym__special_characters] = ACTIONS(778), + [anon_sym_DQUOTE] = ACTIONS(776), + [anon_sym_DOLLAR] = ACTIONS(1541), + [sym_raw_string] = ACTIONS(776), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(776), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(776), + [anon_sym_BQUOTE] = ACTIONS(776), + [anon_sym_LT_LPAREN] = ACTIONS(776), + [anon_sym_GT_LPAREN] = ACTIONS(776), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(778), }, [334] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(816), - [anon_sym_RBRACE] = ACTIONS(1527), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, [335] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1529), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), + [sym__concat] = ACTIONS(808), + [anon_sym_EQ_TILDE] = ACTIONS(1545), + [anon_sym_RBRACK] = ACTIONS(808), + [sym__special_characters] = ACTIONS(810), + [anon_sym_DQUOTE] = ACTIONS(808), + [anon_sym_DOLLAR] = ACTIONS(1545), + [sym_raw_string] = ACTIONS(808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(808), + [anon_sym_BQUOTE] = ACTIONS(808), + [anon_sym_LT_LPAREN] = ACTIONS(808), + [anon_sym_GT_LPAREN] = ACTIONS(808), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(810), }, [336] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1529), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [sym__concat] = ACTIONS(812), + [anon_sym_EQ_TILDE] = ACTIONS(1547), + [anon_sym_RBRACK] = ACTIONS(812), + [sym__special_characters] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR] = ACTIONS(1547), + [sym_raw_string] = ACTIONS(812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(812), + [anon_sym_BQUOTE] = ACTIONS(812), + [anon_sym_LT_LPAREN] = ACTIONS(812), + [anon_sym_GT_LPAREN] = ACTIONS(812), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_word] = ACTIONS(814), }, [337] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1529), + [sym__concat] = ACTIONS(816), + [anon_sym_EQ_TILDE] = ACTIONS(1549), + [anon_sym_RBRACK] = ACTIONS(816), + [sym__special_characters] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(816), + [anon_sym_DOLLAR] = ACTIONS(1549), + [sym_raw_string] = ACTIONS(816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(816), + [anon_sym_BQUOTE] = ACTIONS(816), + [anon_sym_LT_LPAREN] = ACTIONS(816), + [anon_sym_GT_LPAREN] = ACTIONS(816), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(818), }, [338] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(1529), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(1551), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), }, [339] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1531), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(836), + [anon_sym_RBRACE] = ACTIONS(1553), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1555), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [340] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1531), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [sym_subscript] = STATE(840), + [sym_variable_name] = ACTIONS(1557), + [anon_sym_DOLLAR] = ACTIONS(1559), + [anon_sym_DASH] = ACTIONS(1559), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1559), + [anon_sym_AT] = ACTIONS(1559), + [anon_sym_QMARK] = ACTIONS(1559), + [anon_sym_0] = ACTIONS(1563), + [anon_sym__] = ACTIONS(1563), }, [341] = { - [anon_sym_PIPE] = ACTIONS(1533), - [anon_sym_RPAREN] = ACTIONS(1533), - [anon_sym_SEMI_SEMI] = ACTIONS(1533), - [anon_sym_PIPE_AMP] = ACTIONS(1533), - [anon_sym_AMP_AMP] = ACTIONS(1533), - [anon_sym_PIPE_PIPE] = ACTIONS(1533), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1533), - [anon_sym_LF] = ACTIONS(1533), - [anon_sym_AMP] = ACTIONS(1533), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(843), + [anon_sym_RBRACE] = ACTIONS(1565), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1567), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [342] = { - [sym_concatenation] = STATE(82), - [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), - [aux_sym_bracket_command_repeat1] = STATE(342), - [anon_sym_EQ_TILDE] = ACTIONS(1535), - [anon_sym_RBRACK] = ACTIONS(1493), - [sym__special_characters] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1541), - [anon_sym_DOLLAR] = ACTIONS(1544), - [sym_raw_string] = ACTIONS(1547), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1550), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1553), - [anon_sym_BQUOTE] = ACTIONS(1556), - [anon_sym_LT_LPAREN] = ACTIONS(1559), - [anon_sym_GT_LPAREN] = ACTIONS(1559), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1562), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(846), + [anon_sym_RBRACE] = ACTIONS(1569), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1571), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [343] = { - [aux_sym_concatenation_repeat1] = STATE(347), - [sym__concat] = ACTIONS(638), - [anon_sym_EQ_TILDE] = ACTIONS(1485), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1487), - [sym__special_characters] = ACTIONS(1489), - [anon_sym_DQUOTE] = ACTIONS(1487), - [anon_sym_DOLLAR] = ACTIONS(1485), - [sym_raw_string] = ACTIONS(1487), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1487), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1487), - [anon_sym_BQUOTE] = ACTIONS(1487), - [anon_sym_LT_LPAREN] = ACTIONS(1487), - [anon_sym_GT_LPAREN] = ACTIONS(1487), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1573), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1489), }, [344] = { - [aux_sym_concatenation_repeat1] = STATE(347), - [sym__concat] = ACTIONS(638), - [anon_sym_EQ_TILDE] = ACTIONS(1491), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1493), - [sym__special_characters] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1493), - [anon_sym_DOLLAR] = ACTIONS(1491), - [sym_raw_string] = ACTIONS(1493), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1493), - [anon_sym_BQUOTE] = ACTIONS(1493), - [anon_sym_LT_LPAREN] = ACTIONS(1493), - [anon_sym_GT_LPAREN] = ACTIONS(1493), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1573), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1495), + [sym_word] = ACTIONS(382), }, [345] = { - [anon_sym_EQ_TILDE] = ACTIONS(1491), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1493), - [sym__special_characters] = ACTIONS(1495), - [anon_sym_DQUOTE] = ACTIONS(1493), - [anon_sym_DOLLAR] = ACTIONS(1491), - [sym_raw_string] = ACTIONS(1493), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1493), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1493), - [anon_sym_BQUOTE] = ACTIONS(1493), - [anon_sym_LT_LPAREN] = ACTIONS(1493), - [anon_sym_GT_LPAREN] = ACTIONS(1493), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(1573), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1495), }, [346] = { - [sym_string] = STATE(819), - [sym_simple_expansion] = STATE(819), - [sym_string_expansion] = STATE(819), - [sym_expansion] = STATE(819), - [sym_command_substitution] = STATE(819), - [sym_process_substitution] = STATE(819), - [sym__special_characters] = ACTIONS(1565), - [anon_sym_DQUOTE] = ACTIONS(142), - [anon_sym_DOLLAR] = ACTIONS(144), - [sym_raw_string] = ACTIONS(1567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(148), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(150), - [anon_sym_BQUOTE] = ACTIONS(152), - [anon_sym_LT_LPAREN] = ACTIONS(154), - [anon_sym_GT_LPAREN] = ACTIONS(154), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(1573), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1565), + [sym_word] = ACTIONS(382), }, [347] = { - [aux_sym_concatenation_repeat1] = STATE(820), - [sym__concat] = ACTIONS(638), - [anon_sym_EQ_TILDE] = ACTIONS(1501), - [anon_sym_RBRACK_RBRACK] = ACTIONS(760), - [sym__special_characters] = ACTIONS(762), - [anon_sym_DQUOTE] = ACTIONS(760), - [anon_sym_DOLLAR] = ACTIONS(1501), - [sym_raw_string] = ACTIONS(760), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(760), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(760), - [anon_sym_BQUOTE] = ACTIONS(760), - [anon_sym_LT_LPAREN] = ACTIONS(760), - [anon_sym_GT_LPAREN] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1575), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(762), }, [348] = { - [sym__concat] = ACTIONS(764), - [anon_sym_EQ_TILDE] = ACTIONS(1503), - [anon_sym_RBRACK_RBRACK] = ACTIONS(764), - [sym__special_characters] = ACTIONS(766), - [anon_sym_DQUOTE] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(1503), - [sym_raw_string] = ACTIONS(764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(764), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(764), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_LT_LPAREN] = ACTIONS(764), - [anon_sym_GT_LPAREN] = ACTIONS(764), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1575), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(766), + [sym_word] = ACTIONS(382), }, [349] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(1569), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(849), + [sym_file_descriptor] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_SEMI_SEMI] = ACTIONS(1577), + [anon_sym_PIPE_AMP] = ACTIONS(1577), + [anon_sym_AMP_AMP] = ACTIONS(1577), + [anon_sym_PIPE_PIPE] = ACTIONS(1577), + [anon_sym_LT] = ACTIONS(356), + [anon_sym_GT] = ACTIONS(356), + [anon_sym_GT_GT] = ACTIONS(356), + [anon_sym_AMP_GT] = ACTIONS(356), + [anon_sym_AMP_GT_GT] = ACTIONS(356), + [anon_sym_LT_AMP] = ACTIONS(356), + [anon_sym_GT_AMP] = ACTIONS(356), + [anon_sym_LT_LT] = ACTIONS(358), + [anon_sym_LT_LT_DASH] = ACTIONS(358), + [anon_sym_LT_LT_LT] = ACTIONS(360), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1577), + [anon_sym_LF] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1577), }, [350] = { - [sym__concat] = ACTIONS(796), - [anon_sym_EQ_TILDE] = ACTIONS(1507), - [anon_sym_RBRACK_RBRACK] = ACTIONS(796), - [sym__special_characters] = ACTIONS(798), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(1507), - [sym_raw_string] = ACTIONS(796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [anon_sym_LT_LPAREN] = ACTIONS(796), - [anon_sym_GT_LPAREN] = ACTIONS(796), + [sym_concatenation] = STATE(84), + [sym_string] = STATE(79), + [sym_simple_expansion] = STATE(79), + [sym_string_expansion] = STATE(79), + [sym_expansion] = STATE(79), + [sym_command_substitution] = STATE(79), + [sym_process_substitution] = STATE(79), + [aux_sym_command_repeat2] = STATE(350), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(1531), + [sym__special_characters] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(1585), + [anon_sym_DOLLAR] = ACTIONS(1588), + [sym_raw_string] = ACTIONS(1591), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1594), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1597), + [anon_sym_BQUOTE] = ACTIONS(1600), + [anon_sym_LT_LPAREN] = ACTIONS(1603), + [anon_sym_GT_LPAREN] = ACTIONS(1603), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(798), + [sym_word] = ACTIONS(1606), }, [351] = { - [sym__concat] = ACTIONS(800), - [anon_sym_EQ_TILDE] = ACTIONS(1509), - [anon_sym_RBRACK_RBRACK] = ACTIONS(800), - [sym__special_characters] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR] = ACTIONS(1509), - [sym_raw_string] = ACTIONS(800), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(800), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(800), - [anon_sym_BQUOTE] = ACTIONS(800), - [anon_sym_LT_LPAREN] = ACTIONS(800), - [anon_sym_GT_LPAREN] = ACTIONS(800), + [aux_sym_concatenation_repeat1] = STATE(355), + [sym__concat] = ACTIONS(650), + [anon_sym_EQ_TILDE] = ACTIONS(1523), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1525), + [sym__special_characters] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(1523), + [sym_raw_string] = ACTIONS(1525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1525), + [anon_sym_BQUOTE] = ACTIONS(1525), + [anon_sym_LT_LPAREN] = ACTIONS(1525), + [anon_sym_GT_LPAREN] = ACTIONS(1525), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(802), + [sym_word] = ACTIONS(1527), }, [352] = { - [sym__concat] = ACTIONS(804), - [anon_sym_EQ_TILDE] = ACTIONS(1511), - [anon_sym_RBRACK_RBRACK] = ACTIONS(804), - [sym__special_characters] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(804), - [anon_sym_DOLLAR] = ACTIONS(1511), - [sym_raw_string] = ACTIONS(804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(804), - [anon_sym_BQUOTE] = ACTIONS(804), - [anon_sym_LT_LPAREN] = ACTIONS(804), - [anon_sym_GT_LPAREN] = ACTIONS(804), + [aux_sym_concatenation_repeat1] = STATE(355), + [sym__concat] = ACTIONS(650), + [anon_sym_EQ_TILDE] = ACTIONS(1529), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1531), + [sym__special_characters] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(1531), + [anon_sym_DOLLAR] = ACTIONS(1529), + [sym_raw_string] = ACTIONS(1531), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1531), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1531), + [anon_sym_BQUOTE] = ACTIONS(1531), + [anon_sym_LT_LPAREN] = ACTIONS(1531), + [anon_sym_GT_LPAREN] = ACTIONS(1531), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(806), + [sym_word] = ACTIONS(1533), }, [353] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1571), + [anon_sym_EQ_TILDE] = ACTIONS(1529), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1531), + [sym__special_characters] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(1531), + [anon_sym_DOLLAR] = ACTIONS(1529), + [sym_raw_string] = ACTIONS(1531), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1531), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1531), + [anon_sym_BQUOTE] = ACTIONS(1531), + [anon_sym_LT_LPAREN] = ACTIONS(1531), + [anon_sym_GT_LPAREN] = ACTIONS(1531), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1533), }, [354] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(824), - [anon_sym_RBRACE] = ACTIONS(1573), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_string] = STATE(850), + [sym_simple_expansion] = STATE(850), + [sym_string_expansion] = STATE(850), + [sym_expansion] = STATE(850), + [sym_command_substitution] = STATE(850), + [sym_process_substitution] = STATE(850), + [sym__special_characters] = ACTIONS(1609), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [sym_raw_string] = ACTIONS(1611), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(156), + [anon_sym_LT_LPAREN] = ACTIONS(158), + [anon_sym_GT_LPAREN] = ACTIONS(158), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1609), }, [355] = { - [sym_subscript] = STATE(828), - [sym_variable_name] = ACTIONS(1575), - [anon_sym_DOLLAR] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), + [aux_sym_concatenation_repeat1] = STATE(851), + [sym__concat] = ACTIONS(650), + [anon_sym_EQ_TILDE] = ACTIONS(1539), + [anon_sym_RBRACK_RBRACK] = ACTIONS(772), + [sym__special_characters] = ACTIONS(774), + [anon_sym_DQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(1539), + [sym_raw_string] = ACTIONS(772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(772), + [anon_sym_BQUOTE] = ACTIONS(772), + [anon_sym_LT_LPAREN] = ACTIONS(772), + [anon_sym_GT_LPAREN] = ACTIONS(772), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1579), - [anon_sym_STAR] = ACTIONS(1577), - [anon_sym_AT] = ACTIONS(1577), - [anon_sym_QMARK] = ACTIONS(1577), - [anon_sym_0] = ACTIONS(1581), - [anon_sym__] = ACTIONS(1581), + [sym_word] = ACTIONS(774), }, [356] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(830), - [anon_sym_RBRACE] = ACTIONS(1583), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym__concat] = ACTIONS(776), + [anon_sym_EQ_TILDE] = ACTIONS(1541), + [anon_sym_RBRACK_RBRACK] = ACTIONS(776), + [sym__special_characters] = ACTIONS(778), + [anon_sym_DQUOTE] = ACTIONS(776), + [anon_sym_DOLLAR] = ACTIONS(1541), + [sym_raw_string] = ACTIONS(776), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(776), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(776), + [anon_sym_BQUOTE] = ACTIONS(776), + [anon_sym_LT_LPAREN] = ACTIONS(776), + [anon_sym_GT_LPAREN] = ACTIONS(776), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(778), }, [357] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(832), - [anon_sym_RBRACE] = ACTIONS(1585), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(1613), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, [358] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), + [sym__concat] = ACTIONS(808), + [anon_sym_EQ_TILDE] = ACTIONS(1545), + [anon_sym_RBRACK_RBRACK] = ACTIONS(808), + [sym__special_characters] = ACTIONS(810), + [anon_sym_DQUOTE] = ACTIONS(808), + [anon_sym_DOLLAR] = ACTIONS(1545), + [sym_raw_string] = ACTIONS(808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(808), + [anon_sym_BQUOTE] = ACTIONS(808), + [anon_sym_LT_LPAREN] = ACTIONS(808), + [anon_sym_GT_LPAREN] = ACTIONS(808), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(810), }, [359] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [sym__concat] = ACTIONS(812), + [anon_sym_EQ_TILDE] = ACTIONS(1547), + [anon_sym_RBRACK_RBRACK] = ACTIONS(812), + [sym__special_characters] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR] = ACTIONS(1547), + [sym_raw_string] = ACTIONS(812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(812), + [anon_sym_BQUOTE] = ACTIONS(812), + [anon_sym_LT_LPAREN] = ACTIONS(812), + [anon_sym_GT_LPAREN] = ACTIONS(812), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_word] = ACTIONS(814), }, [360] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1587), + [sym__concat] = ACTIONS(816), + [anon_sym_EQ_TILDE] = ACTIONS(1549), + [anon_sym_RBRACK_RBRACK] = ACTIONS(816), + [sym__special_characters] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(816), + [anon_sym_DOLLAR] = ACTIONS(1549), + [sym_raw_string] = ACTIONS(816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(816), + [anon_sym_BQUOTE] = ACTIONS(816), + [anon_sym_LT_LPAREN] = ACTIONS(816), + [anon_sym_GT_LPAREN] = ACTIONS(816), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(818), }, [361] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(1587), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(1615), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), }, [362] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1589), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(856), + [anon_sym_RBRACE] = ACTIONS(1617), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1619), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [363] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1589), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [sym_subscript] = STATE(860), + [sym_variable_name] = ACTIONS(1621), + [anon_sym_DOLLAR] = ACTIONS(1623), + [anon_sym_DASH] = ACTIONS(1623), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1625), + [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_AT] = ACTIONS(1623), + [anon_sym_QMARK] = ACTIONS(1623), + [anon_sym_0] = ACTIONS(1627), + [anon_sym__] = ACTIONS(1627), }, [364] = { - [sym_concatenation] = STATE(93), - [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), - [aux_sym_bracket_command_repeat1] = STATE(364), - [anon_sym_EQ_TILDE] = ACTIONS(1591), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1493), - [sym__special_characters] = ACTIONS(1594), - [anon_sym_DQUOTE] = ACTIONS(1597), - [anon_sym_DOLLAR] = ACTIONS(1600), - [sym_raw_string] = ACTIONS(1603), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1606), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1609), - [anon_sym_BQUOTE] = ACTIONS(1612), - [anon_sym_LT_LPAREN] = ACTIONS(1615), - [anon_sym_GT_LPAREN] = ACTIONS(1615), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1618), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(863), + [anon_sym_RBRACE] = ACTIONS(1629), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1631), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [365] = { - [sym_concatenation] = STATE(835), - [sym_string] = STATE(838), - [sym_array] = STATE(835), - [sym_simple_expansion] = STATE(838), - [sym_string_expansion] = STATE(838), - [sym_expansion] = STATE(838), - [sym_command_substitution] = STATE(838), - [sym_process_substitution] = STATE(838), - [sym__empty_value] = ACTIONS(1621), - [anon_sym_LPAREN] = ACTIONS(1623), - [sym__special_characters] = ACTIONS(1625), - [anon_sym_DQUOTE] = ACTIONS(670), - [anon_sym_DOLLAR] = ACTIONS(1627), - [sym_raw_string] = ACTIONS(1629), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1631), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1633), - [anon_sym_BQUOTE] = ACTIONS(1635), - [anon_sym_LT_LPAREN] = ACTIONS(1637), - [anon_sym_GT_LPAREN] = ACTIONS(1637), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1639), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(866), + [anon_sym_RBRACE] = ACTIONS(1633), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1635), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [366] = { - [sym_variable_name] = ACTIONS(428), - [anon_sym_PIPE] = ACTIONS(430), - [anon_sym_RPAREN] = ACTIONS(430), - [anon_sym_SEMI_SEMI] = ACTIONS(430), - [anon_sym_PIPE_AMP] = ACTIONS(430), - [anon_sym_AMP_AMP] = ACTIONS(430), - [anon_sym_PIPE_PIPE] = ACTIONS(430), - [sym__special_characters] = ACTIONS(430), - [anon_sym_DQUOTE] = ACTIONS(430), - [anon_sym_DOLLAR] = ACTIONS(430), - [sym_raw_string] = ACTIONS(430), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(430), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(430), - [anon_sym_BQUOTE] = ACTIONS(430), - [anon_sym_LT_LPAREN] = ACTIONS(430), - [anon_sym_GT_LPAREN] = ACTIONS(430), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(430), - [sym_word] = ACTIONS(430), - [anon_sym_SEMI] = ACTIONS(430), - [anon_sym_LF] = ACTIONS(430), - [anon_sym_AMP] = ACTIONS(430), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1637), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), }, [367] = { - [sym_string] = STATE(839), - [sym_simple_expansion] = STATE(839), - [sym_string_expansion] = STATE(839), - [sym_expansion] = STATE(839), - [sym_command_substitution] = STATE(839), - [sym_process_substitution] = STATE(839), - [sym__special_characters] = ACTIONS(1641), - [anon_sym_DQUOTE] = ACTIONS(670), - [anon_sym_DOLLAR] = ACTIONS(1627), - [sym_raw_string] = ACTIONS(1643), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1631), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1633), - [anon_sym_BQUOTE] = ACTIONS(1635), - [anon_sym_LT_LPAREN] = ACTIONS(1637), - [anon_sym_GT_LPAREN] = ACTIONS(1637), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1637), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1641), + [sym_word] = ACTIONS(382), }, [368] = { - [aux_sym_concatenation_repeat1] = STATE(840), - [sym__concat] = ACTIONS(662), - [sym_variable_name] = ACTIONS(760), - [anon_sym_PIPE] = ACTIONS(762), - [anon_sym_SEMI_SEMI] = ACTIONS(762), - [anon_sym_PIPE_AMP] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(762), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [sym__special_characters] = ACTIONS(762), - [anon_sym_DQUOTE] = ACTIONS(762), - [anon_sym_DOLLAR] = ACTIONS(762), - [sym_raw_string] = ACTIONS(762), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(762), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(762), - [anon_sym_BQUOTE] = ACTIONS(762), - [anon_sym_LT_LPAREN] = ACTIONS(762), - [anon_sym_GT_LPAREN] = ACTIONS(762), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(762), - [sym_word] = ACTIONS(762), - [anon_sym_SEMI] = ACTIONS(762), - [anon_sym_LF] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(762), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(1637), + [sym_comment] = ACTIONS(56), }, [369] = { - [sym__concat] = ACTIONS(764), - [sym_variable_name] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_SEMI_SEMI] = ACTIONS(766), - [anon_sym_PIPE_AMP] = ACTIONS(766), - [anon_sym_AMP_AMP] = ACTIONS(766), - [anon_sym_PIPE_PIPE] = ACTIONS(766), - [sym__special_characters] = ACTIONS(766), - [anon_sym_DQUOTE] = ACTIONS(766), - [anon_sym_DOLLAR] = ACTIONS(766), - [sym_raw_string] = ACTIONS(766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(766), - [anon_sym_BQUOTE] = ACTIONS(766), - [anon_sym_LT_LPAREN] = ACTIONS(766), - [anon_sym_GT_LPAREN] = ACTIONS(766), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(766), - [sym_word] = ACTIONS(766), - [anon_sym_SEMI] = ACTIONS(766), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(766), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(1637), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), }, [370] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(1645), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1639), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), }, [371] = { - [sym__concat] = ACTIONS(796), - [sym_variable_name] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(798), - [anon_sym_SEMI_SEMI] = ACTIONS(798), - [anon_sym_PIPE_AMP] = ACTIONS(798), - [anon_sym_AMP_AMP] = ACTIONS(798), - [anon_sym_PIPE_PIPE] = ACTIONS(798), - [sym__special_characters] = ACTIONS(798), - [anon_sym_DQUOTE] = ACTIONS(798), - [anon_sym_DOLLAR] = ACTIONS(798), - [sym_raw_string] = ACTIONS(798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(798), - [anon_sym_BQUOTE] = ACTIONS(798), - [anon_sym_LT_LPAREN] = ACTIONS(798), - [anon_sym_GT_LPAREN] = ACTIONS(798), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(798), - [sym_word] = ACTIONS(798), - [anon_sym_SEMI] = ACTIONS(798), - [anon_sym_LF] = ACTIONS(798), - [anon_sym_AMP] = ACTIONS(798), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1639), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), }, [372] = { - [sym__concat] = ACTIONS(800), - [sym_variable_name] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(802), - [anon_sym_SEMI_SEMI] = ACTIONS(802), - [anon_sym_PIPE_AMP] = ACTIONS(802), - [anon_sym_AMP_AMP] = ACTIONS(802), - [anon_sym_PIPE_PIPE] = ACTIONS(802), - [sym__special_characters] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(802), - [sym_raw_string] = ACTIONS(802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(802), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(802), - [anon_sym_BQUOTE] = ACTIONS(802), - [anon_sym_LT_LPAREN] = ACTIONS(802), - [anon_sym_GT_LPAREN] = ACTIONS(802), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(802), - [sym_word] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(802), - [anon_sym_LF] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(802), + [sym_concatenation] = STATE(95), + [sym_string] = STATE(90), + [sym_simple_expansion] = STATE(90), + [sym_string_expansion] = STATE(90), + [sym_expansion] = STATE(90), + [sym_command_substitution] = STATE(90), + [sym_process_substitution] = STATE(90), + [aux_sym_command_repeat2] = STATE(372), + [anon_sym_EQ_TILDE] = ACTIONS(1641), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1531), + [sym__special_characters] = ACTIONS(1644), + [anon_sym_DQUOTE] = ACTIONS(1647), + [anon_sym_DOLLAR] = ACTIONS(1650), + [sym_raw_string] = ACTIONS(1653), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1656), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1659), + [anon_sym_BQUOTE] = ACTIONS(1662), + [anon_sym_LT_LPAREN] = ACTIONS(1665), + [anon_sym_GT_LPAREN] = ACTIONS(1665), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1668), }, [373] = { - [sym__concat] = ACTIONS(804), - [sym_variable_name] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(806), - [anon_sym_SEMI_SEMI] = ACTIONS(806), - [anon_sym_PIPE_AMP] = ACTIONS(806), - [anon_sym_AMP_AMP] = ACTIONS(806), - [anon_sym_PIPE_PIPE] = ACTIONS(806), - [sym__special_characters] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(806), - [anon_sym_DOLLAR] = ACTIONS(806), - [sym_raw_string] = ACTIONS(806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(806), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(806), - [anon_sym_BQUOTE] = ACTIONS(806), - [anon_sym_LT_LPAREN] = ACTIONS(806), - [anon_sym_GT_LPAREN] = ACTIONS(806), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(806), - [sym_word] = ACTIONS(806), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(806), + [sym_concatenation] = STATE(869), + [sym_string] = STATE(872), + [sym_array] = STATE(869), + [sym_simple_expansion] = STATE(872), + [sym_string_expansion] = STATE(872), + [sym_expansion] = STATE(872), + [sym_command_substitution] = STATE(872), + [sym_process_substitution] = STATE(872), + [sym__empty_value] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [sym__special_characters] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(1677), + [sym_raw_string] = ACTIONS(1679), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1683), + [anon_sym_BQUOTE] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1687), + [anon_sym_GT_LPAREN] = ACTIONS(1687), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1689), }, [374] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1647), - [sym_comment] = ACTIONS(56), + [sym_variable_name] = ACTIONS(438), + [anon_sym_PIPE] = ACTIONS(440), + [anon_sym_RPAREN] = ACTIONS(440), + [anon_sym_SEMI_SEMI] = ACTIONS(440), + [anon_sym_PIPE_AMP] = ACTIONS(440), + [anon_sym_AMP_AMP] = ACTIONS(440), + [anon_sym_PIPE_PIPE] = ACTIONS(440), + [sym__special_characters] = ACTIONS(440), + [anon_sym_DQUOTE] = ACTIONS(440), + [anon_sym_DOLLAR] = ACTIONS(440), + [sym_raw_string] = ACTIONS(440), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(440), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(440), + [anon_sym_BQUOTE] = ACTIONS(440), + [anon_sym_LT_LPAREN] = ACTIONS(440), + [anon_sym_GT_LPAREN] = ACTIONS(440), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(440), + [sym_word] = ACTIONS(440), + [anon_sym_SEMI] = ACTIONS(440), + [anon_sym_LF] = ACTIONS(440), + [anon_sym_AMP] = ACTIONS(440), }, [375] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(844), - [anon_sym_RBRACE] = ACTIONS(1649), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_string] = STATE(873), + [sym_simple_expansion] = STATE(873), + [sym_string_expansion] = STATE(873), + [sym_expansion] = STATE(873), + [sym_command_substitution] = STATE(873), + [sym_process_substitution] = STATE(873), + [sym__special_characters] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(682), + [anon_sym_DOLLAR] = ACTIONS(1677), + [sym_raw_string] = ACTIONS(1693), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1683), + [anon_sym_BQUOTE] = ACTIONS(1685), + [anon_sym_LT_LPAREN] = ACTIONS(1687), + [anon_sym_GT_LPAREN] = ACTIONS(1687), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1691), }, [376] = { - [sym_subscript] = STATE(848), - [sym_variable_name] = ACTIONS(1651), - [anon_sym_DOLLAR] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1653), - [sym_comment] = ACTIONS(56), - [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), + [aux_sym_concatenation_repeat1] = STATE(874), + [sym__concat] = ACTIONS(674), + [sym_variable_name] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(774), + [anon_sym_SEMI_SEMI] = ACTIONS(774), + [anon_sym_PIPE_AMP] = ACTIONS(774), + [anon_sym_AMP_AMP] = ACTIONS(774), + [anon_sym_PIPE_PIPE] = ACTIONS(774), + [sym__special_characters] = ACTIONS(774), + [anon_sym_DQUOTE] = ACTIONS(774), + [anon_sym_DOLLAR] = ACTIONS(774), + [sym_raw_string] = ACTIONS(774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(774), + [anon_sym_BQUOTE] = ACTIONS(774), + [anon_sym_LT_LPAREN] = ACTIONS(774), + [anon_sym_GT_LPAREN] = ACTIONS(774), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(774), + [sym_word] = ACTIONS(774), + [anon_sym_SEMI] = ACTIONS(774), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_AMP] = ACTIONS(774), }, [377] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(850), - [anon_sym_RBRACE] = ACTIONS(1659), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym__concat] = ACTIONS(776), + [sym_variable_name] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(778), + [anon_sym_SEMI_SEMI] = ACTIONS(778), + [anon_sym_PIPE_AMP] = ACTIONS(778), + [anon_sym_AMP_AMP] = ACTIONS(778), + [anon_sym_PIPE_PIPE] = ACTIONS(778), + [sym__special_characters] = ACTIONS(778), + [anon_sym_DQUOTE] = ACTIONS(778), + [anon_sym_DOLLAR] = ACTIONS(778), + [sym_raw_string] = ACTIONS(778), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(778), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(778), + [anon_sym_BQUOTE] = ACTIONS(778), + [anon_sym_LT_LPAREN] = ACTIONS(778), + [anon_sym_GT_LPAREN] = ACTIONS(778), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(778), + [sym_word] = ACTIONS(778), + [anon_sym_SEMI] = ACTIONS(778), + [anon_sym_LF] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(778), }, [378] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(852), - [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(1695), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, [379] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1663), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(808), + [sym_variable_name] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(810), + [anon_sym_SEMI_SEMI] = ACTIONS(810), + [anon_sym_PIPE_AMP] = ACTIONS(810), + [anon_sym_AMP_AMP] = ACTIONS(810), + [anon_sym_PIPE_PIPE] = ACTIONS(810), + [sym__special_characters] = ACTIONS(810), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_DOLLAR] = ACTIONS(810), + [sym_raw_string] = ACTIONS(810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(810), + [anon_sym_BQUOTE] = ACTIONS(810), + [anon_sym_LT_LPAREN] = ACTIONS(810), + [anon_sym_GT_LPAREN] = ACTIONS(810), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(810), + [sym_word] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(810), + [anon_sym_LF] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(810), }, [380] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1663), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym__concat] = ACTIONS(812), + [sym_variable_name] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(814), + [anon_sym_SEMI_SEMI] = ACTIONS(814), + [anon_sym_PIPE_AMP] = ACTIONS(814), + [anon_sym_AMP_AMP] = ACTIONS(814), + [anon_sym_PIPE_PIPE] = ACTIONS(814), + [sym__special_characters] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_DOLLAR] = ACTIONS(814), + [sym_raw_string] = ACTIONS(814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(814), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(814), + [anon_sym_BQUOTE] = ACTIONS(814), + [anon_sym_LT_LPAREN] = ACTIONS(814), + [anon_sym_GT_LPAREN] = ACTIONS(814), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(814), + [sym_word] = ACTIONS(814), + [anon_sym_SEMI] = ACTIONS(814), + [anon_sym_LF] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(814), }, [381] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1663), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(816), + [sym_variable_name] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_SEMI_SEMI] = ACTIONS(818), + [anon_sym_PIPE_AMP] = ACTIONS(818), + [anon_sym_AMP_AMP] = ACTIONS(818), + [anon_sym_PIPE_PIPE] = ACTIONS(818), + [sym__special_characters] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(818), + [anon_sym_DOLLAR] = ACTIONS(818), + [sym_raw_string] = ACTIONS(818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(818), + [anon_sym_BQUOTE] = ACTIONS(818), + [anon_sym_LT_LPAREN] = ACTIONS(818), + [anon_sym_GT_LPAREN] = ACTIONS(818), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(818), + [sym_word] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_LF] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(818), }, [382] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(1663), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(1697), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), }, [383] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1665), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(879), + [anon_sym_RBRACE] = ACTIONS(1699), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1701), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [384] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1665), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [sym_subscript] = STATE(883), + [sym_variable_name] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1705), + [anon_sym_DASH] = ACTIONS(1705), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1707), + [anon_sym_STAR] = ACTIONS(1705), + [anon_sym_AT] = ACTIONS(1705), + [anon_sym_QMARK] = ACTIONS(1705), + [anon_sym_0] = ACTIONS(1709), + [anon_sym__] = ACTIONS(1709), }, [385] = { - [sym_variable_assignment] = STATE(105), - [sym_subscript] = STATE(106), - [sym_concatenation] = STATE(105), - [sym_string] = STATE(99), - [sym_simple_expansion] = STATE(99), - [sym_string_expansion] = STATE(99), - [sym_expansion] = STATE(99), - [sym_command_substitution] = STATE(99), - [sym_process_substitution] = STATE(99), - [aux_sym_declaration_command_repeat1] = STATE(385), - [sym_variable_name] = ACTIONS(1667), - [anon_sym_PIPE] = ACTIONS(1670), - [anon_sym_SEMI_SEMI] = ACTIONS(1670), - [anon_sym_PIPE_AMP] = ACTIONS(1670), - [anon_sym_AMP_AMP] = ACTIONS(1670), - [anon_sym_PIPE_PIPE] = ACTIONS(1670), - [sym__special_characters] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(1678), - [sym_raw_string] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1684), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1687), - [anon_sym_BQUOTE] = ACTIONS(1690), - [anon_sym_LT_LPAREN] = ACTIONS(1693), - [anon_sym_GT_LPAREN] = ACTIONS(1693), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1696), - [sym_word] = ACTIONS(1681), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_LF] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1670), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(886), + [anon_sym_RBRACE] = ACTIONS(1711), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [386] = { - [sym_string] = STATE(855), - [sym_simple_expansion] = STATE(855), - [sym_string_expansion] = STATE(855), - [sym_expansion] = STATE(855), - [sym_command_substitution] = STATE(855), - [sym_process_substitution] = STATE(855), - [sym__special_characters] = ACTIONS(1699), - [anon_sym_DQUOTE] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(1701), - [sym_raw_string] = ACTIONS(1703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1707), - [anon_sym_BQUOTE] = ACTIONS(1709), - [anon_sym_LT_LPAREN] = ACTIONS(1711), - [anon_sym_GT_LPAREN] = ACTIONS(1711), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1699), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(889), + [anon_sym_RBRACE] = ACTIONS(1715), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1717), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [387] = { - [aux_sym_concatenation_repeat1] = STATE(856), - [sym__concat] = ACTIONS(698), - [anon_sym_PIPE] = ACTIONS(762), - [anon_sym_SEMI_SEMI] = ACTIONS(762), - [anon_sym_PIPE_AMP] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(762), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [sym__special_characters] = ACTIONS(762), - [anon_sym_DQUOTE] = ACTIONS(762), - [anon_sym_DOLLAR] = ACTIONS(762), - [sym_raw_string] = ACTIONS(762), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(762), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(762), - [anon_sym_BQUOTE] = ACTIONS(762), - [anon_sym_LT_LPAREN] = ACTIONS(762), - [anon_sym_GT_LPAREN] = ACTIONS(762), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(762), - [sym_word] = ACTIONS(762), - [anon_sym_SEMI] = ACTIONS(762), - [anon_sym_LF] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(762), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1719), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), }, [388] = { - [sym__concat] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_SEMI_SEMI] = ACTIONS(766), - [anon_sym_PIPE_AMP] = ACTIONS(766), - [anon_sym_AMP_AMP] = ACTIONS(766), - [anon_sym_PIPE_PIPE] = ACTIONS(766), - [sym__special_characters] = ACTIONS(766), - [anon_sym_DQUOTE] = ACTIONS(766), - [anon_sym_DOLLAR] = ACTIONS(766), - [sym_raw_string] = ACTIONS(766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(766), - [anon_sym_BQUOTE] = ACTIONS(766), - [anon_sym_LT_LPAREN] = ACTIONS(766), - [anon_sym_GT_LPAREN] = ACTIONS(766), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(766), - [sym_word] = ACTIONS(766), - [anon_sym_SEMI] = ACTIONS(766), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(766), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1719), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), }, [389] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(1719), + [sym_comment] = ACTIONS(56), }, [390] = { - [sym__concat] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(798), - [anon_sym_SEMI_SEMI] = ACTIONS(798), - [anon_sym_PIPE_AMP] = ACTIONS(798), - [anon_sym_AMP_AMP] = ACTIONS(798), - [anon_sym_PIPE_PIPE] = ACTIONS(798), - [sym__special_characters] = ACTIONS(798), - [anon_sym_DQUOTE] = ACTIONS(798), - [anon_sym_DOLLAR] = ACTIONS(798), - [sym_raw_string] = ACTIONS(798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(798), - [anon_sym_BQUOTE] = ACTIONS(798), - [anon_sym_LT_LPAREN] = ACTIONS(798), - [anon_sym_GT_LPAREN] = ACTIONS(798), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(798), - [sym_word] = ACTIONS(798), - [anon_sym_SEMI] = ACTIONS(798), - [anon_sym_LF] = ACTIONS(798), - [anon_sym_AMP] = ACTIONS(798), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(1719), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), }, [391] = { - [sym__concat] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(802), - [anon_sym_SEMI_SEMI] = ACTIONS(802), - [anon_sym_PIPE_AMP] = ACTIONS(802), - [anon_sym_AMP_AMP] = ACTIONS(802), - [anon_sym_PIPE_PIPE] = ACTIONS(802), - [sym__special_characters] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(802), - [sym_raw_string] = ACTIONS(802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(802), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(802), - [anon_sym_BQUOTE] = ACTIONS(802), - [anon_sym_LT_LPAREN] = ACTIONS(802), - [anon_sym_GT_LPAREN] = ACTIONS(802), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(802), - [sym_word] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(802), - [anon_sym_LF] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(802), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1721), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), }, [392] = { - [sym__concat] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(806), - [anon_sym_SEMI_SEMI] = ACTIONS(806), - [anon_sym_PIPE_AMP] = ACTIONS(806), - [anon_sym_AMP_AMP] = ACTIONS(806), - [anon_sym_PIPE_PIPE] = ACTIONS(806), - [sym__special_characters] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(806), - [anon_sym_DOLLAR] = ACTIONS(806), - [sym_raw_string] = ACTIONS(806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(806), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(806), - [anon_sym_BQUOTE] = ACTIONS(806), - [anon_sym_LT_LPAREN] = ACTIONS(806), - [anon_sym_GT_LPAREN] = ACTIONS(806), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(806), - [sym_word] = ACTIONS(806), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(806), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1721), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), }, [393] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1715), - [sym_comment] = ACTIONS(56), + [sym_variable_assignment] = STATE(107), + [sym_subscript] = STATE(108), + [sym_concatenation] = STATE(107), + [sym_string] = STATE(101), + [sym_simple_expansion] = STATE(101), + [sym_string_expansion] = STATE(101), + [sym_expansion] = STATE(101), + [sym_command_substitution] = STATE(101), + [sym_process_substitution] = STATE(101), + [aux_sym_declaration_command_repeat1] = STATE(393), + [sym_variable_name] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(1728), + [anon_sym_DQUOTE] = ACTIONS(1731), + [anon_sym_DOLLAR] = ACTIONS(1734), + [sym_raw_string] = ACTIONS(1737), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1743), + [anon_sym_BQUOTE] = ACTIONS(1746), + [anon_sym_LT_LPAREN] = ACTIONS(1749), + [anon_sym_GT_LPAREN] = ACTIONS(1749), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1752), + [sym_word] = ACTIONS(1737), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1726), }, [394] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(860), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_string] = STATE(892), + [sym_simple_expansion] = STATE(892), + [sym_string_expansion] = STATE(892), + [sym_expansion] = STATE(892), + [sym_command_substitution] = STATE(892), + [sym_process_substitution] = STATE(892), + [sym__special_characters] = ACTIONS(1755), + [anon_sym_DQUOTE] = ACTIONS(716), + [anon_sym_DOLLAR] = ACTIONS(1757), + [sym_raw_string] = ACTIONS(1759), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1761), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1763), + [anon_sym_BQUOTE] = ACTIONS(1765), + [anon_sym_LT_LPAREN] = ACTIONS(1767), + [anon_sym_GT_LPAREN] = ACTIONS(1767), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1755), }, [395] = { - [sym_subscript] = STATE(864), - [sym_variable_name] = ACTIONS(1719), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1721), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1721), - [anon_sym_AT] = ACTIONS(1721), - [anon_sym_QMARK] = ACTIONS(1721), - [anon_sym_0] = ACTIONS(1725), - [anon_sym__] = ACTIONS(1725), + [aux_sym_concatenation_repeat1] = STATE(893), + [sym__concat] = ACTIONS(710), + [anon_sym_PIPE] = ACTIONS(774), + [anon_sym_SEMI_SEMI] = ACTIONS(774), + [anon_sym_PIPE_AMP] = ACTIONS(774), + [anon_sym_AMP_AMP] = ACTIONS(774), + [anon_sym_PIPE_PIPE] = ACTIONS(774), + [sym__special_characters] = ACTIONS(774), + [anon_sym_DQUOTE] = ACTIONS(774), + [anon_sym_DOLLAR] = ACTIONS(774), + [sym_raw_string] = ACTIONS(774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(774), + [anon_sym_BQUOTE] = ACTIONS(774), + [anon_sym_LT_LPAREN] = ACTIONS(774), + [anon_sym_GT_LPAREN] = ACTIONS(774), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(774), + [sym_word] = ACTIONS(774), + [anon_sym_SEMI] = ACTIONS(774), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_AMP] = ACTIONS(774), }, [396] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(866), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym__concat] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(778), + [anon_sym_SEMI_SEMI] = ACTIONS(778), + [anon_sym_PIPE_AMP] = ACTIONS(778), + [anon_sym_AMP_AMP] = ACTIONS(778), + [anon_sym_PIPE_PIPE] = ACTIONS(778), + [sym__special_characters] = ACTIONS(778), + [anon_sym_DQUOTE] = ACTIONS(778), + [anon_sym_DOLLAR] = ACTIONS(778), + [sym_raw_string] = ACTIONS(778), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(778), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(778), + [anon_sym_BQUOTE] = ACTIONS(778), + [anon_sym_LT_LPAREN] = ACTIONS(778), + [anon_sym_GT_LPAREN] = ACTIONS(778), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(778), + [sym_word] = ACTIONS(778), + [anon_sym_SEMI] = ACTIONS(778), + [anon_sym_LF] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(778), }, [397] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(868), - [anon_sym_RBRACE] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(1769), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, [398] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1731), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(810), + [anon_sym_SEMI_SEMI] = ACTIONS(810), + [anon_sym_PIPE_AMP] = ACTIONS(810), + [anon_sym_AMP_AMP] = ACTIONS(810), + [anon_sym_PIPE_PIPE] = ACTIONS(810), + [sym__special_characters] = ACTIONS(810), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_DOLLAR] = ACTIONS(810), + [sym_raw_string] = ACTIONS(810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(810), + [anon_sym_BQUOTE] = ACTIONS(810), + [anon_sym_LT_LPAREN] = ACTIONS(810), + [anon_sym_GT_LPAREN] = ACTIONS(810), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(810), + [sym_word] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(810), + [anon_sym_LF] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(810), }, [399] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1731), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym__concat] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(814), + [anon_sym_SEMI_SEMI] = ACTIONS(814), + [anon_sym_PIPE_AMP] = ACTIONS(814), + [anon_sym_AMP_AMP] = ACTIONS(814), + [anon_sym_PIPE_PIPE] = ACTIONS(814), + [sym__special_characters] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_DOLLAR] = ACTIONS(814), + [sym_raw_string] = ACTIONS(814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(814), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(814), + [anon_sym_BQUOTE] = ACTIONS(814), + [anon_sym_LT_LPAREN] = ACTIONS(814), + [anon_sym_GT_LPAREN] = ACTIONS(814), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(814), + [sym_word] = ACTIONS(814), + [anon_sym_SEMI] = ACTIONS(814), + [anon_sym_LF] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(814), }, [400] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1731), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_SEMI_SEMI] = ACTIONS(818), + [anon_sym_PIPE_AMP] = ACTIONS(818), + [anon_sym_AMP_AMP] = ACTIONS(818), + [anon_sym_PIPE_PIPE] = ACTIONS(818), + [sym__special_characters] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(818), + [anon_sym_DOLLAR] = ACTIONS(818), + [sym_raw_string] = ACTIONS(818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(818), + [anon_sym_BQUOTE] = ACTIONS(818), + [anon_sym_LT_LPAREN] = ACTIONS(818), + [anon_sym_GT_LPAREN] = ACTIONS(818), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(818), + [sym_word] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_LF] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(818), }, [401] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(1731), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(1771), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), }, [402] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1733), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(898), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1775), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [403] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1733), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [sym_subscript] = STATE(902), + [sym_variable_name] = ACTIONS(1777), + [anon_sym_DOLLAR] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1781), + [anon_sym_STAR] = ACTIONS(1779), + [anon_sym_AT] = ACTIONS(1779), + [anon_sym_QMARK] = ACTIONS(1779), + [anon_sym_0] = ACTIONS(1783), + [anon_sym__] = ACTIONS(1783), }, [404] = { - [sym_concatenation] = STATE(117), - [sym_string] = STATE(111), - [sym_simple_expansion] = STATE(111), - [sym_string_expansion] = STATE(111), - [sym_expansion] = STATE(111), - [sym_command_substitution] = STATE(111), - [sym_process_substitution] = STATE(111), - [aux_sym_unset_command_repeat1] = STATE(404), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_SEMI_SEMI] = ACTIONS(1735), - [anon_sym_PIPE_AMP] = ACTIONS(1735), - [anon_sym_AMP_AMP] = ACTIONS(1735), - [anon_sym_PIPE_PIPE] = ACTIONS(1735), - [sym__special_characters] = ACTIONS(1737), - [anon_sym_DQUOTE] = ACTIONS(1740), - [anon_sym_DOLLAR] = ACTIONS(1743), - [sym_raw_string] = ACTIONS(1746), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1749), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1752), - [anon_sym_BQUOTE] = ACTIONS(1755), - [anon_sym_LT_LPAREN] = ACTIONS(1758), - [anon_sym_GT_LPAREN] = ACTIONS(1758), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1761), - [sym_word] = ACTIONS(1746), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_LF] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(905), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1787), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [405] = { - [sym_string] = STATE(871), - [sym_simple_expansion] = STATE(871), - [sym_string_expansion] = STATE(871), - [sym_expansion] = STATE(871), - [sym_command_substitution] = STATE(871), - [sym_process_substitution] = STATE(871), - [sym__special_characters] = ACTIONS(1764), - [anon_sym_DQUOTE] = ACTIONS(204), - [anon_sym_DOLLAR] = ACTIONS(206), - [sym_raw_string] = ACTIONS(1766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(210), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(212), - [anon_sym_BQUOTE] = ACTIONS(214), - [anon_sym_LT_LPAREN] = ACTIONS(216), - [anon_sym_GT_LPAREN] = ACTIONS(216), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1764), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(908), + [anon_sym_RBRACE] = ACTIONS(1789), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1791), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [406] = { - [aux_sym_concatenation_repeat1] = STATE(872), - [sym_file_descriptor] = ACTIONS(760), - [sym__concat] = ACTIONS(730), - [sym_variable_name] = ACTIONS(760), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(760), - [anon_sym_AMP_GT] = ACTIONS(1501), - [anon_sym_AMP_GT_GT] = ACTIONS(760), - [anon_sym_LT_AMP] = ACTIONS(760), - [anon_sym_GT_AMP] = ACTIONS(760), - [sym__special_characters] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(760), - [anon_sym_DOLLAR] = ACTIONS(1501), - [sym_raw_string] = ACTIONS(760), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(760), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(760), - [anon_sym_BQUOTE] = ACTIONS(760), - [anon_sym_LT_LPAREN] = ACTIONS(760), - [anon_sym_GT_LPAREN] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1793), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1501), }, [407] = { - [sym_file_descriptor] = ACTIONS(764), - [sym__concat] = ACTIONS(764), - [sym_variable_name] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(1503), - [anon_sym_GT_GT] = ACTIONS(764), - [anon_sym_AMP_GT] = ACTIONS(1503), - [anon_sym_AMP_GT_GT] = ACTIONS(764), - [anon_sym_LT_AMP] = ACTIONS(764), - [anon_sym_GT_AMP] = ACTIONS(764), - [sym__special_characters] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(1503), - [sym_raw_string] = ACTIONS(764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(764), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(764), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_LT_LPAREN] = ACTIONS(764), - [anon_sym_GT_LPAREN] = ACTIONS(764), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1793), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1503), + [sym_word] = ACTIONS(382), }, [408] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(1768), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(1793), + [sym_comment] = ACTIONS(56), }, [409] = { - [sym_file_descriptor] = ACTIONS(796), - [sym__concat] = ACTIONS(796), - [sym_variable_name] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_GT_GT] = ACTIONS(796), - [anon_sym_AMP_GT] = ACTIONS(1507), - [anon_sym_AMP_GT_GT] = ACTIONS(796), - [anon_sym_LT_AMP] = ACTIONS(796), - [anon_sym_GT_AMP] = ACTIONS(796), - [sym__special_characters] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(1507), - [sym_raw_string] = ACTIONS(796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [anon_sym_LT_LPAREN] = ACTIONS(796), - [anon_sym_GT_LPAREN] = ACTIONS(796), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(1793), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1507), + [sym_word] = ACTIONS(382), }, [410] = { - [sym_file_descriptor] = ACTIONS(800), - [sym__concat] = ACTIONS(800), - [sym_variable_name] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_GT_GT] = ACTIONS(800), - [anon_sym_AMP_GT] = ACTIONS(1509), - [anon_sym_AMP_GT_GT] = ACTIONS(800), - [anon_sym_LT_AMP] = ACTIONS(800), - [anon_sym_GT_AMP] = ACTIONS(800), - [sym__special_characters] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR] = ACTIONS(1509), - [sym_raw_string] = ACTIONS(800), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(800), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(800), - [anon_sym_BQUOTE] = ACTIONS(800), - [anon_sym_LT_LPAREN] = ACTIONS(800), - [anon_sym_GT_LPAREN] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1795), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1509), }, [411] = { - [sym_file_descriptor] = ACTIONS(804), - [sym__concat] = ACTIONS(804), - [sym_variable_name] = ACTIONS(804), - [anon_sym_LT] = ACTIONS(1511), - [anon_sym_GT] = ACTIONS(1511), - [anon_sym_GT_GT] = ACTIONS(804), - [anon_sym_AMP_GT] = ACTIONS(1511), - [anon_sym_AMP_GT_GT] = ACTIONS(804), - [anon_sym_LT_AMP] = ACTIONS(804), - [anon_sym_GT_AMP] = ACTIONS(804), - [sym__special_characters] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(804), - [anon_sym_DOLLAR] = ACTIONS(1511), - [sym_raw_string] = ACTIONS(804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(804), - [anon_sym_BQUOTE] = ACTIONS(804), - [anon_sym_LT_LPAREN] = ACTIONS(804), - [anon_sym_GT_LPAREN] = ACTIONS(804), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1795), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1511), + [sym_word] = ACTIONS(382), }, [412] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1770), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(113), + [sym_simple_expansion] = STATE(113), + [sym_string_expansion] = STATE(113), + [sym_expansion] = STATE(113), + [sym_command_substitution] = STATE(113), + [sym_process_substitution] = STATE(113), + [aux_sym_unset_command_repeat1] = STATE(412), + [anon_sym_PIPE] = ACTIONS(1797), + [anon_sym_SEMI_SEMI] = ACTIONS(1797), + [anon_sym_PIPE_AMP] = ACTIONS(1797), + [anon_sym_AMP_AMP] = ACTIONS(1797), + [anon_sym_PIPE_PIPE] = ACTIONS(1797), + [sym__special_characters] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1802), + [anon_sym_DOLLAR] = ACTIONS(1805), + [sym_raw_string] = ACTIONS(1808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1814), + [anon_sym_BQUOTE] = ACTIONS(1817), + [anon_sym_LT_LPAREN] = ACTIONS(1820), + [anon_sym_GT_LPAREN] = ACTIONS(1820), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1823), + [sym_word] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1797), + [anon_sym_LF] = ACTIONS(1797), + [anon_sym_AMP] = ACTIONS(1797), }, [413] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(1772), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_string] = STATE(911), + [sym_simple_expansion] = STATE(911), + [sym_string_expansion] = STATE(911), + [sym_expansion] = STATE(911), + [sym_command_substitution] = STATE(911), + [sym_process_substitution] = STATE(911), + [sym__special_characters] = ACTIONS(1826), + [anon_sym_DQUOTE] = ACTIONS(208), + [anon_sym_DOLLAR] = ACTIONS(210), + [sym_raw_string] = ACTIONS(1828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(216), + [anon_sym_BQUOTE] = ACTIONS(218), + [anon_sym_LT_LPAREN] = ACTIONS(220), + [anon_sym_GT_LPAREN] = ACTIONS(220), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1826), }, [414] = { - [sym_subscript] = STATE(880), - [sym_variable_name] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1776), + [aux_sym_concatenation_repeat1] = STATE(912), + [sym_file_descriptor] = ACTIONS(772), + [sym__concat] = ACTIONS(742), + [sym_variable_name] = ACTIONS(772), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_GT_GT] = ACTIONS(772), + [anon_sym_AMP_GT] = ACTIONS(1539), + [anon_sym_AMP_GT_GT] = ACTIONS(772), + [anon_sym_LT_AMP] = ACTIONS(772), + [anon_sym_GT_AMP] = ACTIONS(772), + [sym__special_characters] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(1539), + [sym_raw_string] = ACTIONS(772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(772), + [anon_sym_BQUOTE] = ACTIONS(772), + [anon_sym_LT_LPAREN] = ACTIONS(772), + [anon_sym_GT_LPAREN] = ACTIONS(772), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_AT] = ACTIONS(1776), - [anon_sym_QMARK] = ACTIONS(1776), - [anon_sym_0] = ACTIONS(1780), - [anon_sym__] = ACTIONS(1780), + [sym_word] = ACTIONS(1539), }, [415] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(882), - [anon_sym_RBRACE] = ACTIONS(1782), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_file_descriptor] = ACTIONS(776), + [sym__concat] = ACTIONS(776), + [sym_variable_name] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(1541), + [anon_sym_GT] = ACTIONS(1541), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_AMP_GT] = ACTIONS(1541), + [anon_sym_AMP_GT_GT] = ACTIONS(776), + [anon_sym_LT_AMP] = ACTIONS(776), + [anon_sym_GT_AMP] = ACTIONS(776), + [sym__special_characters] = ACTIONS(1541), + [anon_sym_DQUOTE] = ACTIONS(776), + [anon_sym_DOLLAR] = ACTIONS(1541), + [sym_raw_string] = ACTIONS(776), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(776), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(776), + [anon_sym_BQUOTE] = ACTIONS(776), + [anon_sym_LT_LPAREN] = ACTIONS(776), + [anon_sym_GT_LPAREN] = ACTIONS(776), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1541), }, [416] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(884), - [anon_sym_RBRACE] = ACTIONS(1784), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(1830), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, [417] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(808), + [sym__concat] = ACTIONS(808), + [sym_variable_name] = ACTIONS(808), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_GT_GT] = ACTIONS(808), + [anon_sym_AMP_GT] = ACTIONS(1545), + [anon_sym_AMP_GT_GT] = ACTIONS(808), + [anon_sym_LT_AMP] = ACTIONS(808), + [anon_sym_GT_AMP] = ACTIONS(808), + [sym__special_characters] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(808), + [anon_sym_DOLLAR] = ACTIONS(1545), + [sym_raw_string] = ACTIONS(808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(808), + [anon_sym_BQUOTE] = ACTIONS(808), + [anon_sym_LT_LPAREN] = ACTIONS(808), + [anon_sym_GT_LPAREN] = ACTIONS(808), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1545), }, [418] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1786), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [sym_file_descriptor] = ACTIONS(812), + [sym__concat] = ACTIONS(812), + [sym_variable_name] = ACTIONS(812), + [anon_sym_LT] = ACTIONS(1547), + [anon_sym_GT] = ACTIONS(1547), + [anon_sym_GT_GT] = ACTIONS(812), + [anon_sym_AMP_GT] = ACTIONS(1547), + [anon_sym_AMP_GT_GT] = ACTIONS(812), + [anon_sym_LT_AMP] = ACTIONS(812), + [anon_sym_GT_AMP] = ACTIONS(812), + [sym__special_characters] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR] = ACTIONS(1547), + [sym_raw_string] = ACTIONS(812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(812), + [anon_sym_BQUOTE] = ACTIONS(812), + [anon_sym_LT_LPAREN] = ACTIONS(812), + [anon_sym_GT_LPAREN] = ACTIONS(812), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_word] = ACTIONS(1547), }, [419] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1786), + [sym_file_descriptor] = ACTIONS(816), + [sym__concat] = ACTIONS(816), + [sym_variable_name] = ACTIONS(816), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1549), + [anon_sym_GT_GT] = ACTIONS(816), + [anon_sym_AMP_GT] = ACTIONS(1549), + [anon_sym_AMP_GT_GT] = ACTIONS(816), + [anon_sym_LT_AMP] = ACTIONS(816), + [anon_sym_GT_AMP] = ACTIONS(816), + [sym__special_characters] = ACTIONS(1549), + [anon_sym_DQUOTE] = ACTIONS(816), + [anon_sym_DOLLAR] = ACTIONS(1549), + [sym_raw_string] = ACTIONS(816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(816), + [anon_sym_BQUOTE] = ACTIONS(816), + [anon_sym_LT_LPAREN] = ACTIONS(816), + [anon_sym_GT_LPAREN] = ACTIONS(816), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1549), }, [420] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(1786), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(1832), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), }, [421] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1788), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(917), + [anon_sym_RBRACE] = ACTIONS(1834), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1836), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [422] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1788), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [sym_subscript] = STATE(921), + [sym_variable_name] = ACTIONS(1838), + [anon_sym_DOLLAR] = ACTIONS(1840), + [anon_sym_DASH] = ACTIONS(1840), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1842), + [anon_sym_STAR] = ACTIONS(1840), + [anon_sym_AT] = ACTIONS(1840), + [anon_sym_QMARK] = ACTIONS(1840), + [anon_sym_0] = ACTIONS(1844), + [anon_sym__] = ACTIONS(1844), }, [423] = { - [sym_file_descriptor] = ACTIONS(1790), - [sym__concat] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [anon_sym_PIPE_AMP] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_GT_GT] = ACTIONS(1792), - [anon_sym_AMP_GT] = ACTIONS(1792), - [anon_sym_AMP_GT_GT] = ACTIONS(1792), - [anon_sym_LT_AMP] = ACTIONS(1792), - [anon_sym_GT_AMP] = ACTIONS(1792), - [anon_sym_LT_LT] = ACTIONS(1792), - [anon_sym_LT_LT_DASH] = ACTIONS(1792), - [anon_sym_LT_LT_LT] = ACTIONS(1792), - [sym__special_characters] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1792), - [sym_raw_string] = ACTIONS(1792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1792), - [anon_sym_LT_LPAREN] = ACTIONS(1792), - [anon_sym_GT_LPAREN] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(924), + [anon_sym_RBRACE] = ACTIONS(1846), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1848), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [424] = { - [aux_sym_concatenation_repeat1] = STATE(424), - [sym_file_descriptor] = ACTIONS(1790), - [sym__concat] = ACTIONS(1794), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [anon_sym_PIPE_AMP] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_GT_GT] = ACTIONS(1792), - [anon_sym_AMP_GT] = ACTIONS(1792), - [anon_sym_AMP_GT_GT] = ACTIONS(1792), - [anon_sym_LT_AMP] = ACTIONS(1792), - [anon_sym_GT_AMP] = ACTIONS(1792), - [anon_sym_LT_LT] = ACTIONS(1792), - [anon_sym_LT_LT_DASH] = ACTIONS(1792), - [anon_sym_LT_LT_LT] = ACTIONS(1792), - [sym__special_characters] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1792), - [sym_raw_string] = ACTIONS(1792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1792), - [anon_sym_LT_LPAREN] = ACTIONS(1792), - [anon_sym_GT_LPAREN] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(927), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1852), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [425] = { - [sym__concat] = ACTIONS(796), - [anon_sym_DQUOTE] = ACTIONS(798), - [anon_sym_DOLLAR] = ACTIONS(798), - [sym__string_content] = ACTIONS(1507), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(798), - [anon_sym_BQUOTE] = ACTIONS(798), - [sym_comment] = ACTIONS(178), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1854), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), }, [426] = { - [sym__concat] = ACTIONS(1797), - [anon_sym_DQUOTE] = ACTIONS(1799), - [anon_sym_DOLLAR] = ACTIONS(1799), - [sym__string_content] = ACTIONS(1801), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1799), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1799), - [anon_sym_BQUOTE] = ACTIONS(1799), - [sym_comment] = ACTIONS(178), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1854), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), }, [427] = { - [sym__concat] = ACTIONS(800), - [anon_sym_DQUOTE] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(802), - [sym__string_content] = ACTIONS(1509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(802), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(802), - [anon_sym_BQUOTE] = ACTIONS(802), - [sym_comment] = ACTIONS(178), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(1854), + [sym_comment] = ACTIONS(56), }, [428] = { - [anon_sym_DQUOTE] = ACTIONS(1799), - [anon_sym_DOLLAR] = ACTIONS(1799), - [sym__string_content] = ACTIONS(1801), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1799), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1799), - [anon_sym_BQUOTE] = ACTIONS(1799), - [sym_comment] = ACTIONS(178), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(1854), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), }, [429] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1803), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1856), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), [sym_comment] = ACTIONS(56), }, [430] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(890), - [anon_sym_RBRACE] = ACTIONS(1805), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1856), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), }, [431] = { - [sym_subscript] = STATE(894), - [sym_variable_name] = ACTIONS(1807), - [anon_sym_DOLLAR] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1809), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_AT] = ACTIONS(1809), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_0] = ACTIONS(1813), - [anon_sym__] = ACTIONS(1813), + [sym_file_descriptor] = ACTIONS(1858), + [sym__concat] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [anon_sym_PIPE_AMP] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1860), + [anon_sym_PIPE_PIPE] = ACTIONS(1860), + [anon_sym_EQ_TILDE] = ACTIONS(1860), + [anon_sym_LT] = ACTIONS(1860), + [anon_sym_GT] = ACTIONS(1860), + [anon_sym_GT_GT] = ACTIONS(1860), + [anon_sym_AMP_GT] = ACTIONS(1860), + [anon_sym_AMP_GT_GT] = ACTIONS(1860), + [anon_sym_LT_AMP] = ACTIONS(1860), + [anon_sym_GT_AMP] = ACTIONS(1860), + [anon_sym_LT_LT] = ACTIONS(1860), + [anon_sym_LT_LT_DASH] = ACTIONS(1860), + [anon_sym_LT_LT_LT] = ACTIONS(1860), + [sym__special_characters] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1860), + [anon_sym_DOLLAR] = ACTIONS(1860), + [sym_raw_string] = ACTIONS(1860), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1860), + [anon_sym_BQUOTE] = ACTIONS(1860), + [anon_sym_LT_LPAREN] = ACTIONS(1860), + [anon_sym_GT_LPAREN] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), }, [432] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(896), - [anon_sym_RBRACE] = ACTIONS(1815), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [aux_sym_concatenation_repeat1] = STATE(432), + [sym_file_descriptor] = ACTIONS(1858), + [sym__concat] = ACTIONS(1862), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [anon_sym_PIPE_AMP] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1860), + [anon_sym_PIPE_PIPE] = ACTIONS(1860), + [anon_sym_EQ_TILDE] = ACTIONS(1860), + [anon_sym_LT] = ACTIONS(1860), + [anon_sym_GT] = ACTIONS(1860), + [anon_sym_GT_GT] = ACTIONS(1860), + [anon_sym_AMP_GT] = ACTIONS(1860), + [anon_sym_AMP_GT_GT] = ACTIONS(1860), + [anon_sym_LT_AMP] = ACTIONS(1860), + [anon_sym_GT_AMP] = ACTIONS(1860), + [anon_sym_LT_LT] = ACTIONS(1860), + [anon_sym_LT_LT_DASH] = ACTIONS(1860), + [anon_sym_LT_LT_LT] = ACTIONS(1860), + [sym__special_characters] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1860), + [anon_sym_DOLLAR] = ACTIONS(1860), + [sym_raw_string] = ACTIONS(1860), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1860), + [anon_sym_BQUOTE] = ACTIONS(1860), + [anon_sym_LT_LPAREN] = ACTIONS(1860), + [anon_sym_GT_LPAREN] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), }, [433] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(898), - [anon_sym_RBRACE] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym__concat] = ACTIONS(808), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_DOLLAR] = ACTIONS(810), + [sym__string_content] = ACTIONS(1545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(810), + [anon_sym_BQUOTE] = ACTIONS(810), + [sym_comment] = ACTIONS(182), }, [434] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1819), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(1865), + [anon_sym_DQUOTE] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1867), + [sym__string_content] = ACTIONS(1869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1867), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1867), + [anon_sym_BQUOTE] = ACTIONS(1867), + [sym_comment] = ACTIONS(182), }, [435] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(1819), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym__concat] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_DOLLAR] = ACTIONS(814), + [sym__string_content] = ACTIONS(1547), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(814), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(814), + [anon_sym_BQUOTE] = ACTIONS(814), + [sym_comment] = ACTIONS(182), }, [436] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(1819), - [sym_comment] = ACTIONS(56), + [anon_sym_DQUOTE] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1867), + [sym__string_content] = ACTIONS(1869), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1867), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1867), + [anon_sym_BQUOTE] = ACTIONS(1867), + [sym_comment] = ACTIONS(182), }, [437] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(1819), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(1871), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), }, [438] = { - [sym_file_descriptor] = ACTIONS(1821), - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_GT_GT] = ACTIONS(1823), - [anon_sym_AMP_GT] = ACTIONS(1823), - [anon_sym_AMP_GT_GT] = ACTIONS(1823), - [anon_sym_LT_AMP] = ACTIONS(1823), - [anon_sym_GT_AMP] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_LT_LT_DASH] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [sym__special_characters] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1823), - [sym_raw_string] = ACTIONS(1823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), - [anon_sym_BQUOTE] = ACTIONS(1823), - [anon_sym_LT_LPAREN] = ACTIONS(1823), - [anon_sym_GT_LPAREN] = ACTIONS(1823), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LF] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(934), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1875), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [439] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(1799), - [anon_sym_DOLLAR] = ACTIONS(1825), - [sym__string_content] = ACTIONS(1828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1831), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1834), - [anon_sym_BQUOTE] = ACTIONS(1837), - [sym_comment] = ACTIONS(178), + [sym_subscript] = STATE(938), + [sym_variable_name] = ACTIONS(1877), + [anon_sym_DOLLAR] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1879), + [anon_sym_AT] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(1879), + [anon_sym_0] = ACTIONS(1883), + [anon_sym__] = ACTIONS(1883), }, [440] = { - [sym_concatenation] = STATE(902), - [sym_string] = STATE(901), - [sym_simple_expansion] = STATE(901), - [sym_string_expansion] = STATE(901), - [sym_expansion] = STATE(901), - [sym_command_substitution] = STATE(901), - [sym_process_substitution] = STATE(901), - [sym__special_characters] = ACTIONS(1840), - [anon_sym_DQUOTE] = ACTIONS(390), - [anon_sym_DOLLAR] = ACTIONS(392), - [sym_raw_string] = ACTIONS(1842), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(398), - [anon_sym_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1844), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(941), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1887), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [441] = { - [sym_concatenation] = STATE(912), - [sym_string] = STATE(907), - [sym_simple_expansion] = STATE(907), - [sym_string_expansion] = STATE(907), - [sym_expansion] = STATE(907), - [sym_command_substitution] = STATE(907), - [sym_process_substitution] = STATE(907), - [anon_sym_RBRACE] = ACTIONS(1846), - [sym__special_characters] = ACTIONS(1848), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(1854), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1864), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(944), + [anon_sym_RBRACE] = ACTIONS(1889), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1891), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [442] = { - [sym_file_descriptor] = ACTIONS(1866), - [sym__concat] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [anon_sym_PIPE_AMP] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_GT_GT] = ACTIONS(1868), - [anon_sym_AMP_GT] = ACTIONS(1868), - [anon_sym_AMP_GT_GT] = ACTIONS(1868), - [anon_sym_LT_AMP] = ACTIONS(1868), - [anon_sym_GT_AMP] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_LT_LT_DASH] = ACTIONS(1868), - [anon_sym_LT_LT_LT] = ACTIONS(1868), - [sym__special_characters] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1868), - [sym_raw_string] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), - [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(178), - [sym_word] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1893), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), }, [443] = { - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(1874), - [anon_sym_DQUOTE] = ACTIONS(1870), - [anon_sym_DOLLAR] = ACTIONS(1872), - [sym_raw_string] = ACTIONS(1870), - [anon_sym_POUND] = ACTIONS(1870), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1870), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_SLASH] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1870), - [anon_sym_BQUOTE] = ACTIONS(1870), - [anon_sym_LT_LPAREN] = ACTIONS(1870), - [anon_sym_GT_LPAREN] = ACTIONS(1870), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1874), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(1893), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), }, [444] = { - [aux_sym_concatenation_repeat1] = STATE(914), - [sym__concat] = ACTIONS(1876), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_EQ] = ACTIONS(1880), - [sym__special_characters] = ACTIONS(1882), - [anon_sym_DQUOTE] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(1880), - [sym_raw_string] = ACTIONS(1878), - [anon_sym_POUND] = ACTIONS(1878), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1878), - [anon_sym_COLON] = ACTIONS(1880), - [anon_sym_COLON_QMARK] = ACTIONS(1880), - [anon_sym_COLON_DASH] = ACTIONS(1880), - [anon_sym_PERCENT] = ACTIONS(1880), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1880), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1878), - [anon_sym_BQUOTE] = ACTIONS(1878), - [anon_sym_LT_LPAREN] = ACTIONS(1878), - [anon_sym_GT_LPAREN] = ACTIONS(1878), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(1893), + [sym_comment] = ACTIONS(56), }, [445] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(916), - [anon_sym_DQUOTE] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(1893), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), }, [446] = { - [sym_string] = STATE(919), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(1886), - [anon_sym_POUND] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_AT] = ACTIONS(1886), - [anon_sym_QMARK] = ACTIONS(1886), - [anon_sym_0] = ACTIONS(1890), - [anon_sym__] = ACTIONS(1890), + [sym_file_descriptor] = ACTIONS(1895), + [sym__concat] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_SEMI_SEMI] = ACTIONS(1897), + [anon_sym_PIPE_AMP] = ACTIONS(1897), + [anon_sym_AMP_AMP] = ACTIONS(1897), + [anon_sym_PIPE_PIPE] = ACTIONS(1897), + [anon_sym_EQ_TILDE] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1897), + [anon_sym_GT] = ACTIONS(1897), + [anon_sym_GT_GT] = ACTIONS(1897), + [anon_sym_AMP_GT] = ACTIONS(1897), + [anon_sym_AMP_GT_GT] = ACTIONS(1897), + [anon_sym_LT_AMP] = ACTIONS(1897), + [anon_sym_GT_AMP] = ACTIONS(1897), + [anon_sym_LT_LT] = ACTIONS(1897), + [anon_sym_LT_LT_DASH] = ACTIONS(1897), + [anon_sym_LT_LT_LT] = ACTIONS(1897), + [sym__special_characters] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [anon_sym_DOLLAR] = ACTIONS(1897), + [sym_raw_string] = ACTIONS(1897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1897), + [anon_sym_BQUOTE] = ACTIONS(1897), + [anon_sym_LT_LPAREN] = ACTIONS(1897), + [anon_sym_GT_LPAREN] = ACTIONS(1897), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_LF] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), }, [447] = { - [aux_sym_concatenation_repeat1] = STATE(914), - [sym__concat] = ACTIONS(1876), - [anon_sym_RBRACE] = ACTIONS(1870), - [anon_sym_EQ] = ACTIONS(1872), - [sym__special_characters] = ACTIONS(1874), - [anon_sym_DQUOTE] = ACTIONS(1870), - [anon_sym_DOLLAR] = ACTIONS(1872), - [sym_raw_string] = ACTIONS(1870), - [anon_sym_POUND] = ACTIONS(1870), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1870), - [anon_sym_COLON] = ACTIONS(1872), - [anon_sym_COLON_QMARK] = ACTIONS(1872), - [anon_sym_COLON_DASH] = ACTIONS(1872), - [anon_sym_PERCENT] = ACTIONS(1872), - [anon_sym_SLASH] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1870), - [anon_sym_BQUOTE] = ACTIONS(1870), - [anon_sym_LT_LPAREN] = ACTIONS(1870), - [anon_sym_GT_LPAREN] = ACTIONS(1870), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1874), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1899), + [sym__string_content] = ACTIONS(1902), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1908), + [anon_sym_BQUOTE] = ACTIONS(1911), + [sym_comment] = ACTIONS(182), }, [448] = { - [sym_subscript] = STATE(924), - [sym_variable_name] = ACTIONS(1892), - [anon_sym_DOLLAR] = ACTIONS(1894), - [anon_sym_POUND] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1894), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1894), - [anon_sym_AT] = ACTIONS(1894), - [anon_sym_QMARK] = ACTIONS(1894), - [anon_sym_0] = ACTIONS(1900), - [anon_sym__] = ACTIONS(1900), + [sym_concatenation] = STATE(948), + [sym_string] = STATE(947), + [sym_simple_expansion] = STATE(947), + [sym_string_expansion] = STATE(947), + [sym_expansion] = STATE(947), + [sym_command_substitution] = STATE(947), + [sym_process_substitution] = STATE(947), + [sym__special_characters] = ACTIONS(1914), + [anon_sym_DQUOTE] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(402), + [sym_raw_string] = ACTIONS(1916), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(406), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(408), + [anon_sym_BQUOTE] = ACTIONS(410), + [anon_sym_LT_LPAREN] = ACTIONS(412), + [anon_sym_GT_LPAREN] = ACTIONS(412), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1918), }, [449] = { - [sym_for_statement] = STATE(925), - [sym_while_statement] = STATE(925), - [sym_if_statement] = STATE(925), - [sym_case_statement] = STATE(925), - [sym_function_definition] = STATE(925), - [sym_subshell] = STATE(925), - [sym_pipeline] = STATE(925), - [sym_list] = STATE(925), - [sym_bracket_command] = STATE(925), - [sym_command] = STATE(925), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(926), - [sym_declaration_command] = STATE(925), - [sym_unset_command] = STATE(925), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [sym_concatenation] = STATE(958), + [sym_string] = STATE(953), + [sym_simple_expansion] = STATE(953), + [sym_string_expansion] = STATE(953), + [sym_expansion] = STATE(953), + [sym_command_substitution] = STATE(953), + [sym_process_substitution] = STATE(953), + [anon_sym_RBRACE] = ACTIONS(1920), + [sym__special_characters] = ACTIONS(1922), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(1928), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym_word] = ACTIONS(1938), }, [450] = { - [sym_for_statement] = STATE(927), - [sym_while_statement] = STATE(927), - [sym_if_statement] = STATE(927), - [sym_case_statement] = STATE(927), - [sym_function_definition] = STATE(927), - [sym_subshell] = STATE(927), - [sym_pipeline] = STATE(927), - [sym_list] = STATE(927), - [sym_bracket_command] = STATE(927), - [sym_command] = STATE(927), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(928), - [sym_declaration_command] = STATE(927), - [sym_unset_command] = STATE(927), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), - }, - [451] = { - [sym_for_statement] = STATE(929), - [sym_while_statement] = STATE(929), - [sym_if_statement] = STATE(929), - [sym_case_statement] = STATE(929), - [sym_function_definition] = STATE(929), - [sym_subshell] = STATE(929), - [sym_pipeline] = STATE(929), - [sym_list] = STATE(929), - [sym_bracket_command] = STATE(929), - [sym_command] = STATE(929), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(930), - [sym_declaration_command] = STATE(929), - [sym_unset_command] = STATE(929), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [452] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(1902), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [453] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(1904), - [sym_comment] = ACTIONS(56), - }, - [454] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(935), - [anon_sym_RBRACE] = ACTIONS(1906), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [455] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(937), - [anon_sym_RBRACE] = ACTIONS(1908), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [456] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(938), - [anon_sym_RBRACE] = ACTIONS(1846), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [457] = { - [sym_file_descriptor] = ACTIONS(1910), - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_SEMI_SEMI] = ACTIONS(1912), - [anon_sym_PIPE_AMP] = ACTIONS(1912), - [anon_sym_AMP_AMP] = ACTIONS(1912), - [anon_sym_PIPE_PIPE] = ACTIONS(1912), - [anon_sym_LT] = ACTIONS(1912), - [anon_sym_GT] = ACTIONS(1912), - [anon_sym_GT_GT] = ACTIONS(1912), - [anon_sym_AMP_GT] = ACTIONS(1912), - [anon_sym_AMP_GT_GT] = ACTIONS(1912), - [anon_sym_LT_AMP] = ACTIONS(1912), - [anon_sym_GT_AMP] = ACTIONS(1912), - [anon_sym_LT_LT] = ACTIONS(1912), - [anon_sym_LT_LT_DASH] = ACTIONS(1912), - [anon_sym_LT_LT_LT] = ACTIONS(1912), - [sym__special_characters] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [anon_sym_DOLLAR] = ACTIONS(1912), - [sym_raw_string] = ACTIONS(1912), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1912), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1912), - [anon_sym_BQUOTE] = ACTIONS(1912), - [anon_sym_LT_LPAREN] = ACTIONS(1912), - [anon_sym_GT_LPAREN] = ACTIONS(1912), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_LF] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1912), - }, - [458] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(1914), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [459] = { - [sym_file_descriptor] = ACTIONS(1916), - [sym__concat] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_SEMI_SEMI] = ACTIONS(1918), - [anon_sym_PIPE_AMP] = ACTIONS(1918), - [anon_sym_AMP_AMP] = ACTIONS(1918), - [anon_sym_PIPE_PIPE] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_GT] = ACTIONS(1918), - [anon_sym_GT_GT] = ACTIONS(1918), - [anon_sym_AMP_GT] = ACTIONS(1918), - [anon_sym_AMP_GT_GT] = ACTIONS(1918), - [anon_sym_LT_AMP] = ACTIONS(1918), - [anon_sym_GT_AMP] = ACTIONS(1918), - [anon_sym_LT_LT] = ACTIONS(1918), - [anon_sym_LT_LT_DASH] = ACTIONS(1918), - [anon_sym_LT_LT_LT] = ACTIONS(1918), - [sym__special_characters] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1918), - [anon_sym_DOLLAR] = ACTIONS(1918), - [sym_raw_string] = ACTIONS(1918), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1918), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1918), - [anon_sym_BQUOTE] = ACTIONS(1918), - [anon_sym_LT_LPAREN] = ACTIONS(1918), - [anon_sym_GT_LPAREN] = ACTIONS(1918), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1918), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_LF] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), - }, - [460] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(1846), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [461] = { - [sym_concatenation] = STATE(940), - [sym_string] = STATE(945), - [sym_array] = STATE(940), - [sym_simple_expansion] = STATE(945), - [sym_string_expansion] = STATE(945), - [sym_expansion] = STATE(945), - [sym_command_substitution] = STATE(945), - [sym_process_substitution] = STATE(945), - [sym__empty_value] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [sym__special_characters] = ACTIONS(1924), - [anon_sym_DQUOTE] = ACTIONS(1926), - [anon_sym_DOLLAR] = ACTIONS(1928), - [sym_raw_string] = ACTIONS(1930), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1932), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1934), - [anon_sym_BQUOTE] = ACTIONS(1936), - [anon_sym_LT_LPAREN] = ACTIONS(1938), - [anon_sym_GT_LPAREN] = ACTIONS(1938), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1940), - }, - [462] = { - [sym_file_descriptor] = ACTIONS(428), - [sym_variable_name] = ACTIONS(428), + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(1940), [anon_sym_PIPE] = ACTIONS(1942), - [anon_sym_RPAREN] = ACTIONS(428), - [anon_sym_PIPE_AMP] = ACTIONS(428), - [anon_sym_AMP_AMP] = ACTIONS(428), - [anon_sym_PIPE_PIPE] = ACTIONS(428), + [anon_sym_SEMI_SEMI] = ACTIONS(1942), + [anon_sym_PIPE_AMP] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1942), + [anon_sym_PIPE_PIPE] = ACTIONS(1942), + [anon_sym_EQ_TILDE] = ACTIONS(1942), [anon_sym_LT] = ACTIONS(1942), [anon_sym_GT] = ACTIONS(1942), - [anon_sym_GT_GT] = ACTIONS(428), + [anon_sym_GT_GT] = ACTIONS(1942), [anon_sym_AMP_GT] = ACTIONS(1942), - [anon_sym_AMP_GT_GT] = ACTIONS(428), - [anon_sym_LT_AMP] = ACTIONS(428), - [anon_sym_GT_AMP] = ACTIONS(428), + [anon_sym_AMP_GT_GT] = ACTIONS(1942), + [anon_sym_LT_AMP] = ACTIONS(1942), + [anon_sym_GT_AMP] = ACTIONS(1942), + [anon_sym_LT_LT] = ACTIONS(1942), + [anon_sym_LT_LT_DASH] = ACTIONS(1942), + [anon_sym_LT_LT_LT] = ACTIONS(1942), [sym__special_characters] = ACTIONS(1942), - [anon_sym_DQUOTE] = ACTIONS(428), + [anon_sym_DQUOTE] = ACTIONS(1942), [anon_sym_DOLLAR] = ACTIONS(1942), - [sym_raw_string] = ACTIONS(428), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(428), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(428), - [anon_sym_BQUOTE] = ACTIONS(428), - [anon_sym_LT_LPAREN] = ACTIONS(428), - [anon_sym_GT_LPAREN] = ACTIONS(428), - [sym_comment] = ACTIONS(56), + [sym_raw_string] = ACTIONS(1942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1942), + [anon_sym_BQUOTE] = ACTIONS(1942), + [anon_sym_LT_LPAREN] = ACTIONS(1942), + [anon_sym_GT_LPAREN] = ACTIONS(1942), + [sym_comment] = ACTIONS(182), [sym_word] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + }, + [451] = { + [anon_sym_RBRACE] = ACTIONS(1944), + [anon_sym_EQ] = ACTIONS(1946), + [sym__special_characters] = ACTIONS(1948), + [anon_sym_DQUOTE] = ACTIONS(1944), + [anon_sym_DOLLAR] = ACTIONS(1946), + [sym_raw_string] = ACTIONS(1944), + [anon_sym_POUND] = ACTIONS(1944), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1944), + [anon_sym_COLON] = ACTIONS(1946), + [anon_sym_COLON_QMARK] = ACTIONS(1946), + [anon_sym_COLON_DASH] = ACTIONS(1946), + [anon_sym_PERCENT] = ACTIONS(1946), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1944), + [anon_sym_BQUOTE] = ACTIONS(1944), + [anon_sym_LT_LPAREN] = ACTIONS(1944), + [anon_sym_GT_LPAREN] = ACTIONS(1944), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1948), + }, + [452] = { + [aux_sym_concatenation_repeat1] = STATE(960), + [sym__concat] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1952), + [anon_sym_EQ] = ACTIONS(1954), + [sym__special_characters] = ACTIONS(1956), + [anon_sym_DQUOTE] = ACTIONS(1952), + [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_raw_string] = ACTIONS(1952), + [anon_sym_POUND] = ACTIONS(1952), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1952), + [anon_sym_COLON] = ACTIONS(1954), + [anon_sym_COLON_QMARK] = ACTIONS(1954), + [anon_sym_COLON_DASH] = ACTIONS(1954), + [anon_sym_PERCENT] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1952), + [anon_sym_BQUOTE] = ACTIONS(1952), + [anon_sym_LT_LPAREN] = ACTIONS(1952), + [anon_sym_GT_LPAREN] = ACTIONS(1952), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1956), + }, + [453] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(962), + [anon_sym_DQUOTE] = ACTIONS(1958), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [454] = { + [sym_string] = STATE(965), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(1960), + [anon_sym_DASH] = ACTIONS(1960), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1962), + [anon_sym_STAR] = ACTIONS(1960), + [anon_sym_AT] = ACTIONS(1960), + [anon_sym_QMARK] = ACTIONS(1960), + [anon_sym_0] = ACTIONS(1964), + [anon_sym__] = ACTIONS(1964), + }, + [455] = { + [aux_sym_concatenation_repeat1] = STATE(960), + [sym__concat] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1944), + [anon_sym_EQ] = ACTIONS(1946), + [sym__special_characters] = ACTIONS(1948), + [anon_sym_DQUOTE] = ACTIONS(1944), + [anon_sym_DOLLAR] = ACTIONS(1946), + [sym_raw_string] = ACTIONS(1944), + [anon_sym_POUND] = ACTIONS(1944), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1944), + [anon_sym_COLON] = ACTIONS(1946), + [anon_sym_COLON_QMARK] = ACTIONS(1946), + [anon_sym_COLON_DASH] = ACTIONS(1946), + [anon_sym_PERCENT] = ACTIONS(1946), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1944), + [anon_sym_BQUOTE] = ACTIONS(1944), + [anon_sym_LT_LPAREN] = ACTIONS(1944), + [anon_sym_GT_LPAREN] = ACTIONS(1944), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1948), + }, + [456] = { + [sym_subscript] = STATE(970), + [sym_variable_name] = ACTIONS(1966), + [anon_sym_DOLLAR] = ACTIONS(1968), + [anon_sym_POUND] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1968), + [anon_sym_AT] = ACTIONS(1968), + [anon_sym_QMARK] = ACTIONS(1968), + [anon_sym_0] = ACTIONS(1974), + [anon_sym__] = ACTIONS(1974), + }, + [457] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(1976), + }, + [458] = { + [sym_for_statement] = STATE(972), + [sym_while_statement] = STATE(972), + [sym_if_statement] = STATE(972), + [sym_case_statement] = STATE(972), + [sym_function_definition] = STATE(972), + [sym_subshell] = STATE(972), + [sym_pipeline] = STATE(972), + [sym_list] = STATE(972), + [sym_command] = STATE(972), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(972), + [sym_variable_assignment] = STATE(973), + [sym_declaration_command] = STATE(972), + [sym_unset_command] = STATE(972), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [459] = { + [sym_for_statement] = STATE(974), + [sym_while_statement] = STATE(974), + [sym_if_statement] = STATE(974), + [sym_case_statement] = STATE(974), + [sym_function_definition] = STATE(974), + [sym_subshell] = STATE(974), + [sym_pipeline] = STATE(974), + [sym_list] = STATE(974), + [sym_command] = STATE(974), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(974), + [sym_variable_assignment] = STATE(975), + [sym_declaration_command] = STATE(974), + [sym_unset_command] = STATE(974), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), + }, + [460] = { + [sym_for_statement] = STATE(976), + [sym_while_statement] = STATE(976), + [sym_if_statement] = STATE(976), + [sym_case_statement] = STATE(976), + [sym_function_definition] = STATE(976), + [sym_subshell] = STATE(976), + [sym_pipeline] = STATE(976), + [sym_list] = STATE(976), + [sym_command] = STATE(976), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(976), + [sym_variable_assignment] = STATE(977), + [sym_declaration_command] = STATE(976), + [sym_unset_command] = STATE(976), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [461] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [462] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(1980), + [sym_comment] = ACTIONS(56), }, [463] = { - [anon_sym_in] = ACTIONS(1944), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(983), + [anon_sym_RBRACE] = ACTIONS(1982), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1984), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [464] = { - [sym_do_group] = STATE(952), - [anon_sym_do] = ACTIONS(1946), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(986), + [anon_sym_RBRACE] = ACTIONS(1986), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1988), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [465] = { - [anon_sym_then] = ACTIONS(1948), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(988), + [anon_sym_RBRACE] = ACTIONS(1920), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(1990), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [466] = { - [aux_sym_concatenation_repeat1] = STATE(241), - [sym__concat] = ACTIONS(440), - [anon_sym_in] = ACTIONS(1950), - [anon_sym_SEMI_SEMI] = ACTIONS(1952), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1952), - [anon_sym_LF] = ACTIONS(1952), - [anon_sym_AMP] = ACTIONS(1952), + [sym_file_descriptor] = ACTIONS(1992), + [sym__concat] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(1994), + [anon_sym_SEMI_SEMI] = ACTIONS(1994), + [anon_sym_PIPE_AMP] = ACTIONS(1994), + [anon_sym_AMP_AMP] = ACTIONS(1994), + [anon_sym_PIPE_PIPE] = ACTIONS(1994), + [anon_sym_EQ_TILDE] = ACTIONS(1994), + [anon_sym_LT] = ACTIONS(1994), + [anon_sym_GT] = ACTIONS(1994), + [anon_sym_GT_GT] = ACTIONS(1994), + [anon_sym_AMP_GT] = ACTIONS(1994), + [anon_sym_AMP_GT_GT] = ACTIONS(1994), + [anon_sym_LT_AMP] = ACTIONS(1994), + [anon_sym_GT_AMP] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1994), + [anon_sym_LT_LT_DASH] = ACTIONS(1994), + [anon_sym_LT_LT_LT] = ACTIONS(1994), + [sym__special_characters] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [anon_sym_DOLLAR] = ACTIONS(1994), + [sym_raw_string] = ACTIONS(1994), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1994), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1994), + [anon_sym_BQUOTE] = ACTIONS(1994), + [anon_sym_LT_LPAREN] = ACTIONS(1994), + [anon_sym_GT_LPAREN] = ACTIONS(1994), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_LF] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), }, [467] = { - [aux_sym_concatenation_repeat1] = STATE(241), - [sym__concat] = ACTIONS(440), - [anon_sym_in] = ACTIONS(1954), - [anon_sym_SEMI_SEMI] = ACTIONS(1956), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1956), - [anon_sym_LF] = ACTIONS(1956), - [anon_sym_AMP] = ACTIONS(1956), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(1996), }, [468] = { - [anon_sym_in] = ACTIONS(1954), - [anon_sym_SEMI_SEMI] = ACTIONS(1956), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1956), - [anon_sym_LF] = ACTIONS(1956), - [anon_sym_AMP] = ACTIONS(1956), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(1998), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [469] = { - [sym_compound_statement] = STATE(960), - [anon_sym_LPAREN] = ACTIONS(1958), - [anon_sym_LBRACE] = ACTIONS(1960), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(2000), + [sym__concat] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [anon_sym_PIPE_AMP] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_PIPE_PIPE] = ACTIONS(2002), + [anon_sym_EQ_TILDE] = ACTIONS(2002), + [anon_sym_LT] = ACTIONS(2002), + [anon_sym_GT] = ACTIONS(2002), + [anon_sym_GT_GT] = ACTIONS(2002), + [anon_sym_AMP_GT] = ACTIONS(2002), + [anon_sym_AMP_GT_GT] = ACTIONS(2002), + [anon_sym_LT_AMP] = ACTIONS(2002), + [anon_sym_GT_AMP] = ACTIONS(2002), + [anon_sym_LT_LT] = ACTIONS(2002), + [anon_sym_LT_LT_DASH] = ACTIONS(2002), + [anon_sym_LT_LT_LT] = ACTIONS(2002), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2002), + [anon_sym_BQUOTE] = ACTIONS(2002), + [anon_sym_LT_LPAREN] = ACTIONS(2002), + [anon_sym_GT_LPAREN] = ACTIONS(2002), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2002), }, [470] = { - [anon_sym_PIPE] = ACTIONS(532), - [anon_sym_RPAREN] = ACTIONS(1962), - [anon_sym_SEMI_SEMI] = ACTIONS(1964), - [anon_sym_PIPE_AMP] = ACTIONS(532), - [anon_sym_AMP_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(538), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_LF] = ACTIONS(1964), - [anon_sym_AMP] = ACTIONS(1964), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(2004), }, [471] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(532), - [anon_sym_RPAREN] = ACTIONS(1962), - [anon_sym_SEMI_SEMI] = ACTIONS(1964), - [anon_sym_PIPE_AMP] = ACTIONS(532), - [anon_sym_AMP_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_AMP_GT] = ACTIONS(370), - [anon_sym_AMP_GT_GT] = ACTIONS(370), - [anon_sym_LT_AMP] = ACTIONS(370), - [anon_sym_GT_AMP] = ACTIONS(370), - [sym__special_characters] = ACTIONS(370), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_DOLLAR] = ACTIONS(370), - [sym_raw_string] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(370), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(370), - [anon_sym_BQUOTE] = ACTIONS(370), - [anon_sym_LT_LPAREN] = ACTIONS(370), - [anon_sym_GT_LPAREN] = ACTIONS(370), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(370), - [anon_sym_SEMI] = ACTIONS(1964), - [anon_sym_LF] = ACTIONS(1964), - [anon_sym_AMP] = ACTIONS(1964), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(1920), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [472] = { + [sym_concatenation] = STATE(992), + [sym_string] = STATE(997), + [sym_array] = STATE(992), + [sym_simple_expansion] = STATE(997), + [sym_string_expansion] = STATE(997), + [sym_expansion] = STATE(997), + [sym_command_substitution] = STATE(997), + [sym_process_substitution] = STATE(997), + [sym__empty_value] = ACTIONS(2006), + [anon_sym_LPAREN] = ACTIONS(2008), + [sym__special_characters] = ACTIONS(2010), + [anon_sym_DQUOTE] = ACTIONS(2012), + [anon_sym_DOLLAR] = ACTIONS(2014), + [sym_raw_string] = ACTIONS(2016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2020), + [anon_sym_BQUOTE] = ACTIONS(2022), + [anon_sym_LT_LPAREN] = ACTIONS(2024), + [anon_sym_GT_LPAREN] = ACTIONS(2024), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2026), + }, + [473] = { + [sym_file_descriptor] = ACTIONS(438), + [sym_variable_name] = ACTIONS(438), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_RPAREN] = ACTIONS(438), + [anon_sym_PIPE_AMP] = ACTIONS(438), + [anon_sym_AMP_AMP] = ACTIONS(438), + [anon_sym_PIPE_PIPE] = ACTIONS(438), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_GT] = ACTIONS(2028), + [anon_sym_GT_GT] = ACTIONS(438), + [anon_sym_AMP_GT] = ACTIONS(2028), + [anon_sym_AMP_GT_GT] = ACTIONS(438), + [anon_sym_LT_AMP] = ACTIONS(438), + [anon_sym_GT_AMP] = ACTIONS(438), + [sym__special_characters] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(438), + [anon_sym_DOLLAR] = ACTIONS(2028), + [sym_raw_string] = ACTIONS(438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(438), + [anon_sym_BQUOTE] = ACTIONS(438), + [anon_sym_LT_LPAREN] = ACTIONS(438), + [anon_sym_GT_LPAREN] = ACTIONS(438), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2028), + }, + [474] = { + [anon_sym_in] = ACTIONS(2030), + [sym_comment] = ACTIONS(56), + }, + [475] = { + [sym_do_group] = STATE(1004), + [anon_sym_do] = ACTIONS(2032), + [sym_comment] = ACTIONS(56), + }, + [476] = { + [anon_sym_then] = ACTIONS(2034), + [sym_comment] = ACTIONS(56), + }, + [477] = { + [aux_sym_concatenation_repeat1] = STATE(246), + [sym__concat] = ACTIONS(450), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_SEMI_SEMI] = ACTIONS(2038), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_LF] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + }, + [478] = { + [aux_sym_concatenation_repeat1] = STATE(246), + [sym__concat] = ACTIONS(450), + [anon_sym_in] = ACTIONS(2040), + [anon_sym_SEMI_SEMI] = ACTIONS(2042), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2042), + [anon_sym_LF] = ACTIONS(2042), + [anon_sym_AMP] = ACTIONS(2042), + }, + [479] = { + [anon_sym_in] = ACTIONS(2040), + [anon_sym_SEMI_SEMI] = ACTIONS(2042), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2042), + [anon_sym_LF] = ACTIONS(2042), + [anon_sym_AMP] = ACTIONS(2042), + }, + [480] = { + [sym_compound_statement] = STATE(1012), + [anon_sym_LPAREN] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2046), + [sym_comment] = ACTIONS(56), + }, + [481] = { + [anon_sym_PIPE] = ACTIONS(542), + [anon_sym_RPAREN] = ACTIONS(2048), + [anon_sym_SEMI_SEMI] = ACTIONS(2050), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(548), + [anon_sym_PIPE_PIPE] = ACTIONS(548), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2050), + [anon_sym_LF] = ACTIONS(2050), + [anon_sym_AMP] = ACTIONS(2050), + }, + [482] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(542), + [anon_sym_RPAREN] = ACTIONS(2048), + [anon_sym_SEMI_SEMI] = ACTIONS(2050), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(548), + [anon_sym_PIPE_PIPE] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(380), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(380), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(380), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(2050), + [anon_sym_LF] = ACTIONS(2050), + [anon_sym_AMP] = ACTIONS(2050), + }, + [483] = { [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(963), - [sym_while_statement] = STATE(963), - [sym_if_statement] = STATE(963), - [sym_case_statement] = STATE(963), - [sym_function_definition] = STATE(963), - [sym_subshell] = STATE(963), - [sym_pipeline] = STATE(963), - [sym_list] = STATE(963), - [sym_bracket_command] = STATE(963), - [sym_command] = STATE(963), - [sym_command_name] = STATE(68), - [sym_variable_assignment] = STATE(964), - [sym_declaration_command] = STATE(963), - [sym_unset_command] = STATE(963), - [sym_subscript] = STATE(70), + [sym_for_statement] = STATE(1015), + [sym_while_statement] = STATE(1015), + [sym_if_statement] = STATE(1015), + [sym_case_statement] = STATE(1015), + [sym_function_definition] = STATE(1015), + [sym_subshell] = STATE(1015), + [sym_pipeline] = STATE(1015), + [sym_list] = STATE(1015), + [sym_command] = STATE(1015), + [sym_command_name] = STATE(70), + [sym_bracket_command] = STATE(1015), + [sym_variable_assignment] = STATE(1016), + [sym_declaration_command] = STATE(1015), + [sym_unset_command] = STATE(1015), + [sym_subscript] = STATE(72), [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(318), - [aux_sym_command_repeat1] = STATE(72), + [sym_string] = STATE(63), + [sym_simple_expansion] = STATE(63), + [sym_string_expansion] = STATE(63), + [sym_expansion] = STATE(63), + [sym_command_substitution] = STATE(63), + [sym_process_substitution] = STATE(63), + [aux_sym_program_repeat1] = STATE(326), + [aux_sym_command_repeat1] = STATE(74), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(90), [anon_sym_for] = ACTIONS(16), @@ -21403,15 +22947,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(94), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(96), - [anon_sym_typeset] = ACTIONS(96), - [anon_sym_export] = ACTIONS(96), - [anon_sym_readonly] = ACTIONS(96), - [anon_sym_local] = ACTIONS(96), - [anon_sym_unset] = ACTIONS(98), - [anon_sym_unsetenv] = ACTIONS(98), + [anon_sym_LBRACK] = ACTIONS(96), + [anon_sym_LBRACK_LBRACK] = ACTIONS(98), + [anon_sym_declare] = ACTIONS(100), + [anon_sym_typeset] = ACTIONS(100), + [anon_sym_export] = ACTIONS(100), + [anon_sym_readonly] = ACTIONS(100), + [anon_sym_local] = ACTIONS(100), + [anon_sym_unset] = ACTIONS(102), + [anon_sym_unsetenv] = ACTIONS(102), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -21419,540 +22963,259 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(100), - [anon_sym_DQUOTE] = ACTIONS(102), - [anon_sym_DOLLAR] = ACTIONS(104), - [sym_raw_string] = ACTIONS(106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(108), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(110), - [anon_sym_BQUOTE] = ACTIONS(112), - [anon_sym_LT_LPAREN] = ACTIONS(114), - [anon_sym_GT_LPAREN] = ACTIONS(114), + [sym__special_characters] = ACTIONS(104), + [anon_sym_DQUOTE] = ACTIONS(106), + [anon_sym_DOLLAR] = ACTIONS(108), + [sym_raw_string] = ACTIONS(110), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(112), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(114), + [anon_sym_BQUOTE] = ACTIONS(116), + [anon_sym_LT_LPAREN] = ACTIONS(118), + [anon_sym_GT_LPAREN] = ACTIONS(118), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(116), - }, - [473] = { - [sym_concatenation] = STATE(82), - [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), - [aux_sym_bracket_command_repeat1] = STATE(342), - [anon_sym_EQ_TILDE] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(1966), - [sym__special_characters] = ACTIONS(618), - [anon_sym_DQUOTE] = ACTIONS(122), - [anon_sym_DOLLAR] = ACTIONS(124), - [sym_raw_string] = ACTIONS(126), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(128), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(130), - [anon_sym_BQUOTE] = ACTIONS(132), - [anon_sym_LT_LPAREN] = ACTIONS(134), - [anon_sym_GT_LPAREN] = ACTIONS(134), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(136), - }, - [474] = { - [sym_concatenation] = STATE(93), - [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), - [aux_sym_bracket_command_repeat1] = STATE(364), - [anon_sym_EQ_TILDE] = ACTIONS(138), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1966), - [sym__special_characters] = ACTIONS(658), - [anon_sym_DQUOTE] = ACTIONS(142), - [anon_sym_DOLLAR] = ACTIONS(144), - [sym_raw_string] = ACTIONS(146), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(148), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(150), - [anon_sym_BQUOTE] = ACTIONS(152), - [anon_sym_LT_LPAREN] = ACTIONS(154), - [anon_sym_GT_LPAREN] = ACTIONS(154), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(156), - }, - [475] = { - [sym__assignment] = STATE(967), - [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_PLUS_EQ] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - }, - [476] = { - [aux_sym_concatenation_repeat1] = STATE(969), - [sym__concat] = ACTIONS(1970), - [sym_variable_name] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_RPAREN] = ACTIONS(664), - [anon_sym_PIPE_AMP] = ACTIONS(664), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [sym__special_characters] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(664), - [anon_sym_DOLLAR] = ACTIONS(1972), - [sym_raw_string] = ACTIONS(664), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(664), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(664), - [anon_sym_BQUOTE] = ACTIONS(664), - [anon_sym_LT_LPAREN] = ACTIONS(664), - [anon_sym_GT_LPAREN] = ACTIONS(664), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1972), - [sym_word] = ACTIONS(666), - }, - [477] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(971), - [anon_sym_DQUOTE] = ACTIONS(1974), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [478] = { - [sym_string] = STATE(974), - [anon_sym_DQUOTE] = ACTIONS(868), - [anon_sym_DOLLAR] = ACTIONS(1976), - [anon_sym_POUND] = ACTIONS(1976), - [anon_sym_DASH] = ACTIONS(1976), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1978), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_AT] = ACTIONS(1976), - [anon_sym_QMARK] = ACTIONS(1976), - [anon_sym_0] = ACTIONS(1980), - [anon_sym__] = ACTIONS(1980), - }, - [479] = { - [aux_sym_concatenation_repeat1] = STATE(969), - [sym__concat] = ACTIONS(1970), - [sym_variable_name] = ACTIONS(678), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_RPAREN] = ACTIONS(678), - [anon_sym_PIPE_AMP] = ACTIONS(678), - [anon_sym_AMP_AMP] = ACTIONS(678), - [anon_sym_PIPE_PIPE] = ACTIONS(678), - [sym__special_characters] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(678), - [anon_sym_DOLLAR] = ACTIONS(1982), - [sym_raw_string] = ACTIONS(678), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(678), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(678), - [anon_sym_BQUOTE] = ACTIONS(678), - [anon_sym_LT_LPAREN] = ACTIONS(678), - [anon_sym_GT_LPAREN] = ACTIONS(678), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1982), - [sym_word] = ACTIONS(680), - }, - [480] = { - [sym_subscript] = STATE(979), - [sym_variable_name] = ACTIONS(1984), - [anon_sym_DOLLAR] = ACTIONS(1986), - [anon_sym_POUND] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1986), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1990), - [anon_sym_STAR] = ACTIONS(1986), - [anon_sym_AT] = ACTIONS(1986), - [anon_sym_QMARK] = ACTIONS(1986), - [anon_sym_0] = ACTIONS(1992), - [anon_sym__] = ACTIONS(1992), - }, - [481] = { - [sym_for_statement] = STATE(980), - [sym_while_statement] = STATE(980), - [sym_if_statement] = STATE(980), - [sym_case_statement] = STATE(980), - [sym_function_definition] = STATE(980), - [sym_subshell] = STATE(980), - [sym_pipeline] = STATE(980), - [sym_list] = STATE(980), - [sym_bracket_command] = STATE(980), - [sym_command] = STATE(980), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(981), - [sym_declaration_command] = STATE(980), - [sym_unset_command] = STATE(980), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [482] = { - [sym_for_statement] = STATE(982), - [sym_while_statement] = STATE(982), - [sym_if_statement] = STATE(982), - [sym_case_statement] = STATE(982), - [sym_function_definition] = STATE(982), - [sym_subshell] = STATE(982), - [sym_pipeline] = STATE(982), - [sym_list] = STATE(982), - [sym_bracket_command] = STATE(982), - [sym_command] = STATE(982), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(983), - [sym_declaration_command] = STATE(982), - [sym_unset_command] = STATE(982), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), - }, - [483] = { - [sym_for_statement] = STATE(984), - [sym_while_statement] = STATE(984), - [sym_if_statement] = STATE(984), - [sym_case_statement] = STATE(984), - [sym_function_definition] = STATE(984), - [sym_subshell] = STATE(984), - [sym_pipeline] = STATE(984), - [sym_list] = STATE(984), - [sym_bracket_command] = STATE(984), - [sym_command] = STATE(984), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(985), - [sym_declaration_command] = STATE(984), - [sym_unset_command] = STATE(984), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym_word] = ACTIONS(120), }, [484] = { - [sym_variable_name] = ACTIONS(692), - [anon_sym_PIPE] = ACTIONS(1994), - [anon_sym_RPAREN] = ACTIONS(692), - [anon_sym_PIPE_AMP] = ACTIONS(692), - [anon_sym_AMP_AMP] = ACTIONS(692), - [anon_sym_PIPE_PIPE] = ACTIONS(692), - [sym__special_characters] = ACTIONS(1994), - [anon_sym_DQUOTE] = ACTIONS(692), - [anon_sym_DOLLAR] = ACTIONS(1994), - [sym_raw_string] = ACTIONS(692), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(692), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(692), - [anon_sym_BQUOTE] = ACTIONS(692), - [anon_sym_LT_LPAREN] = ACTIONS(692), - [anon_sym_GT_LPAREN] = ACTIONS(692), + [sym_concatenation] = STATE(84), + [sym_string] = STATE(79), + [sym_simple_expansion] = STATE(79), + [sym_string_expansion] = STATE(79), + [sym_expansion] = STATE(79), + [sym_command_substitution] = STATE(79), + [sym_process_substitution] = STATE(79), + [aux_sym_command_repeat2] = STATE(350), + [anon_sym_EQ_TILDE] = ACTIONS(122), + [anon_sym_RBRACK] = ACTIONS(2052), + [sym__special_characters] = ACTIONS(630), + [anon_sym_DQUOTE] = ACTIONS(126), + [anon_sym_DOLLAR] = ACTIONS(128), + [sym_raw_string] = ACTIONS(130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(132), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(134), + [anon_sym_BQUOTE] = ACTIONS(136), + [anon_sym_LT_LPAREN] = ACTIONS(138), + [anon_sym_GT_LPAREN] = ACTIONS(138), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1994), - [sym_word] = ACTIONS(694), + [sym_word] = ACTIONS(140), }, [485] = { - [sym_variable_name] = ACTIONS(678), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_RPAREN] = ACTIONS(678), - [anon_sym_PIPE_AMP] = ACTIONS(678), - [anon_sym_AMP_AMP] = ACTIONS(678), - [anon_sym_PIPE_PIPE] = ACTIONS(678), - [sym__special_characters] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(678), - [anon_sym_DOLLAR] = ACTIONS(1982), - [sym_raw_string] = ACTIONS(678), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(678), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(678), - [anon_sym_BQUOTE] = ACTIONS(678), - [anon_sym_LT_LPAREN] = ACTIONS(678), - [anon_sym_GT_LPAREN] = ACTIONS(678), + [sym_concatenation] = STATE(95), + [sym_string] = STATE(90), + [sym_simple_expansion] = STATE(90), + [sym_string_expansion] = STATE(90), + [sym_expansion] = STATE(90), + [sym_command_substitution] = STATE(90), + [sym_process_substitution] = STATE(90), + [aux_sym_command_repeat2] = STATE(372), + [anon_sym_EQ_TILDE] = ACTIONS(142), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2052), + [sym__special_characters] = ACTIONS(670), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [sym_raw_string] = ACTIONS(150), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(156), + [anon_sym_LT_LPAREN] = ACTIONS(158), + [anon_sym_GT_LPAREN] = ACTIONS(158), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1982), - [sym_word] = ACTIONS(680), + [sym_word] = ACTIONS(160), }, [486] = { - [sym__assignment] = STATE(967), - [anon_sym_EQ] = ACTIONS(1968), - [anon_sym_PLUS_EQ] = ACTIONS(1968), + [sym__assignment] = STATE(1019), + [anon_sym_LBRACK] = ACTIONS(64), + [anon_sym_EQ] = ACTIONS(2054), + [anon_sym_PLUS_EQ] = ACTIONS(2054), [sym_comment] = ACTIONS(56), }, [487] = { - [sym_variable_assignment] = STATE(485), - [sym_subscript] = STATE(486), - [sym_concatenation] = STATE(485), - [sym_string] = STATE(479), - [sym_simple_expansion] = STATE(479), - [sym_string_expansion] = STATE(479), - [sym_expansion] = STATE(479), - [sym_command_substitution] = STATE(479), - [sym_process_substitution] = STATE(479), - [aux_sym_declaration_command_repeat1] = STATE(986), - [sym_variable_name] = ACTIONS(860), - [anon_sym_PIPE] = ACTIONS(1996), - [anon_sym_RPAREN] = ACTIONS(1998), - [anon_sym_PIPE_AMP] = ACTIONS(1998), - [anon_sym_AMP_AMP] = ACTIONS(1998), - [anon_sym_PIPE_PIPE] = ACTIONS(1998), - [sym__special_characters] = ACTIONS(866), - [anon_sym_DQUOTE] = ACTIONS(868), - [anon_sym_DOLLAR] = ACTIONS(870), - [sym_raw_string] = ACTIONS(872), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(878), - [anon_sym_LT_LPAREN] = ACTIONS(880), - [anon_sym_GT_LPAREN] = ACTIONS(880), + [aux_sym_concatenation_repeat1] = STATE(1021), + [sym__concat] = ACTIONS(2056), + [sym_variable_name] = ACTIONS(676), + [anon_sym_PIPE] = ACTIONS(2058), + [anon_sym_RPAREN] = ACTIONS(676), + [anon_sym_PIPE_AMP] = ACTIONS(676), + [anon_sym_AMP_AMP] = ACTIONS(676), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [sym__special_characters] = ACTIONS(2058), + [anon_sym_DQUOTE] = ACTIONS(676), + [anon_sym_DOLLAR] = ACTIONS(2058), + [sym_raw_string] = ACTIONS(676), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(676), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(676), + [anon_sym_BQUOTE] = ACTIONS(676), + [anon_sym_LT_LPAREN] = ACTIONS(676), + [anon_sym_GT_LPAREN] = ACTIONS(676), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(882), - [sym_word] = ACTIONS(884), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2058), + [sym_word] = ACTIONS(678), }, [488] = { - [aux_sym_concatenation_repeat1] = STATE(988), - [sym__concat] = ACTIONS(2000), - [anon_sym_PIPE] = ACTIONS(2002), - [anon_sym_RPAREN] = ACTIONS(2004), - [anon_sym_PIPE_AMP] = ACTIONS(2004), - [anon_sym_AMP_AMP] = ACTIONS(2004), - [anon_sym_PIPE_PIPE] = ACTIONS(2004), - [sym__special_characters] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2004), - [anon_sym_DOLLAR] = ACTIONS(2002), - [sym_raw_string] = ACTIONS(2004), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2004), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2004), - [anon_sym_BQUOTE] = ACTIONS(2004), - [anon_sym_LT_LPAREN] = ACTIONS(2004), - [anon_sym_GT_LPAREN] = ACTIONS(2004), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2002), - [sym_word] = ACTIONS(700), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(1023), + [anon_sym_DQUOTE] = ACTIONS(2060), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, [489] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(990), - [anon_sym_DQUOTE] = ACTIONS(2006), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym_string] = STATE(1026), + [anon_sym_DQUOTE] = ACTIONS(886), + [anon_sym_DOLLAR] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2062), + [sym_comment] = ACTIONS(182), + [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), }, [490] = { - [sym_string] = STATE(993), - [anon_sym_DQUOTE] = ACTIONS(892), - [anon_sym_DOLLAR] = ACTIONS(2008), - [anon_sym_POUND] = ACTIONS(2008), - [anon_sym_DASH] = ACTIONS(2008), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2010), - [anon_sym_STAR] = ACTIONS(2008), - [anon_sym_AT] = ACTIONS(2008), - [anon_sym_QMARK] = ACTIONS(2008), - [anon_sym_0] = ACTIONS(2012), - [anon_sym__] = ACTIONS(2012), + [aux_sym_concatenation_repeat1] = STATE(1021), + [sym__concat] = ACTIONS(2056), + [sym_variable_name] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_RPAREN] = ACTIONS(690), + [anon_sym_PIPE_AMP] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [sym__special_characters] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(2068), + [sym_raw_string] = ACTIONS(690), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(690), + [anon_sym_BQUOTE] = ACTIONS(690), + [anon_sym_LT_LPAREN] = ACTIONS(690), + [anon_sym_GT_LPAREN] = ACTIONS(690), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2068), + [sym_word] = ACTIONS(692), }, [491] = { - [aux_sym_concatenation_repeat1] = STATE(988), - [sym__concat] = ACTIONS(2000), - [anon_sym_PIPE] = ACTIONS(2014), - [anon_sym_RPAREN] = ACTIONS(2016), - [anon_sym_PIPE_AMP] = ACTIONS(2016), - [anon_sym_AMP_AMP] = ACTIONS(2016), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [sym__special_characters] = ACTIONS(2014), - [anon_sym_DQUOTE] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(2014), - [sym_raw_string] = ACTIONS(2016), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2016), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2016), - [anon_sym_BQUOTE] = ACTIONS(2016), - [anon_sym_LT_LPAREN] = ACTIONS(2016), - [anon_sym_GT_LPAREN] = ACTIONS(2016), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2014), - [sym_word] = ACTIONS(712), + [sym_subscript] = STATE(1031), + [sym_variable_name] = ACTIONS(2070), + [anon_sym_DOLLAR] = ACTIONS(2072), + [anon_sym_POUND] = ACTIONS(2074), + [anon_sym_DASH] = ACTIONS(2072), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2076), + [anon_sym_STAR] = ACTIONS(2072), + [anon_sym_AT] = ACTIONS(2072), + [anon_sym_QMARK] = ACTIONS(2072), + [anon_sym_0] = ACTIONS(2078), + [anon_sym__] = ACTIONS(2078), }, [492] = { - [sym_subscript] = STATE(998), - [sym_variable_name] = ACTIONS(2018), - [anon_sym_DOLLAR] = ACTIONS(2020), - [anon_sym_POUND] = ACTIONS(2022), - [anon_sym_DASH] = ACTIONS(2020), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2024), - [anon_sym_STAR] = ACTIONS(2020), - [anon_sym_AT] = ACTIONS(2020), - [anon_sym_QMARK] = ACTIONS(2020), - [anon_sym_0] = ACTIONS(2026), - [anon_sym__] = ACTIONS(2026), + [sym_for_statement] = STATE(1032), + [sym_while_statement] = STATE(1032), + [sym_if_statement] = STATE(1032), + [sym_case_statement] = STATE(1032), + [sym_function_definition] = STATE(1032), + [sym_subshell] = STATE(1032), + [sym_pipeline] = STATE(1032), + [sym_list] = STATE(1032), + [sym_command] = STATE(1032), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1032), + [sym_variable_assignment] = STATE(1033), + [sym_declaration_command] = STATE(1032), + [sym_unset_command] = STATE(1032), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), }, [493] = { - [sym_for_statement] = STATE(999), - [sym_while_statement] = STATE(999), - [sym_if_statement] = STATE(999), - [sym_case_statement] = STATE(999), - [sym_function_definition] = STATE(999), - [sym_subshell] = STATE(999), - [sym_pipeline] = STATE(999), - [sym_list] = STATE(999), - [sym_bracket_command] = STATE(999), - [sym_command] = STATE(999), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1000), - [sym_declaration_command] = STATE(999), - [sym_unset_command] = STATE(999), - [sym_subscript] = STATE(168), + [sym_for_statement] = STATE(1034), + [sym_while_statement] = STATE(1034), + [sym_if_statement] = STATE(1034), + [sym_case_statement] = STATE(1034), + [sym_function_definition] = STATE(1034), + [sym_subshell] = STATE(1034), + [sym_pipeline] = STATE(1034), + [sym_list] = STATE(1034), + [sym_command] = STATE(1034), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(1034), + [sym_variable_assignment] = STATE(1035), + [sym_declaration_command] = STATE(1034), + [sym_unset_command] = STATE(1034), + [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -21960,60 +23223,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym_word] = ACTIONS(332), }, [494] = { - [sym_for_statement] = STATE(1001), - [sym_while_statement] = STATE(1001), - [sym_if_statement] = STATE(1001), - [sym_case_statement] = STATE(1001), - [sym_function_definition] = STATE(1001), - [sym_subshell] = STATE(1001), - [sym_pipeline] = STATE(1001), - [sym_list] = STATE(1001), - [sym_bracket_command] = STATE(1001), - [sym_command] = STATE(1001), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(1002), - [sym_declaration_command] = STATE(1001), - [sym_unset_command] = STATE(1001), - [sym_subscript] = STATE(188), + [sym_for_statement] = STATE(1036), + [sym_while_statement] = STATE(1036), + [sym_if_statement] = STATE(1036), + [sym_case_statement] = STATE(1036), + [sym_function_definition] = STATE(1036), + [sym_subshell] = STATE(1036), + [sym_pipeline] = STATE(1036), + [sym_list] = STATE(1036), + [sym_command] = STATE(1036), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1036), + [sym_variable_assignment] = STATE(1037), + [sym_declaration_command] = STATE(1036), + [sym_unset_command] = STATE(1036), + [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -22021,60 +23284,219 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), + [sym_word] = ACTIONS(300), }, [495] = { - [sym_for_statement] = STATE(1003), - [sym_while_statement] = STATE(1003), - [sym_if_statement] = STATE(1003), - [sym_case_statement] = STATE(1003), - [sym_function_definition] = STATE(1003), - [sym_subshell] = STATE(1003), - [sym_pipeline] = STATE(1003), - [sym_list] = STATE(1003), - [sym_bracket_command] = STATE(1003), - [sym_command] = STATE(1003), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1004), - [sym_declaration_command] = STATE(1003), - [sym_unset_command] = STATE(1003), - [sym_subscript] = STATE(168), + [sym_variable_name] = ACTIONS(704), + [anon_sym_PIPE] = ACTIONS(2080), + [anon_sym_RPAREN] = ACTIONS(704), + [anon_sym_PIPE_AMP] = ACTIONS(704), + [anon_sym_AMP_AMP] = ACTIONS(704), + [anon_sym_PIPE_PIPE] = ACTIONS(704), + [sym__special_characters] = ACTIONS(2080), + [anon_sym_DQUOTE] = ACTIONS(704), + [anon_sym_DOLLAR] = ACTIONS(2080), + [sym_raw_string] = ACTIONS(704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(704), + [anon_sym_BQUOTE] = ACTIONS(704), + [anon_sym_LT_LPAREN] = ACTIONS(704), + [anon_sym_GT_LPAREN] = ACTIONS(704), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2080), + [sym_word] = ACTIONS(706), + }, + [496] = { + [sym_variable_name] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_RPAREN] = ACTIONS(690), + [anon_sym_PIPE_AMP] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [sym__special_characters] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(2068), + [sym_raw_string] = ACTIONS(690), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(690), + [anon_sym_BQUOTE] = ACTIONS(690), + [anon_sym_LT_LPAREN] = ACTIONS(690), + [anon_sym_GT_LPAREN] = ACTIONS(690), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2068), + [sym_word] = ACTIONS(692), + }, + [497] = { + [sym__assignment] = STATE(1019), + [anon_sym_EQ] = ACTIONS(2054), + [anon_sym_PLUS_EQ] = ACTIONS(2054), + [sym_comment] = ACTIONS(56), + }, + [498] = { + [sym_variable_assignment] = STATE(496), + [sym_subscript] = STATE(497), + [sym_concatenation] = STATE(496), + [sym_string] = STATE(490), + [sym_simple_expansion] = STATE(490), + [sym_string_expansion] = STATE(490), + [sym_expansion] = STATE(490), + [sym_command_substitution] = STATE(490), + [sym_process_substitution] = STATE(490), + [aux_sym_declaration_command_repeat1] = STATE(1038), + [sym_variable_name] = ACTIONS(878), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_RPAREN] = ACTIONS(2084), + [anon_sym_PIPE_AMP] = ACTIONS(2084), + [anon_sym_AMP_AMP] = ACTIONS(2084), + [anon_sym_PIPE_PIPE] = ACTIONS(2084), + [sym__special_characters] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(886), + [anon_sym_DOLLAR] = ACTIONS(888), + [sym_raw_string] = ACTIONS(890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(894), + [anon_sym_BQUOTE] = ACTIONS(896), + [anon_sym_LT_LPAREN] = ACTIONS(898), + [anon_sym_GT_LPAREN] = ACTIONS(898), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(900), + [sym_word] = ACTIONS(902), + }, + [499] = { + [aux_sym_concatenation_repeat1] = STATE(1040), + [sym__concat] = ACTIONS(2086), + [anon_sym_PIPE] = ACTIONS(2088), + [anon_sym_RPAREN] = ACTIONS(2090), + [anon_sym_PIPE_AMP] = ACTIONS(2090), + [anon_sym_AMP_AMP] = ACTIONS(2090), + [anon_sym_PIPE_PIPE] = ACTIONS(2090), + [sym__special_characters] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_DOLLAR] = ACTIONS(2088), + [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(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2088), + [sym_word] = ACTIONS(712), + }, + [500] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(1042), + [anon_sym_DQUOTE] = ACTIONS(2092), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [501] = { + [sym_string] = STATE(1045), + [anon_sym_DQUOTE] = ACTIONS(910), + [anon_sym_DOLLAR] = ACTIONS(2094), + [anon_sym_POUND] = ACTIONS(2094), + [anon_sym_DASH] = ACTIONS(2094), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2096), + [anon_sym_STAR] = ACTIONS(2094), + [anon_sym_AT] = ACTIONS(2094), + [anon_sym_QMARK] = ACTIONS(2094), + [anon_sym_0] = ACTIONS(2098), + [anon_sym__] = ACTIONS(2098), + }, + [502] = { + [aux_sym_concatenation_repeat1] = STATE(1040), + [sym__concat] = ACTIONS(2086), + [anon_sym_PIPE] = ACTIONS(2100), + [anon_sym_RPAREN] = ACTIONS(2102), + [anon_sym_PIPE_AMP] = ACTIONS(2102), + [anon_sym_AMP_AMP] = ACTIONS(2102), + [anon_sym_PIPE_PIPE] = ACTIONS(2102), + [sym__special_characters] = ACTIONS(2100), + [anon_sym_DQUOTE] = ACTIONS(2102), + [anon_sym_DOLLAR] = ACTIONS(2100), + [sym_raw_string] = ACTIONS(2102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2102), + [anon_sym_BQUOTE] = ACTIONS(2102), + [anon_sym_LT_LPAREN] = ACTIONS(2102), + [anon_sym_GT_LPAREN] = ACTIONS(2102), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2100), + [sym_word] = ACTIONS(724), + }, + [503] = { + [sym_subscript] = STATE(1050), + [sym_variable_name] = ACTIONS(2104), + [anon_sym_DOLLAR] = ACTIONS(2106), + [anon_sym_POUND] = ACTIONS(2108), + [anon_sym_DASH] = ACTIONS(2106), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2110), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_AT] = ACTIONS(2106), + [anon_sym_QMARK] = ACTIONS(2106), + [anon_sym_0] = ACTIONS(2112), + [anon_sym__] = ACTIONS(2112), + }, + [504] = { + [sym_for_statement] = STATE(1051), + [sym_while_statement] = STATE(1051), + [sym_if_statement] = STATE(1051), + [sym_case_statement] = STATE(1051), + [sym_function_definition] = STATE(1051), + [sym_subshell] = STATE(1051), + [sym_pipeline] = STATE(1051), + [sym_list] = STATE(1051), + [sym_command] = STATE(1051), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1051), + [sym_variable_assignment] = STATE(1052), + [sym_declaration_command] = STATE(1051), + [sym_unset_command] = STATE(1051), + [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -22082,991 +23504,434 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [496] = { - [anon_sym_PIPE] = ACTIONS(2028), - [anon_sym_RPAREN] = ACTIONS(2030), - [anon_sym_PIPE_AMP] = ACTIONS(2030), - [anon_sym_AMP_AMP] = ACTIONS(2030), - [anon_sym_PIPE_PIPE] = ACTIONS(2030), - [sym__special_characters] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2030), - [anon_sym_DOLLAR] = ACTIONS(2028), - [sym_raw_string] = ACTIONS(2030), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), - [anon_sym_BQUOTE] = ACTIONS(2030), - [anon_sym_LT_LPAREN] = ACTIONS(2030), - [anon_sym_GT_LPAREN] = ACTIONS(2030), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2028), - [sym_word] = ACTIONS(724), - }, - [497] = { - [anon_sym_PIPE] = ACTIONS(2014), - [anon_sym_RPAREN] = ACTIONS(2016), - [anon_sym_PIPE_AMP] = ACTIONS(2016), - [anon_sym_AMP_AMP] = ACTIONS(2016), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [sym__special_characters] = ACTIONS(2014), - [anon_sym_DQUOTE] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(2014), - [sym_raw_string] = ACTIONS(2016), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2016), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2016), - [anon_sym_BQUOTE] = ACTIONS(2016), - [anon_sym_LT_LPAREN] = ACTIONS(2016), - [anon_sym_GT_LPAREN] = ACTIONS(2016), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2014), - [sym_word] = ACTIONS(712), - }, - [498] = { - [sym_concatenation] = STATE(497), - [sym_string] = STATE(491), - [sym_simple_expansion] = STATE(491), - [sym_string_expansion] = STATE(491), - [sym_expansion] = STATE(491), - [sym_command_substitution] = STATE(491), - [sym_process_substitution] = STATE(491), - [aux_sym_unset_command_repeat1] = STATE(1005), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_RPAREN] = ACTIONS(2034), - [anon_sym_PIPE_AMP] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [sym__special_characters] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(892), - [anon_sym_DOLLAR] = ACTIONS(894), - [sym_raw_string] = ACTIONS(896), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(898), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(900), - [anon_sym_BQUOTE] = ACTIONS(902), - [anon_sym_LT_LPAREN] = ACTIONS(904), - [anon_sym_GT_LPAREN] = ACTIONS(904), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(906), - [sym_word] = ACTIONS(908), - }, - [499] = { - [sym_string] = STATE(1006), - [sym_simple_expansion] = STATE(1006), - [sym_string_expansion] = STATE(1006), - [sym_expansion] = STATE(1006), - [sym_command_substitution] = STATE(1006), - [sym_process_substitution] = STATE(1006), - [sym__special_characters] = ACTIONS(2036), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(2038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2036), - }, - [500] = { - [aux_sym_concatenation_repeat1] = STATE(1007), - [sym_file_descriptor] = ACTIONS(760), - [sym__concat] = ACTIONS(910), - [anon_sym_PIPE] = ACTIONS(1501), - [anon_sym_RPAREN] = ACTIONS(760), - [anon_sym_PIPE_AMP] = ACTIONS(760), - [anon_sym_AMP_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(760), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(760), - [anon_sym_AMP_GT] = ACTIONS(1501), - [anon_sym_AMP_GT_GT] = ACTIONS(760), - [anon_sym_LT_AMP] = ACTIONS(760), - [anon_sym_GT_AMP] = ACTIONS(760), - [anon_sym_LT_LT] = ACTIONS(1501), - [anon_sym_LT_LT_DASH] = ACTIONS(760), - [anon_sym_LT_LT_LT] = ACTIONS(760), - [sym__special_characters] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(760), - [anon_sym_DOLLAR] = ACTIONS(1501), - [sym_raw_string] = ACTIONS(760), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(760), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(760), - [anon_sym_BQUOTE] = ACTIONS(760), - [anon_sym_LT_LPAREN] = ACTIONS(760), - [anon_sym_GT_LPAREN] = ACTIONS(760), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1501), - }, - [501] = { - [sym_file_descriptor] = ACTIONS(764), - [sym__concat] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_PIPE_AMP] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(1503), - [anon_sym_GT_GT] = ACTIONS(764), - [anon_sym_AMP_GT] = ACTIONS(1503), - [anon_sym_AMP_GT_GT] = ACTIONS(764), - [anon_sym_LT_AMP] = ACTIONS(764), - [anon_sym_GT_AMP] = ACTIONS(764), - [anon_sym_LT_LT] = ACTIONS(1503), - [anon_sym_LT_LT_DASH] = ACTIONS(764), - [anon_sym_LT_LT_LT] = ACTIONS(764), - [sym__special_characters] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(1503), - [sym_raw_string] = ACTIONS(764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(764), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(764), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_LT_LPAREN] = ACTIONS(764), - [anon_sym_GT_LPAREN] = ACTIONS(764), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1503), - }, - [502] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(2040), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [503] = { - [sym_file_descriptor] = ACTIONS(796), - [sym__concat] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_RPAREN] = ACTIONS(796), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_GT_GT] = ACTIONS(796), - [anon_sym_AMP_GT] = ACTIONS(1507), - [anon_sym_AMP_GT_GT] = ACTIONS(796), - [anon_sym_LT_AMP] = ACTIONS(796), - [anon_sym_GT_AMP] = ACTIONS(796), - [anon_sym_LT_LT] = ACTIONS(1507), - [anon_sym_LT_LT_DASH] = ACTIONS(796), - [anon_sym_LT_LT_LT] = ACTIONS(796), - [sym__special_characters] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(1507), - [sym_raw_string] = ACTIONS(796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [anon_sym_LT_LPAREN] = ACTIONS(796), - [anon_sym_GT_LPAREN] = ACTIONS(796), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1507), - }, - [504] = { - [sym_file_descriptor] = ACTIONS(800), - [sym__concat] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_RPAREN] = ACTIONS(800), - [anon_sym_PIPE_AMP] = ACTIONS(800), - [anon_sym_AMP_AMP] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_GT_GT] = ACTIONS(800), - [anon_sym_AMP_GT] = ACTIONS(1509), - [anon_sym_AMP_GT_GT] = ACTIONS(800), - [anon_sym_LT_AMP] = ACTIONS(800), - [anon_sym_GT_AMP] = ACTIONS(800), - [anon_sym_LT_LT] = ACTIONS(1509), - [anon_sym_LT_LT_DASH] = ACTIONS(800), - [anon_sym_LT_LT_LT] = ACTIONS(800), - [sym__special_characters] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR] = ACTIONS(1509), - [sym_raw_string] = ACTIONS(800), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(800), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(800), - [anon_sym_BQUOTE] = ACTIONS(800), - [anon_sym_LT_LPAREN] = ACTIONS(800), - [anon_sym_GT_LPAREN] = ACTIONS(800), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1509), + [sym_word] = ACTIONS(300), }, [505] = { - [sym_file_descriptor] = ACTIONS(804), - [sym__concat] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_RPAREN] = ACTIONS(804), - [anon_sym_PIPE_AMP] = ACTIONS(804), - [anon_sym_AMP_AMP] = ACTIONS(804), - [anon_sym_PIPE_PIPE] = ACTIONS(804), - [anon_sym_LT] = ACTIONS(1511), - [anon_sym_GT] = ACTIONS(1511), - [anon_sym_GT_GT] = ACTIONS(804), - [anon_sym_AMP_GT] = ACTIONS(1511), - [anon_sym_AMP_GT_GT] = ACTIONS(804), - [anon_sym_LT_AMP] = ACTIONS(804), - [anon_sym_GT_AMP] = ACTIONS(804), - [anon_sym_LT_LT] = ACTIONS(1511), - [anon_sym_LT_LT_DASH] = ACTIONS(804), - [anon_sym_LT_LT_LT] = ACTIONS(804), - [sym__special_characters] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(804), - [anon_sym_DOLLAR] = ACTIONS(1511), - [sym_raw_string] = ACTIONS(804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(804), - [anon_sym_BQUOTE] = ACTIONS(804), - [anon_sym_LT_LPAREN] = ACTIONS(804), - [anon_sym_GT_LPAREN] = ACTIONS(804), + [sym_for_statement] = STATE(1053), + [sym_while_statement] = STATE(1053), + [sym_if_statement] = STATE(1053), + [sym_case_statement] = STATE(1053), + [sym_function_definition] = STATE(1053), + [sym_subshell] = STATE(1053), + [sym_pipeline] = STATE(1053), + [sym_list] = STATE(1053), + [sym_command] = STATE(1053), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(1053), + [sym_variable_assignment] = STATE(1054), + [sym_declaration_command] = STATE(1053), + [sym_unset_command] = STATE(1053), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1511), + [sym_word] = ACTIONS(332), }, [506] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(2042), + [sym_for_statement] = STATE(1055), + [sym_while_statement] = STATE(1055), + [sym_if_statement] = STATE(1055), + [sym_case_statement] = STATE(1055), + [sym_function_definition] = STATE(1055), + [sym_subshell] = STATE(1055), + [sym_pipeline] = STATE(1055), + [sym_list] = STATE(1055), + [sym_command] = STATE(1055), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1055), + [sym_variable_assignment] = STATE(1056), + [sym_declaration_command] = STATE(1055), + [sym_unset_command] = STATE(1055), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), }, [507] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1011), - [anon_sym_RBRACE] = ACTIONS(2044), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(2114), + [anon_sym_RPAREN] = ACTIONS(2116), + [anon_sym_PIPE_AMP] = ACTIONS(2116), + [anon_sym_AMP_AMP] = ACTIONS(2116), + [anon_sym_PIPE_PIPE] = ACTIONS(2116), + [sym__special_characters] = ACTIONS(2114), + [anon_sym_DQUOTE] = ACTIONS(2116), + [anon_sym_DOLLAR] = ACTIONS(2114), + [sym_raw_string] = ACTIONS(2116), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2116), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2116), + [anon_sym_BQUOTE] = ACTIONS(2116), + [anon_sym_LT_LPAREN] = ACTIONS(2116), + [anon_sym_GT_LPAREN] = ACTIONS(2116), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2114), + [sym_word] = ACTIONS(736), }, [508] = { - [sym_subscript] = STATE(1015), - [sym_variable_name] = ACTIONS(2046), - [anon_sym_DOLLAR] = ACTIONS(2048), - [anon_sym_DASH] = ACTIONS(2048), + [anon_sym_PIPE] = ACTIONS(2100), + [anon_sym_RPAREN] = ACTIONS(2102), + [anon_sym_PIPE_AMP] = ACTIONS(2102), + [anon_sym_AMP_AMP] = ACTIONS(2102), + [anon_sym_PIPE_PIPE] = ACTIONS(2102), + [sym__special_characters] = ACTIONS(2100), + [anon_sym_DQUOTE] = ACTIONS(2102), + [anon_sym_DOLLAR] = ACTIONS(2100), + [sym_raw_string] = ACTIONS(2102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2102), + [anon_sym_BQUOTE] = ACTIONS(2102), + [anon_sym_LT_LPAREN] = ACTIONS(2102), + [anon_sym_GT_LPAREN] = ACTIONS(2102), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_AT] = ACTIONS(2048), - [anon_sym_QMARK] = ACTIONS(2048), - [anon_sym_0] = ACTIONS(2052), - [anon_sym__] = ACTIONS(2052), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2100), + [sym_word] = ACTIONS(724), }, [509] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1017), - [anon_sym_RBRACE] = ACTIONS(2054), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_concatenation] = STATE(508), + [sym_string] = STATE(502), + [sym_simple_expansion] = STATE(502), + [sym_string_expansion] = STATE(502), + [sym_expansion] = STATE(502), + [sym_command_substitution] = STATE(502), + [sym_process_substitution] = STATE(502), + [aux_sym_unset_command_repeat1] = STATE(1057), + [anon_sym_PIPE] = ACTIONS(2118), + [anon_sym_RPAREN] = ACTIONS(2120), + [anon_sym_PIPE_AMP] = ACTIONS(2120), + [anon_sym_AMP_AMP] = ACTIONS(2120), + [anon_sym_PIPE_PIPE] = ACTIONS(2120), + [sym__special_characters] = ACTIONS(908), + [anon_sym_DQUOTE] = ACTIONS(910), + [anon_sym_DOLLAR] = ACTIONS(912), + [sym_raw_string] = ACTIONS(914), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(916), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(920), + [anon_sym_LT_LPAREN] = ACTIONS(922), + [anon_sym_GT_LPAREN] = ACTIONS(922), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(924), + [sym_word] = ACTIONS(926), }, [510] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1019), - [anon_sym_RBRACE] = ACTIONS(2056), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_string] = STATE(1058), + [sym_simple_expansion] = STATE(1058), + [sym_string_expansion] = STATE(1058), + [sym_expansion] = STATE(1058), + [sym_command_substitution] = STATE(1058), + [sym_process_substitution] = STATE(1058), + [sym__special_characters] = ACTIONS(2122), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(2124), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2122), }, [511] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(2058), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), + [aux_sym_concatenation_repeat1] = STATE(1059), + [sym_file_descriptor] = ACTIONS(772), + [sym__concat] = ACTIONS(928), + [anon_sym_PIPE] = ACTIONS(1539), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_PIPE_AMP] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(772), + [anon_sym_PIPE_PIPE] = ACTIONS(772), + [anon_sym_EQ_TILDE] = ACTIONS(1539), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_GT_GT] = ACTIONS(772), + [anon_sym_AMP_GT] = ACTIONS(1539), + [anon_sym_AMP_GT_GT] = ACTIONS(772), + [anon_sym_LT_AMP] = ACTIONS(772), + [anon_sym_GT_AMP] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(1539), + [anon_sym_LT_LT_DASH] = ACTIONS(772), + [anon_sym_LT_LT_LT] = ACTIONS(772), + [sym__special_characters] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(1539), + [sym_raw_string] = ACTIONS(772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(772), + [anon_sym_BQUOTE] = ACTIONS(772), + [anon_sym_LT_LPAREN] = ACTIONS(772), + [anon_sym_GT_LPAREN] = ACTIONS(772), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(774), }, [512] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(2058), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [sym_file_descriptor] = ACTIONS(776), + [sym__concat] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_RPAREN] = ACTIONS(776), + [anon_sym_PIPE_AMP] = ACTIONS(776), + [anon_sym_AMP_AMP] = ACTIONS(776), + [anon_sym_PIPE_PIPE] = ACTIONS(776), + [anon_sym_EQ_TILDE] = ACTIONS(1541), + [anon_sym_LT] = ACTIONS(1541), + [anon_sym_GT] = ACTIONS(1541), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_AMP_GT] = ACTIONS(1541), + [anon_sym_AMP_GT_GT] = ACTIONS(776), + [anon_sym_LT_AMP] = ACTIONS(776), + [anon_sym_GT_AMP] = ACTIONS(776), + [anon_sym_LT_LT] = ACTIONS(1541), + [anon_sym_LT_LT_DASH] = ACTIONS(776), + [anon_sym_LT_LT_LT] = ACTIONS(776), + [sym__special_characters] = ACTIONS(1541), + [anon_sym_DQUOTE] = ACTIONS(776), + [anon_sym_DOLLAR] = ACTIONS(1541), + [sym_raw_string] = ACTIONS(776), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(776), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(776), + [anon_sym_BQUOTE] = ACTIONS(776), + [anon_sym_LT_LPAREN] = ACTIONS(776), + [anon_sym_GT_LPAREN] = ACTIONS(776), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_word] = ACTIONS(778), }, [513] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(2058), - [sym_comment] = ACTIONS(56), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, [514] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(2058), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [sym_file_descriptor] = ACTIONS(808), + [sym__concat] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_RPAREN] = ACTIONS(808), + [anon_sym_PIPE_AMP] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [anon_sym_EQ_TILDE] = ACTIONS(1545), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_GT_GT] = ACTIONS(808), + [anon_sym_AMP_GT] = ACTIONS(1545), + [anon_sym_AMP_GT_GT] = ACTIONS(808), + [anon_sym_LT_AMP] = ACTIONS(808), + [anon_sym_GT_AMP] = ACTIONS(808), + [anon_sym_LT_LT] = ACTIONS(1545), + [anon_sym_LT_LT_DASH] = ACTIONS(808), + [anon_sym_LT_LT_LT] = ACTIONS(808), + [sym__special_characters] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(808), + [anon_sym_DOLLAR] = ACTIONS(1545), + [sym_raw_string] = ACTIONS(808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(808), + [anon_sym_BQUOTE] = ACTIONS(808), + [anon_sym_LT_LPAREN] = ACTIONS(808), + [anon_sym_GT_LPAREN] = ACTIONS(808), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_word] = ACTIONS(810), }, [515] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(2060), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(812), + [sym__concat] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(1547), + [anon_sym_RPAREN] = ACTIONS(812), + [anon_sym_PIPE_AMP] = ACTIONS(812), + [anon_sym_AMP_AMP] = ACTIONS(812), + [anon_sym_PIPE_PIPE] = ACTIONS(812), + [anon_sym_EQ_TILDE] = ACTIONS(1547), + [anon_sym_LT] = ACTIONS(1547), + [anon_sym_GT] = ACTIONS(1547), + [anon_sym_GT_GT] = ACTIONS(812), + [anon_sym_AMP_GT] = ACTIONS(1547), + [anon_sym_AMP_GT_GT] = ACTIONS(812), + [anon_sym_LT_AMP] = ACTIONS(812), + [anon_sym_GT_AMP] = ACTIONS(812), + [anon_sym_LT_LT] = ACTIONS(1547), + [anon_sym_LT_LT_DASH] = ACTIONS(812), + [anon_sym_LT_LT_LT] = ACTIONS(812), + [sym__special_characters] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR] = ACTIONS(1547), + [sym_raw_string] = ACTIONS(812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(812), + [anon_sym_BQUOTE] = ACTIONS(812), + [anon_sym_LT_LPAREN] = ACTIONS(812), + [anon_sym_GT_LPAREN] = ACTIONS(812), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(814), }, [516] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(2060), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [sym_file_descriptor] = ACTIONS(816), + [sym__concat] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_RPAREN] = ACTIONS(816), + [anon_sym_PIPE_AMP] = ACTIONS(816), + [anon_sym_AMP_AMP] = ACTIONS(816), + [anon_sym_PIPE_PIPE] = ACTIONS(816), + [anon_sym_EQ_TILDE] = ACTIONS(1549), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1549), + [anon_sym_GT_GT] = ACTIONS(816), + [anon_sym_AMP_GT] = ACTIONS(1549), + [anon_sym_AMP_GT_GT] = ACTIONS(816), + [anon_sym_LT_AMP] = ACTIONS(816), + [anon_sym_GT_AMP] = ACTIONS(816), + [anon_sym_LT_LT] = ACTIONS(1549), + [anon_sym_LT_LT_DASH] = ACTIONS(816), + [anon_sym_LT_LT_LT] = ACTIONS(816), + [sym__special_characters] = ACTIONS(1549), + [anon_sym_DQUOTE] = ACTIONS(816), + [anon_sym_DOLLAR] = ACTIONS(1549), + [sym_raw_string] = ACTIONS(816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(816), + [anon_sym_BQUOTE] = ACTIONS(816), + [anon_sym_LT_LPAREN] = ACTIONS(816), + [anon_sym_GT_LPAREN] = ACTIONS(816), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_word] = ACTIONS(818), }, [517] = { - [anon_sym_RPAREN] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(2128), [sym_comment] = ACTIONS(56), }, [518] = { - [sym_for_statement] = STATE(1023), - [sym_while_statement] = STATE(1023), - [sym_if_statement] = STATE(1023), - [sym_case_statement] = STATE(1023), - [sym_function_definition] = STATE(1023), - [sym_subshell] = STATE(1023), - [sym_pipeline] = STATE(1023), - [sym_list] = STATE(1023), - [sym_bracket_command] = STATE(1023), - [sym_command] = STATE(1023), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1024), - [sym_declaration_command] = STATE(1023), - [sym_unset_command] = STATE(1023), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1064), + [anon_sym_RBRACE] = ACTIONS(2130), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(2132), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [519] = { - [sym_file_descriptor] = ACTIONS(2064), - [sym__concat] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_SEMI_SEMI] = ACTIONS(2066), - [anon_sym_PIPE_AMP] = ACTIONS(2066), - [anon_sym_AMP_AMP] = ACTIONS(2066), - [anon_sym_PIPE_PIPE] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_GT] = ACTIONS(2066), - [anon_sym_GT_GT] = ACTIONS(2066), - [anon_sym_AMP_GT] = ACTIONS(2066), - [anon_sym_AMP_GT_GT] = ACTIONS(2066), - [anon_sym_LT_AMP] = ACTIONS(2066), - [anon_sym_GT_AMP] = ACTIONS(2066), - [anon_sym_LT_LT] = ACTIONS(2066), - [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(2066), - [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(178), - [sym_word] = ACTIONS(2066), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_LF] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2066), - }, - [520] = { - [sym_for_statement] = STATE(1025), - [sym_while_statement] = STATE(1025), - [sym_if_statement] = STATE(1025), - [sym_case_statement] = STATE(1025), - [sym_function_definition] = STATE(1025), - [sym_subshell] = STATE(1025), - [sym_pipeline] = STATE(1025), - [sym_list] = STATE(1025), - [sym_bracket_command] = STATE(1025), - [sym_command] = STATE(1025), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1026), - [sym_declaration_command] = STATE(1025), - [sym_unset_command] = STATE(1025), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [521] = { - [anon_sym_LT] = ACTIONS(2068), - [anon_sym_GT] = ACTIONS(2068), - [anon_sym_GT_GT] = ACTIONS(2070), - [anon_sym_AMP_GT] = ACTIONS(2068), - [anon_sym_AMP_GT_GT] = ACTIONS(2070), - [anon_sym_LT_AMP] = ACTIONS(2070), - [anon_sym_GT_AMP] = ACTIONS(2070), - [sym_comment] = ACTIONS(56), - }, - [522] = { - [sym_concatenation] = STATE(1036), - [sym_string] = STATE(1031), - [sym_simple_expansion] = STATE(1031), - [sym_string_expansion] = STATE(1031), - [sym_expansion] = STATE(1031), - [sym_command_substitution] = STATE(1031), - [sym_process_substitution] = STATE(1031), - [sym__special_characters] = ACTIONS(2072), - [anon_sym_DQUOTE] = ACTIONS(2074), - [anon_sym_DOLLAR] = ACTIONS(2076), - [sym_raw_string] = ACTIONS(2078), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2082), - [anon_sym_BQUOTE] = ACTIONS(2084), - [anon_sym_LT_LPAREN] = ACTIONS(2086), - [anon_sym_GT_LPAREN] = ACTIONS(2086), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2088), - }, - [523] = { - [sym_heredoc] = STATE(1039), - [sym__simple_heredoc] = ACTIONS(2090), - [sym__heredoc_beginning] = ACTIONS(2092), - [sym_comment] = ACTIONS(56), - }, - [524] = { - [sym_concatenation] = STATE(1042), - [sym_string] = STATE(1041), - [sym_simple_expansion] = STATE(1041), - [sym_string_expansion] = STATE(1041), - [sym_expansion] = STATE(1041), - [sym_command_substitution] = STATE(1041), - [sym_process_substitution] = STATE(1041), - [sym__special_characters] = ACTIONS(2094), - [anon_sym_DQUOTE] = ACTIONS(2074), - [anon_sym_DOLLAR] = ACTIONS(2076), - [sym_raw_string] = ACTIONS(2096), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2082), - [anon_sym_BQUOTE] = ACTIONS(2084), - [anon_sym_LT_LPAREN] = ACTIONS(2086), - [anon_sym_GT_LPAREN] = ACTIONS(2086), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2098), - }, - [525] = { - [aux_sym_concatenation_repeat1] = STATE(500), - [sym_file_descriptor] = ACTIONS(1096), - [sym__concat] = ACTIONS(910), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(1096), - [anon_sym_PIPE_AMP] = ACTIONS(1096), - [anon_sym_AMP_AMP] = ACTIONS(1096), - [anon_sym_PIPE_PIPE] = ACTIONS(1096), - [anon_sym_LT] = ACTIONS(2100), - [anon_sym_GT] = ACTIONS(2100), - [anon_sym_GT_GT] = ACTIONS(1096), - [anon_sym_AMP_GT] = ACTIONS(2100), - [anon_sym_AMP_GT_GT] = ACTIONS(1096), - [anon_sym_LT_AMP] = ACTIONS(1096), - [anon_sym_GT_AMP] = ACTIONS(1096), - [anon_sym_LT_LT] = ACTIONS(2100), - [anon_sym_LT_LT_DASH] = ACTIONS(1096), - [anon_sym_LT_LT_LT] = ACTIONS(1096), - [sym__special_characters] = ACTIONS(2100), - [anon_sym_DQUOTE] = ACTIONS(1096), - [anon_sym_DOLLAR] = ACTIONS(2100), - [sym_raw_string] = ACTIONS(1096), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1096), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1096), - [anon_sym_BQUOTE] = ACTIONS(1096), - [anon_sym_LT_LPAREN] = ACTIONS(1096), - [anon_sym_GT_LPAREN] = ACTIONS(1096), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2100), - }, - [526] = { - [aux_sym_concatenation_repeat1] = STATE(500), - [sym_file_descriptor] = ACTIONS(1100), - [sym__concat] = ACTIONS(910), - [anon_sym_PIPE] = ACTIONS(2102), - [anon_sym_RPAREN] = ACTIONS(1100), - [anon_sym_PIPE_AMP] = ACTIONS(1100), - [anon_sym_AMP_AMP] = ACTIONS(1100), - [anon_sym_PIPE_PIPE] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(2102), - [anon_sym_GT] = ACTIONS(2102), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(2102), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [anon_sym_LT_LT] = ACTIONS(2102), - [anon_sym_LT_LT_DASH] = ACTIONS(1100), - [anon_sym_LT_LT_LT] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(2102), - [anon_sym_DQUOTE] = ACTIONS(1100), - [anon_sym_DOLLAR] = ACTIONS(2102), - [sym_raw_string] = ACTIONS(1100), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1100), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1100), - [anon_sym_BQUOTE] = ACTIONS(1100), - [anon_sym_LT_LPAREN] = ACTIONS(1100), - [anon_sym_GT_LPAREN] = ACTIONS(1100), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2102), - }, - [527] = { - [sym_file_descriptor] = ACTIONS(1104), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_RPAREN] = ACTIONS(1104), - [anon_sym_PIPE_AMP] = ACTIONS(1104), - [anon_sym_AMP_AMP] = ACTIONS(1104), - [anon_sym_PIPE_PIPE] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(2104), - [anon_sym_GT] = ACTIONS(2104), - [anon_sym_GT_GT] = ACTIONS(1104), - [anon_sym_AMP_GT] = ACTIONS(2104), - [anon_sym_AMP_GT_GT] = ACTIONS(1104), - [anon_sym_LT_AMP] = ACTIONS(1104), - [anon_sym_GT_AMP] = ACTIONS(1104), - [anon_sym_LT_LT] = ACTIONS(2104), - [anon_sym_LT_LT_DASH] = ACTIONS(1104), - [anon_sym_LT_LT_LT] = ACTIONS(1104), - [anon_sym_BQUOTE] = ACTIONS(1104), - [sym_comment] = ACTIONS(56), - }, - [528] = { - [sym_file_descriptor] = ACTIONS(1100), - [anon_sym_PIPE] = ACTIONS(2102), - [anon_sym_RPAREN] = ACTIONS(1100), - [anon_sym_PIPE_AMP] = ACTIONS(1100), - [anon_sym_AMP_AMP] = ACTIONS(1100), - [anon_sym_PIPE_PIPE] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(2102), - [anon_sym_GT] = ACTIONS(2102), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(2102), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [anon_sym_LT_LT] = ACTIONS(2102), - [anon_sym_LT_LT_DASH] = ACTIONS(1100), - [anon_sym_LT_LT_LT] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(2102), - [anon_sym_DQUOTE] = ACTIONS(1100), - [anon_sym_DOLLAR] = ACTIONS(2102), - [sym_raw_string] = ACTIONS(1100), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1100), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1100), - [anon_sym_BQUOTE] = ACTIONS(1100), - [anon_sym_LT_LPAREN] = ACTIONS(1100), - [anon_sym_GT_LPAREN] = ACTIONS(1100), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2102), - }, - [529] = { - [sym_file_redirect] = STATE(527), - [sym_heredoc_redirect] = STATE(527), - [sym_herestring_redirect] = STATE(527), - [sym_concatenation] = STATE(528), - [sym_string] = STATE(526), - [sym_simple_expansion] = STATE(526), - [sym_string_expansion] = STATE(526), - [sym_expansion] = STATE(526), - [sym_command_substitution] = STATE(526), - [sym_process_substitution] = STATE(526), - [aux_sym_for_statement_repeat1] = STATE(1043), - [aux_sym_while_statement_repeat1] = STATE(1044), - [sym_file_descriptor] = ACTIONS(944), - [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(950), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_GT_GT] = ACTIONS(952), - [anon_sym_AMP_GT] = ACTIONS(950), - [anon_sym_AMP_GT_GT] = ACTIONS(952), - [anon_sym_LT_AMP] = ACTIONS(952), - [anon_sym_GT_AMP] = ACTIONS(952), - [anon_sym_LT_LT] = ACTIONS(954), - [anon_sym_LT_LT_DASH] = ACTIONS(956), - [anon_sym_LT_LT_LT] = ACTIONS(958), - [sym__special_characters] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(962), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(964), - }, - [530] = { - [sym_file_redirect] = STATE(527), - [sym_heredoc_redirect] = STATE(527), - [sym_herestring_redirect] = STATE(527), - [aux_sym_while_statement_repeat1] = STATE(1045), - [sym_file_descriptor] = ACTIONS(944), - [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(950), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_GT_GT] = ACTIONS(952), - [anon_sym_AMP_GT] = ACTIONS(950), - [anon_sym_AMP_GT_GT] = ACTIONS(952), - [anon_sym_LT_AMP] = ACTIONS(952), - [anon_sym_GT_AMP] = ACTIONS(952), - [anon_sym_LT_LT] = ACTIONS(954), - [anon_sym_LT_LT_DASH] = ACTIONS(956), - [anon_sym_LT_LT_LT] = ACTIONS(958), - [sym_comment] = ACTIONS(56), - }, - [531] = { - [sym_file_redirect] = STATE(527), - [sym_heredoc_redirect] = STATE(527), - [sym_herestring_redirect] = STATE(527), - [sym_concatenation] = STATE(528), - [sym_string] = STATE(526), - [sym_simple_expansion] = STATE(526), - [sym_string_expansion] = STATE(526), - [sym_expansion] = STATE(526), - [sym_command_substitution] = STATE(526), - [sym_process_substitution] = STATE(526), - [aux_sym_for_statement_repeat1] = STATE(1046), - [aux_sym_while_statement_repeat1] = STATE(1044), - [sym_file_descriptor] = ACTIONS(944), - [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(950), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_GT_GT] = ACTIONS(952), - [anon_sym_AMP_GT] = ACTIONS(950), - [anon_sym_AMP_GT_GT] = ACTIONS(952), - [anon_sym_LT_AMP] = ACTIONS(952), - [anon_sym_GT_AMP] = ACTIONS(952), - [anon_sym_LT_LT] = ACTIONS(954), - [anon_sym_LT_LT_DASH] = ACTIONS(956), - [anon_sym_LT_LT_LT] = ACTIONS(958), - [sym__special_characters] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(962), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(964), - }, - [532] = { - [sym_concatenation] = STATE(940), - [sym_string] = STATE(1050), - [sym_array] = STATE(940), - [sym_simple_expansion] = STATE(1050), - [sym_string_expansion] = STATE(1050), - [sym_expansion] = STATE(1050), - [sym_command_substitution] = STATE(1050), - [sym_process_substitution] = STATE(1050), - [sym__empty_value] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [sym__special_characters] = ACTIONS(2110), - [anon_sym_DQUOTE] = ACTIONS(2112), - [anon_sym_DOLLAR] = ACTIONS(2114), - [sym_raw_string] = ACTIONS(2116), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2118), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2120), - [anon_sym_BQUOTE] = ACTIONS(2122), - [anon_sym_LT_LPAREN] = ACTIONS(2124), - [anon_sym_GT_LPAREN] = ACTIONS(2124), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2126), - }, - [533] = { - [sym_do_group] = STATE(1055), - [anon_sym_do] = ACTIONS(1946), - [sym_comment] = ACTIONS(56), - }, - [534] = { - [sym_compound_statement] = STATE(1057), - [anon_sym_LPAREN] = ACTIONS(2128), - [anon_sym_LBRACE] = ACTIONS(1960), - [sym_comment] = ACTIONS(56), - }, - [535] = { - [sym__assignment] = STATE(967), - [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(2130), - [anon_sym_PLUS_EQ] = ACTIONS(2130), - [sym_comment] = ACTIONS(56), - }, - [536] = { - [aux_sym_concatenation_repeat1] = STATE(1060), - [sym__concat] = ACTIONS(2132), - [sym_variable_name] = ACTIONS(664), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_PIPE_AMP] = ACTIONS(664), - [anon_sym_AMP_AMP] = ACTIONS(664), - [anon_sym_PIPE_PIPE] = ACTIONS(664), - [sym__special_characters] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(664), - [anon_sym_DOLLAR] = ACTIONS(1972), - [sym_raw_string] = ACTIONS(664), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(664), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(664), - [anon_sym_BQUOTE] = ACTIONS(664), - [anon_sym_LT_LPAREN] = ACTIONS(664), - [anon_sym_GT_LPAREN] = ACTIONS(664), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1972), - [sym_word] = ACTIONS(666), - }, - [537] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(1062), - [anon_sym_DQUOTE] = ACTIONS(2134), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [538] = { - [sym_string] = STATE(1065), - [anon_sym_DQUOTE] = ACTIONS(978), + [sym_subscript] = STATE(1068), + [sym_variable_name] = ACTIONS(2134), [anon_sym_DOLLAR] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(2136), [anon_sym_DASH] = ACTIONS(2136), - [sym_comment] = ACTIONS(178), + [sym_comment] = ACTIONS(56), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2138), [anon_sym_STAR] = ACTIONS(2136), [anon_sym_AT] = ACTIONS(2136), @@ -23074,1673 +23939,2443 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(2140), [anon_sym__] = ACTIONS(2140), }, - [539] = { - [aux_sym_concatenation_repeat1] = STATE(1060), - [sym__concat] = ACTIONS(2132), - [sym_variable_name] = ACTIONS(678), - [anon_sym_PIPE] = ACTIONS(1982), - [anon_sym_PIPE_AMP] = ACTIONS(678), - [anon_sym_AMP_AMP] = ACTIONS(678), - [anon_sym_PIPE_PIPE] = ACTIONS(678), - [sym__special_characters] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(678), - [anon_sym_DOLLAR] = ACTIONS(1982), - [sym_raw_string] = ACTIONS(678), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(678), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(678), - [anon_sym_BQUOTE] = ACTIONS(678), - [anon_sym_LT_LPAREN] = ACTIONS(678), - [anon_sym_GT_LPAREN] = ACTIONS(678), + [520] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1071), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(2144), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [521] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1074), + [anon_sym_RBRACE] = ACTIONS(2146), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(2148), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [522] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [523] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2150), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [524] = { + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(2150), + [sym_comment] = ACTIONS(56), + }, + [525] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(2150), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [526] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2152), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [527] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2152), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [528] = { + [anon_sym_RPAREN] = ACTIONS(2154), + [sym_comment] = ACTIONS(56), + }, + [529] = { + [sym_for_statement] = STATE(1078), + [sym_while_statement] = STATE(1078), + [sym_if_statement] = STATE(1078), + [sym_case_statement] = STATE(1078), + [sym_function_definition] = STATE(1078), + [sym_subshell] = STATE(1078), + [sym_pipeline] = STATE(1078), + [sym_list] = STATE(1078), + [sym_command] = STATE(1078), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1078), + [sym_variable_assignment] = STATE(1079), + [sym_declaration_command] = STATE(1078), + [sym_unset_command] = STATE(1078), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [530] = { + [sym_file_descriptor] = ACTIONS(2156), + [sym__concat] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_SEMI_SEMI] = ACTIONS(2158), + [anon_sym_PIPE_AMP] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_PIPE_PIPE] = ACTIONS(2158), + [anon_sym_EQ_TILDE] = ACTIONS(2158), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_GT] = ACTIONS(2158), + [anon_sym_GT_GT] = ACTIONS(2158), + [anon_sym_AMP_GT] = ACTIONS(2158), + [anon_sym_AMP_GT_GT] = ACTIONS(2158), + [anon_sym_LT_AMP] = ACTIONS(2158), + [anon_sym_GT_AMP] = ACTIONS(2158), + [anon_sym_LT_LT] = ACTIONS(2158), + [anon_sym_LT_LT_DASH] = ACTIONS(2158), + [anon_sym_LT_LT_LT] = ACTIONS(2158), + [sym__special_characters] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2158), + [anon_sym_DOLLAR] = ACTIONS(2158), + [sym_raw_string] = ACTIONS(2158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2158), + [anon_sym_BQUOTE] = ACTIONS(2158), + [anon_sym_LT_LPAREN] = ACTIONS(2158), + [anon_sym_GT_LPAREN] = ACTIONS(2158), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym_LF] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2158), + }, + [531] = { + [sym_for_statement] = STATE(1080), + [sym_while_statement] = STATE(1080), + [sym_if_statement] = STATE(1080), + [sym_case_statement] = STATE(1080), + [sym_function_definition] = STATE(1080), + [sym_subshell] = STATE(1080), + [sym_pipeline] = STATE(1080), + [sym_list] = STATE(1080), + [sym_command] = STATE(1080), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1080), + [sym_variable_assignment] = STATE(1081), + [sym_declaration_command] = STATE(1080), + [sym_unset_command] = STATE(1080), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [532] = { + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_GT] = ACTIONS(2160), + [anon_sym_GT_GT] = ACTIONS(2162), + [anon_sym_AMP_GT] = ACTIONS(2160), + [anon_sym_AMP_GT_GT] = ACTIONS(2162), + [anon_sym_LT_AMP] = ACTIONS(2162), + [anon_sym_GT_AMP] = ACTIONS(2162), + [sym_comment] = ACTIONS(56), + }, + [533] = { + [sym_concatenation] = STATE(1085), + [sym_string] = STATE(1084), + [sym_simple_expansion] = STATE(1084), + [sym_string_expansion] = STATE(1084), + [sym_expansion] = STATE(1084), + [sym_command_substitution] = STATE(1084), + [sym_process_substitution] = STATE(1084), + [sym__special_characters] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2166), + [anon_sym_DOLLAR] = ACTIONS(2168), + [sym_raw_string] = ACTIONS(2170), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2172), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2174), + [anon_sym_BQUOTE] = ACTIONS(2176), + [anon_sym_LT_LPAREN] = ACTIONS(2178), + [anon_sym_GT_LPAREN] = ACTIONS(2178), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2170), + [sym_regex] = ACTIONS(2180), + }, + [534] = { + [sym_concatenation] = STATE(1094), + [sym_string] = STATE(1089), + [sym_simple_expansion] = STATE(1089), + [sym_string_expansion] = STATE(1089), + [sym_expansion] = STATE(1089), + [sym_command_substitution] = STATE(1089), + [sym_process_substitution] = STATE(1089), + [sym__special_characters] = ACTIONS(2182), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_DOLLAR] = ACTIONS(2186), + [sym_raw_string] = ACTIONS(2188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2194), + [anon_sym_LT_LPAREN] = ACTIONS(2196), + [anon_sym_GT_LPAREN] = ACTIONS(2196), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2198), + }, + [535] = { + [sym_heredoc] = STATE(1097), + [sym__simple_heredoc] = ACTIONS(2200), + [sym__heredoc_beginning] = ACTIONS(2202), + [sym_comment] = ACTIONS(56), + }, + [536] = { + [sym_concatenation] = STATE(1100), + [sym_string] = STATE(1099), + [sym_simple_expansion] = STATE(1099), + [sym_string_expansion] = STATE(1099), + [sym_expansion] = STATE(1099), + [sym_command_substitution] = STATE(1099), + [sym_process_substitution] = STATE(1099), + [sym__special_characters] = ACTIONS(2204), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_DOLLAR] = ACTIONS(2186), + [sym_raw_string] = ACTIONS(2206), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2194), + [anon_sym_LT_LPAREN] = ACTIONS(2196), + [anon_sym_GT_LPAREN] = ACTIONS(2196), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2208), + }, + [537] = { + [aux_sym_concatenation_repeat1] = STATE(511), + [sym_file_descriptor] = ACTIONS(600), + [sym__concat] = ACTIONS(928), + [anon_sym_PIPE] = ACTIONS(598), + [anon_sym_RPAREN] = ACTIONS(600), + [anon_sym_PIPE_AMP] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_EQ_TILDE] = ACTIONS(598), + [anon_sym_LT] = ACTIONS(598), + [anon_sym_GT] = ACTIONS(598), + [anon_sym_GT_GT] = ACTIONS(600), + [anon_sym_AMP_GT] = ACTIONS(598), + [anon_sym_AMP_GT_GT] = ACTIONS(600), + [anon_sym_LT_AMP] = ACTIONS(600), + [anon_sym_GT_AMP] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(598), + [anon_sym_LT_LT_DASH] = ACTIONS(600), + [anon_sym_LT_LT_LT] = ACTIONS(600), + [sym__special_characters] = ACTIONS(598), + [anon_sym_DQUOTE] = ACTIONS(600), + [anon_sym_DOLLAR] = ACTIONS(598), + [sym_raw_string] = ACTIONS(600), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(600), + [anon_sym_LT_LPAREN] = ACTIONS(600), + [anon_sym_GT_LPAREN] = ACTIONS(600), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(602), + }, + [538] = { + [aux_sym_concatenation_repeat1] = STATE(511), + [sym_file_descriptor] = ACTIONS(614), + [sym__concat] = ACTIONS(928), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(614), + [anon_sym_PIPE_AMP] = ACTIONS(614), + [anon_sym_AMP_AMP] = ACTIONS(614), + [anon_sym_PIPE_PIPE] = ACTIONS(614), + [anon_sym_EQ_TILDE] = ACTIONS(612), + [anon_sym_LT] = ACTIONS(612), + [anon_sym_GT] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(614), + [anon_sym_AMP_GT] = ACTIONS(612), + [anon_sym_AMP_GT_GT] = ACTIONS(614), + [anon_sym_LT_AMP] = ACTIONS(614), + [anon_sym_GT_AMP] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(612), + [anon_sym_LT_LT_DASH] = ACTIONS(614), + [anon_sym_LT_LT_LT] = ACTIONS(614), + [sym__special_characters] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(614), + [anon_sym_DOLLAR] = ACTIONS(612), + [sym_raw_string] = ACTIONS(614), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(614), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(614), + [anon_sym_BQUOTE] = ACTIONS(614), + [anon_sym_LT_LPAREN] = ACTIONS(614), + [anon_sym_GT_LPAREN] = ACTIONS(614), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(616), + }, + [539] = { + [sym_file_descriptor] = ACTIONS(1124), + [anon_sym_PIPE] = ACTIONS(2210), + [anon_sym_RPAREN] = ACTIONS(1124), + [anon_sym_PIPE_AMP] = ACTIONS(1124), + [anon_sym_AMP_AMP] = ACTIONS(1124), + [anon_sym_PIPE_PIPE] = ACTIONS(1124), + [anon_sym_LT] = ACTIONS(2210), + [anon_sym_GT] = ACTIONS(2210), + [anon_sym_GT_GT] = ACTIONS(1124), + [anon_sym_AMP_GT] = ACTIONS(2210), + [anon_sym_AMP_GT_GT] = ACTIONS(1124), + [anon_sym_LT_AMP] = ACTIONS(1124), + [anon_sym_GT_AMP] = ACTIONS(1124), + [anon_sym_LT_LT] = ACTIONS(2210), + [anon_sym_LT_LT_DASH] = ACTIONS(1124), + [anon_sym_LT_LT_LT] = ACTIONS(1124), + [anon_sym_BQUOTE] = ACTIONS(1124), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1982), - [sym_word] = ACTIONS(680), }, [540] = { - [sym_subscript] = STATE(1070), - [sym_variable_name] = ACTIONS(2142), - [anon_sym_DOLLAR] = ACTIONS(2144), - [anon_sym_POUND] = ACTIONS(2146), - [anon_sym_DASH] = ACTIONS(2144), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2148), - [anon_sym_STAR] = ACTIONS(2144), - [anon_sym_AT] = ACTIONS(2144), - [anon_sym_QMARK] = ACTIONS(2144), - [anon_sym_0] = ACTIONS(2150), - [anon_sym__] = ACTIONS(2150), + [sym_file_descriptor] = ACTIONS(614), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_RPAREN] = ACTIONS(614), + [anon_sym_PIPE_AMP] = ACTIONS(614), + [anon_sym_AMP_AMP] = ACTIONS(614), + [anon_sym_PIPE_PIPE] = ACTIONS(614), + [anon_sym_EQ_TILDE] = ACTIONS(612), + [anon_sym_LT] = ACTIONS(612), + [anon_sym_GT] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(614), + [anon_sym_AMP_GT] = ACTIONS(612), + [anon_sym_AMP_GT_GT] = ACTIONS(614), + [anon_sym_LT_AMP] = ACTIONS(614), + [anon_sym_GT_AMP] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(612), + [anon_sym_LT_LT_DASH] = ACTIONS(614), + [anon_sym_LT_LT_LT] = ACTIONS(614), + [sym__special_characters] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(614), + [anon_sym_DOLLAR] = ACTIONS(612), + [sym_raw_string] = ACTIONS(614), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(614), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(614), + [anon_sym_BQUOTE] = ACTIONS(614), + [anon_sym_LT_LPAREN] = ACTIONS(614), + [anon_sym_GT_LPAREN] = ACTIONS(614), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(616), }, [541] = { - [sym_for_statement] = STATE(1071), - [sym_while_statement] = STATE(1071), - [sym_if_statement] = STATE(1071), - [sym_case_statement] = STATE(1071), - [sym_function_definition] = STATE(1071), - [sym_subshell] = STATE(1071), - [sym_pipeline] = STATE(1071), - [sym_list] = STATE(1071), - [sym_bracket_command] = STATE(1071), - [sym_command] = STATE(1071), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1072), - [sym_declaration_command] = STATE(1071), - [sym_unset_command] = STATE(1071), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [sym_file_redirect] = STATE(539), + [sym_heredoc_redirect] = STATE(539), + [sym_herestring_redirect] = STATE(539), + [aux_sym_while_statement_repeat1] = STATE(1101), + [sym_file_descriptor] = ACTIONS(962), + [anon_sym_PIPE] = ACTIONS(2212), + [anon_sym_RPAREN] = ACTIONS(2214), + [anon_sym_PIPE_AMP] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_PIPE_PIPE] = ACTIONS(2214), + [anon_sym_LT] = ACTIONS(970), + [anon_sym_GT] = ACTIONS(970), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_AMP_GT] = ACTIONS(970), + [anon_sym_AMP_GT_GT] = ACTIONS(972), + [anon_sym_LT_AMP] = ACTIONS(972), + [anon_sym_GT_AMP] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_LT_LT_DASH] = ACTIONS(976), + [anon_sym_LT_LT_LT] = ACTIONS(978), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), }, [542] = { - [sym_for_statement] = STATE(1073), - [sym_while_statement] = STATE(1073), - [sym_if_statement] = STATE(1073), - [sym_case_statement] = STATE(1073), - [sym_function_definition] = STATE(1073), - [sym_subshell] = STATE(1073), - [sym_pipeline] = STATE(1073), - [sym_list] = STATE(1073), - [sym_bracket_command] = STATE(1073), - [sym_command] = STATE(1073), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(1074), - [sym_declaration_command] = STATE(1073), - [sym_unset_command] = STATE(1073), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), + [sym_file_redirect] = STATE(539), + [sym_heredoc_redirect] = STATE(539), + [sym_herestring_redirect] = STATE(539), + [sym_concatenation] = STATE(540), + [sym_string] = STATE(538), + [sym_simple_expansion] = STATE(538), + [sym_string_expansion] = STATE(538), + [sym_expansion] = STATE(538), + [sym_command_substitution] = STATE(538), + [sym_process_substitution] = STATE(538), + [aux_sym_while_statement_repeat1] = STATE(1102), + [aux_sym_command_repeat2] = STATE(1103), + [sym_file_descriptor] = ACTIONS(962), + [anon_sym_PIPE] = ACTIONS(2212), + [anon_sym_RPAREN] = ACTIONS(2214), + [anon_sym_PIPE_AMP] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_PIPE_PIPE] = ACTIONS(2214), + [anon_sym_EQ_TILDE] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(970), + [anon_sym_GT] = ACTIONS(970), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_AMP_GT] = ACTIONS(970), + [anon_sym_AMP_GT_GT] = ACTIONS(972), + [anon_sym_LT_AMP] = ACTIONS(972), + [anon_sym_GT_AMP] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_LT_LT_DASH] = ACTIONS(976), + [anon_sym_LT_LT_LT] = ACTIONS(978), + [sym__special_characters] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(982), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), + [sym_word] = ACTIONS(984), }, [543] = { - [sym_for_statement] = STATE(1075), - [sym_while_statement] = STATE(1075), - [sym_if_statement] = STATE(1075), - [sym_case_statement] = STATE(1075), - [sym_function_definition] = STATE(1075), - [sym_subshell] = STATE(1075), - [sym_pipeline] = STATE(1075), - [sym_list] = STATE(1075), - [sym_bracket_command] = STATE(1075), - [sym_command] = STATE(1075), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1076), - [sym_declaration_command] = STATE(1075), - [sym_unset_command] = STATE(1075), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [sym_file_redirect] = STATE(539), + [sym_heredoc_redirect] = STATE(539), + [sym_herestring_redirect] = STATE(539), + [sym_concatenation] = STATE(540), + [sym_string] = STATE(538), + [sym_simple_expansion] = STATE(538), + [sym_string_expansion] = STATE(538), + [sym_expansion] = STATE(538), + [sym_command_substitution] = STATE(538), + [sym_process_substitution] = STATE(538), + [aux_sym_while_statement_repeat1] = STATE(1102), + [aux_sym_command_repeat2] = STATE(1104), + [sym_file_descriptor] = ACTIONS(962), + [anon_sym_PIPE] = ACTIONS(2212), + [anon_sym_RPAREN] = ACTIONS(2214), + [anon_sym_PIPE_AMP] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_PIPE_PIPE] = ACTIONS(2214), + [anon_sym_EQ_TILDE] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(970), + [anon_sym_GT] = ACTIONS(970), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_AMP_GT] = ACTIONS(970), + [anon_sym_AMP_GT_GT] = ACTIONS(972), + [anon_sym_LT_AMP] = ACTIONS(972), + [anon_sym_GT_AMP] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_LT_LT_DASH] = ACTIONS(976), + [anon_sym_LT_LT_LT] = ACTIONS(978), + [sym__special_characters] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(982), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym_word] = ACTIONS(984), }, [544] = { - [sym__assignment] = STATE(967), - [anon_sym_EQ] = ACTIONS(2130), - [anon_sym_PLUS_EQ] = ACTIONS(2130), + [sym_concatenation] = STATE(992), + [sym_string] = STATE(1108), + [sym_array] = STATE(992), + [sym_simple_expansion] = STATE(1108), + [sym_string_expansion] = STATE(1108), + [sym_expansion] = STATE(1108), + [sym_command_substitution] = STATE(1108), + [sym_process_substitution] = STATE(1108), + [sym__empty_value] = ACTIONS(2006), + [anon_sym_LPAREN] = ACTIONS(2008), + [sym__special_characters] = ACTIONS(2216), + [anon_sym_DQUOTE] = ACTIONS(2218), + [anon_sym_DOLLAR] = ACTIONS(2220), + [sym_raw_string] = ACTIONS(2222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2224), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2226), + [anon_sym_BQUOTE] = ACTIONS(2228), + [anon_sym_LT_LPAREN] = ACTIONS(2230), + [anon_sym_GT_LPAREN] = ACTIONS(2230), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2232), }, [545] = { - [sym_variable_assignment] = STATE(485), - [sym_subscript] = STATE(544), - [sym_concatenation] = STATE(485), - [sym_string] = STATE(539), - [sym_simple_expansion] = STATE(539), - [sym_string_expansion] = STATE(539), - [sym_expansion] = STATE(539), - [sym_command_substitution] = STATE(539), - [sym_process_substitution] = STATE(539), - [aux_sym_declaration_command_repeat1] = STATE(1077), - [sym_variable_name] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(1996), - [anon_sym_PIPE_AMP] = ACTIONS(1998), - [anon_sym_AMP_AMP] = ACTIONS(1998), - [anon_sym_PIPE_PIPE] = ACTIONS(1998), - [sym__special_characters] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(980), - [sym_raw_string] = ACTIONS(982), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(984), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(986), - [anon_sym_BQUOTE] = ACTIONS(1998), - [anon_sym_LT_LPAREN] = ACTIONS(988), - [anon_sym_GT_LPAREN] = ACTIONS(988), + [sym_do_group] = STATE(1113), + [anon_sym_do] = ACTIONS(2032), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(882), - [sym_word] = ACTIONS(990), }, [546] = { - [aux_sym_concatenation_repeat1] = STATE(1079), - [sym__concat] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2002), - [anon_sym_PIPE_AMP] = ACTIONS(2004), - [anon_sym_AMP_AMP] = ACTIONS(2004), - [anon_sym_PIPE_PIPE] = ACTIONS(2004), - [sym__special_characters] = ACTIONS(2002), - [anon_sym_DQUOTE] = ACTIONS(2004), - [anon_sym_DOLLAR] = ACTIONS(2002), - [sym_raw_string] = ACTIONS(2004), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2004), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2004), - [anon_sym_BQUOTE] = ACTIONS(2004), - [anon_sym_LT_LPAREN] = ACTIONS(2004), - [anon_sym_GT_LPAREN] = ACTIONS(2004), + [sym_compound_statement] = STATE(1115), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2046), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2002), - [sym_word] = ACTIONS(700), }, [547] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(1081), - [anon_sym_DQUOTE] = ACTIONS(2154), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym_concatenation] = STATE(84), + [sym_string] = STATE(79), + [sym_simple_expansion] = STATE(79), + [sym_string_expansion] = STATE(79), + [sym_expansion] = STATE(79), + [sym_command_substitution] = STATE(79), + [sym_process_substitution] = STATE(79), + [aux_sym_command_repeat2] = STATE(350), + [anon_sym_EQ_TILDE] = ACTIONS(122), + [anon_sym_RBRACK] = ACTIONS(2236), + [sym__special_characters] = ACTIONS(630), + [anon_sym_DQUOTE] = ACTIONS(126), + [anon_sym_DOLLAR] = ACTIONS(128), + [sym_raw_string] = ACTIONS(130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(132), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(134), + [anon_sym_BQUOTE] = ACTIONS(136), + [anon_sym_LT_LPAREN] = ACTIONS(138), + [anon_sym_GT_LPAREN] = ACTIONS(138), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(140), }, [548] = { - [sym_string] = STATE(1084), - [anon_sym_DQUOTE] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(2156), - [anon_sym_POUND] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2156), - [anon_sym_QMARK] = ACTIONS(2156), - [anon_sym_0] = ACTIONS(2160), - [anon_sym__] = ACTIONS(2160), + [sym_concatenation] = STATE(95), + [sym_string] = STATE(90), + [sym_simple_expansion] = STATE(90), + [sym_string_expansion] = STATE(90), + [sym_expansion] = STATE(90), + [sym_command_substitution] = STATE(90), + [sym_process_substitution] = STATE(90), + [aux_sym_command_repeat2] = STATE(372), + [anon_sym_EQ_TILDE] = ACTIONS(142), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2236), + [sym__special_characters] = ACTIONS(670), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [sym_raw_string] = ACTIONS(150), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(156), + [anon_sym_LT_LPAREN] = ACTIONS(158), + [anon_sym_GT_LPAREN] = ACTIONS(158), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(160), }, [549] = { - [aux_sym_concatenation_repeat1] = STATE(1079), - [sym__concat] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2014), - [anon_sym_PIPE_AMP] = ACTIONS(2016), - [anon_sym_AMP_AMP] = ACTIONS(2016), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [sym__special_characters] = ACTIONS(2014), - [anon_sym_DQUOTE] = ACTIONS(2016), - [anon_sym_DOLLAR] = ACTIONS(2014), - [sym_raw_string] = ACTIONS(2016), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2016), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2016), - [anon_sym_BQUOTE] = ACTIONS(2016), - [anon_sym_LT_LPAREN] = ACTIONS(2016), - [anon_sym_GT_LPAREN] = ACTIONS(2016), + [sym__assignment] = STATE(1019), + [anon_sym_LBRACK] = ACTIONS(64), + [anon_sym_EQ] = ACTIONS(2238), + [anon_sym_PLUS_EQ] = ACTIONS(2238), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2014), - [sym_word] = ACTIONS(712), }, [550] = { - [sym_subscript] = STATE(1089), - [sym_variable_name] = ACTIONS(2162), - [anon_sym_DOLLAR] = ACTIONS(2164), - [anon_sym_POUND] = ACTIONS(2166), - [anon_sym_DASH] = ACTIONS(2164), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2168), - [anon_sym_STAR] = ACTIONS(2164), - [anon_sym_AT] = ACTIONS(2164), - [anon_sym_QMARK] = ACTIONS(2164), - [anon_sym_0] = ACTIONS(2170), - [anon_sym__] = ACTIONS(2170), + [aux_sym_concatenation_repeat1] = STATE(1119), + [sym__concat] = ACTIONS(2240), + [sym_variable_name] = ACTIONS(676), + [anon_sym_PIPE] = ACTIONS(2058), + [anon_sym_PIPE_AMP] = ACTIONS(676), + [anon_sym_AMP_AMP] = ACTIONS(676), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [sym__special_characters] = ACTIONS(2058), + [anon_sym_DQUOTE] = ACTIONS(676), + [anon_sym_DOLLAR] = ACTIONS(2058), + [sym_raw_string] = ACTIONS(676), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(676), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(676), + [anon_sym_BQUOTE] = ACTIONS(676), + [anon_sym_LT_LPAREN] = ACTIONS(676), + [anon_sym_GT_LPAREN] = ACTIONS(676), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2058), + [sym_word] = ACTIONS(678), }, [551] = { - [sym_for_statement] = STATE(1090), - [sym_while_statement] = STATE(1090), - [sym_if_statement] = STATE(1090), - [sym_case_statement] = STATE(1090), - [sym_function_definition] = STATE(1090), - [sym_subshell] = STATE(1090), - [sym_pipeline] = STATE(1090), - [sym_list] = STATE(1090), - [sym_bracket_command] = STATE(1090), - [sym_command] = STATE(1090), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1091), - [sym_declaration_command] = STATE(1090), - [sym_unset_command] = STATE(1090), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(1121), + [anon_sym_DQUOTE] = ACTIONS(2242), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, [552] = { - [sym_for_statement] = STATE(1092), - [sym_while_statement] = STATE(1092), - [sym_if_statement] = STATE(1092), - [sym_case_statement] = STATE(1092), - [sym_function_definition] = STATE(1092), - [sym_subshell] = STATE(1092), - [sym_pipeline] = STATE(1092), - [sym_list] = STATE(1092), - [sym_bracket_command] = STATE(1092), - [sym_command] = STATE(1092), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(1093), - [sym_declaration_command] = STATE(1092), - [sym_unset_command] = STATE(1092), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), + [sym_string] = STATE(1124), + [anon_sym_DQUOTE] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(2244), + [anon_sym_POUND] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2244), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_AT] = ACTIONS(2244), + [anon_sym_QMARK] = ACTIONS(2244), + [anon_sym_0] = ACTIONS(2248), + [anon_sym__] = ACTIONS(2248), }, [553] = { - [sym_for_statement] = STATE(1094), - [sym_while_statement] = STATE(1094), - [sym_if_statement] = STATE(1094), - [sym_case_statement] = STATE(1094), - [sym_function_definition] = STATE(1094), - [sym_subshell] = STATE(1094), - [sym_pipeline] = STATE(1094), - [sym_list] = STATE(1094), - [sym_bracket_command] = STATE(1094), - [sym_command] = STATE(1094), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1095), - [sym_declaration_command] = STATE(1094), - [sym_unset_command] = STATE(1094), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [aux_sym_concatenation_repeat1] = STATE(1119), + [sym__concat] = ACTIONS(2240), + [sym_variable_name] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_PIPE_AMP] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [sym__special_characters] = ACTIONS(2068), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(2068), + [sym_raw_string] = ACTIONS(690), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(690), + [anon_sym_BQUOTE] = ACTIONS(690), + [anon_sym_LT_LPAREN] = ACTIONS(690), + [anon_sym_GT_LPAREN] = ACTIONS(690), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2068), + [sym_word] = ACTIONS(692), }, [554] = { - [sym_concatenation] = STATE(497), - [sym_string] = STATE(549), - [sym_simple_expansion] = STATE(549), - [sym_string_expansion] = STATE(549), - [sym_expansion] = STATE(549), - [sym_command_substitution] = STATE(549), - [sym_process_substitution] = STATE(549), - [aux_sym_unset_command_repeat1] = STATE(1096), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_PIPE_AMP] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [sym__special_characters] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(996), - [sym_raw_string] = ACTIONS(998), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1000), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1002), - [anon_sym_BQUOTE] = ACTIONS(2034), - [anon_sym_LT_LPAREN] = ACTIONS(1004), - [anon_sym_GT_LPAREN] = ACTIONS(1004), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(906), - [sym_word] = ACTIONS(1006), + [sym_subscript] = STATE(1129), + [sym_variable_name] = ACTIONS(2250), + [anon_sym_DOLLAR] = ACTIONS(2252), + [anon_sym_POUND] = ACTIONS(2254), + [anon_sym_DASH] = ACTIONS(2252), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2256), + [anon_sym_STAR] = ACTIONS(2252), + [anon_sym_AT] = ACTIONS(2252), + [anon_sym_QMARK] = ACTIONS(2252), + [anon_sym_0] = ACTIONS(2258), + [anon_sym__] = ACTIONS(2258), }, [555] = { - [sym_string] = STATE(1097), - [sym_simple_expansion] = STATE(1097), - [sym_string_expansion] = STATE(1097), - [sym_expansion] = STATE(1097), - [sym_command_substitution] = STATE(1097), - [sym_process_substitution] = STATE(1097), - [sym__special_characters] = ACTIONS(2172), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(2174), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), + [sym_for_statement] = STATE(1130), + [sym_while_statement] = STATE(1130), + [sym_if_statement] = STATE(1130), + [sym_case_statement] = STATE(1130), + [sym_function_definition] = STATE(1130), + [sym_subshell] = STATE(1130), + [sym_pipeline] = STATE(1130), + [sym_list] = STATE(1130), + [sym_command] = STATE(1130), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1130), + [sym_variable_assignment] = STATE(1131), + [sym_declaration_command] = STATE(1130), + [sym_unset_command] = STATE(1130), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2172), + [sym_word] = ACTIONS(300), }, [556] = { - [aux_sym_concatenation_repeat1] = STATE(1098), - [sym_file_descriptor] = ACTIONS(760), - [sym__concat] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1501), - [anon_sym_PIPE_AMP] = ACTIONS(760), - [anon_sym_AMP_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(760), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(760), - [anon_sym_AMP_GT] = ACTIONS(1501), - [anon_sym_AMP_GT_GT] = ACTIONS(760), - [anon_sym_LT_AMP] = ACTIONS(760), - [anon_sym_GT_AMP] = ACTIONS(760), - [anon_sym_LT_LT] = ACTIONS(1501), - [anon_sym_LT_LT_DASH] = ACTIONS(760), - [anon_sym_LT_LT_LT] = ACTIONS(760), - [sym__special_characters] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(760), - [anon_sym_DOLLAR] = ACTIONS(1501), - [sym_raw_string] = ACTIONS(760), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(760), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(760), - [anon_sym_BQUOTE] = ACTIONS(760), - [anon_sym_LT_LPAREN] = ACTIONS(760), - [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym_for_statement] = STATE(1132), + [sym_while_statement] = STATE(1132), + [sym_if_statement] = STATE(1132), + [sym_case_statement] = STATE(1132), + [sym_function_definition] = STATE(1132), + [sym_subshell] = STATE(1132), + [sym_pipeline] = STATE(1132), + [sym_list] = STATE(1132), + [sym_command] = STATE(1132), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(1132), + [sym_variable_assignment] = STATE(1133), + [sym_declaration_command] = STATE(1132), + [sym_unset_command] = STATE(1132), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1501), + [sym_word] = ACTIONS(332), }, [557] = { - [sym_file_descriptor] = ACTIONS(764), - [sym__concat] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_PIPE_AMP] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(1503), - [anon_sym_GT_GT] = ACTIONS(764), - [anon_sym_AMP_GT] = ACTIONS(1503), - [anon_sym_AMP_GT_GT] = ACTIONS(764), - [anon_sym_LT_AMP] = ACTIONS(764), - [anon_sym_GT_AMP] = ACTIONS(764), - [anon_sym_LT_LT] = ACTIONS(1503), - [anon_sym_LT_LT_DASH] = ACTIONS(764), - [anon_sym_LT_LT_LT] = ACTIONS(764), - [sym__special_characters] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(1503), - [sym_raw_string] = ACTIONS(764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(764), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(764), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_LT_LPAREN] = ACTIONS(764), - [anon_sym_GT_LPAREN] = ACTIONS(764), + [sym_for_statement] = STATE(1134), + [sym_while_statement] = STATE(1134), + [sym_if_statement] = STATE(1134), + [sym_case_statement] = STATE(1134), + [sym_function_definition] = STATE(1134), + [sym_subshell] = STATE(1134), + [sym_pipeline] = STATE(1134), + [sym_list] = STATE(1134), + [sym_command] = STATE(1134), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1134), + [sym_variable_assignment] = STATE(1135), + [sym_declaration_command] = STATE(1134), + [sym_unset_command] = STATE(1134), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1503), + [sym_word] = ACTIONS(300), }, [558] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym__assignment] = STATE(1019), + [anon_sym_EQ] = ACTIONS(2238), + [anon_sym_PLUS_EQ] = ACTIONS(2238), + [sym_comment] = ACTIONS(56), }, [559] = { - [sym_file_descriptor] = ACTIONS(796), - [sym__concat] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_GT_GT] = ACTIONS(796), - [anon_sym_AMP_GT] = ACTIONS(1507), - [anon_sym_AMP_GT_GT] = ACTIONS(796), - [anon_sym_LT_AMP] = ACTIONS(796), - [anon_sym_GT_AMP] = ACTIONS(796), - [anon_sym_LT_LT] = ACTIONS(1507), - [anon_sym_LT_LT_DASH] = ACTIONS(796), - [anon_sym_LT_LT_LT] = ACTIONS(796), - [sym__special_characters] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(1507), - [sym_raw_string] = ACTIONS(796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [anon_sym_LT_LPAREN] = ACTIONS(796), - [anon_sym_GT_LPAREN] = ACTIONS(796), + [sym_variable_assignment] = STATE(496), + [sym_subscript] = STATE(558), + [sym_concatenation] = STATE(496), + [sym_string] = STATE(553), + [sym_simple_expansion] = STATE(553), + [sym_string_expansion] = STATE(553), + [sym_expansion] = STATE(553), + [sym_command_substitution] = STATE(553), + [sym_process_substitution] = STATE(553), + [aux_sym_declaration_command_repeat1] = STATE(1136), + [sym_variable_name] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_PIPE_AMP] = ACTIONS(2084), + [anon_sym_AMP_AMP] = ACTIONS(2084), + [anon_sym_PIPE_PIPE] = ACTIONS(2084), + [sym__special_characters] = ACTIONS(996), + [anon_sym_DQUOTE] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1000), + [sym_raw_string] = ACTIONS(1002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1004), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1006), + [anon_sym_BQUOTE] = ACTIONS(2084), + [anon_sym_LT_LPAREN] = ACTIONS(1008), + [anon_sym_GT_LPAREN] = ACTIONS(1008), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1507), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(900), + [sym_word] = ACTIONS(1010), }, [560] = { - [sym_file_descriptor] = ACTIONS(800), - [sym__concat] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_PIPE_AMP] = ACTIONS(800), - [anon_sym_AMP_AMP] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_GT_GT] = ACTIONS(800), - [anon_sym_AMP_GT] = ACTIONS(1509), - [anon_sym_AMP_GT_GT] = ACTIONS(800), - [anon_sym_LT_AMP] = ACTIONS(800), - [anon_sym_GT_AMP] = ACTIONS(800), - [anon_sym_LT_LT] = ACTIONS(1509), - [anon_sym_LT_LT_DASH] = ACTIONS(800), - [anon_sym_LT_LT_LT] = ACTIONS(800), - [sym__special_characters] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR] = ACTIONS(1509), - [sym_raw_string] = ACTIONS(800), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(800), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(800), - [anon_sym_BQUOTE] = ACTIONS(800), - [anon_sym_LT_LPAREN] = ACTIONS(800), - [anon_sym_GT_LPAREN] = ACTIONS(800), + [aux_sym_concatenation_repeat1] = STATE(1138), + [sym__concat] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2088), + [anon_sym_PIPE_AMP] = ACTIONS(2090), + [anon_sym_AMP_AMP] = ACTIONS(2090), + [anon_sym_PIPE_PIPE] = ACTIONS(2090), + [sym__special_characters] = ACTIONS(2088), + [anon_sym_DQUOTE] = ACTIONS(2090), + [anon_sym_DOLLAR] = ACTIONS(2088), + [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(56), - [sym_word] = ACTIONS(1509), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2088), + [sym_word] = ACTIONS(712), }, [561] = { - [sym_file_descriptor] = ACTIONS(804), - [sym__concat] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_PIPE_AMP] = ACTIONS(804), - [anon_sym_AMP_AMP] = ACTIONS(804), - [anon_sym_PIPE_PIPE] = ACTIONS(804), - [anon_sym_LT] = ACTIONS(1511), - [anon_sym_GT] = ACTIONS(1511), - [anon_sym_GT_GT] = ACTIONS(804), - [anon_sym_AMP_GT] = ACTIONS(1511), - [anon_sym_AMP_GT_GT] = ACTIONS(804), - [anon_sym_LT_AMP] = ACTIONS(804), - [anon_sym_GT_AMP] = ACTIONS(804), - [anon_sym_LT_LT] = ACTIONS(1511), - [anon_sym_LT_LT_DASH] = ACTIONS(804), - [anon_sym_LT_LT_LT] = ACTIONS(804), - [sym__special_characters] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(804), - [anon_sym_DOLLAR] = ACTIONS(1511), - [sym_raw_string] = ACTIONS(804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(804), - [anon_sym_BQUOTE] = ACTIONS(804), - [anon_sym_LT_LPAREN] = ACTIONS(804), - [anon_sym_GT_LPAREN] = ACTIONS(804), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1511), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(1140), + [anon_sym_DQUOTE] = ACTIONS(2262), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, [562] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(2178), - [sym_comment] = ACTIONS(56), + [sym_string] = STATE(1143), + [anon_sym_DQUOTE] = ACTIONS(1014), + [anon_sym_DOLLAR] = ACTIONS(2264), + [anon_sym_POUND] = ACTIONS(2264), + [anon_sym_DASH] = ACTIONS(2264), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2266), + [anon_sym_STAR] = ACTIONS(2264), + [anon_sym_AT] = ACTIONS(2264), + [anon_sym_QMARK] = ACTIONS(2264), + [anon_sym_0] = ACTIONS(2268), + [anon_sym__] = ACTIONS(2268), }, [563] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1102), - [anon_sym_RBRACE] = ACTIONS(2180), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [aux_sym_concatenation_repeat1] = STATE(1138), + [sym__concat] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2100), + [anon_sym_PIPE_AMP] = ACTIONS(2102), + [anon_sym_AMP_AMP] = ACTIONS(2102), + [anon_sym_PIPE_PIPE] = ACTIONS(2102), + [sym__special_characters] = ACTIONS(2100), + [anon_sym_DQUOTE] = ACTIONS(2102), + [anon_sym_DOLLAR] = ACTIONS(2100), + [sym_raw_string] = ACTIONS(2102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2102), + [anon_sym_BQUOTE] = ACTIONS(2102), + [anon_sym_LT_LPAREN] = ACTIONS(2102), + [anon_sym_GT_LPAREN] = ACTIONS(2102), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2100), + [sym_word] = ACTIONS(724), }, [564] = { - [sym_subscript] = STATE(1106), - [sym_variable_name] = ACTIONS(2182), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2184), - [anon_sym_QMARK] = ACTIONS(2184), - [anon_sym_0] = ACTIONS(2188), - [anon_sym__] = ACTIONS(2188), + [sym_subscript] = STATE(1148), + [sym_variable_name] = ACTIONS(2270), + [anon_sym_DOLLAR] = ACTIONS(2272), + [anon_sym_POUND] = ACTIONS(2274), + [anon_sym_DASH] = ACTIONS(2272), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2276), + [anon_sym_STAR] = ACTIONS(2272), + [anon_sym_AT] = ACTIONS(2272), + [anon_sym_QMARK] = ACTIONS(2272), + [anon_sym_0] = ACTIONS(2278), + [anon_sym__] = ACTIONS(2278), }, [565] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1108), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_for_statement] = STATE(1149), + [sym_while_statement] = STATE(1149), + [sym_if_statement] = STATE(1149), + [sym_case_statement] = STATE(1149), + [sym_function_definition] = STATE(1149), + [sym_subshell] = STATE(1149), + [sym_pipeline] = STATE(1149), + [sym_list] = STATE(1149), + [sym_command] = STATE(1149), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1149), + [sym_variable_assignment] = STATE(1150), + [sym_declaration_command] = STATE(1149), + [sym_unset_command] = STATE(1149), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), }, [566] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1110), - [anon_sym_RBRACE] = ACTIONS(2192), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_for_statement] = STATE(1151), + [sym_while_statement] = STATE(1151), + [sym_if_statement] = STATE(1151), + [sym_case_statement] = STATE(1151), + [sym_function_definition] = STATE(1151), + [sym_subshell] = STATE(1151), + [sym_pipeline] = STATE(1151), + [sym_list] = STATE(1151), + [sym_command] = STATE(1151), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(1151), + [sym_variable_assignment] = STATE(1152), + [sym_declaration_command] = STATE(1151), + [sym_unset_command] = STATE(1151), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), }, [567] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(2194), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), + [sym_for_statement] = STATE(1153), + [sym_while_statement] = STATE(1153), + [sym_if_statement] = STATE(1153), + [sym_case_statement] = STATE(1153), + [sym_function_definition] = STATE(1153), + [sym_subshell] = STATE(1153), + [sym_pipeline] = STATE(1153), + [sym_list] = STATE(1153), + [sym_command] = STATE(1153), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1153), + [sym_variable_assignment] = STATE(1154), + [sym_declaration_command] = STATE(1153), + [sym_unset_command] = STATE(1153), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), }, [568] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(2194), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [sym_concatenation] = STATE(508), + [sym_string] = STATE(563), + [sym_simple_expansion] = STATE(563), + [sym_string_expansion] = STATE(563), + [sym_expansion] = STATE(563), + [sym_command_substitution] = STATE(563), + [sym_process_substitution] = STATE(563), + [aux_sym_unset_command_repeat1] = STATE(1155), + [anon_sym_PIPE] = ACTIONS(2118), + [anon_sym_PIPE_AMP] = ACTIONS(2120), + [anon_sym_AMP_AMP] = ACTIONS(2120), + [anon_sym_PIPE_PIPE] = ACTIONS(2120), + [sym__special_characters] = ACTIONS(1012), + [anon_sym_DQUOTE] = ACTIONS(1014), + [anon_sym_DOLLAR] = ACTIONS(1016), + [sym_raw_string] = ACTIONS(1018), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1020), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1022), + [anon_sym_BQUOTE] = ACTIONS(2120), + [anon_sym_LT_LPAREN] = ACTIONS(1024), + [anon_sym_GT_LPAREN] = ACTIONS(1024), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(924), + [sym_word] = ACTIONS(1026), }, [569] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(2194), + [sym_string] = STATE(1156), + [sym_simple_expansion] = STATE(1156), + [sym_string_expansion] = STATE(1156), + [sym_expansion] = STATE(1156), + [sym_command_substitution] = STATE(1156), + [sym_process_substitution] = STATE(1156), + [sym__special_characters] = ACTIONS(2280), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(2282), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2280), }, [570] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(2194), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [aux_sym_concatenation_repeat1] = STATE(1157), + [sym_file_descriptor] = ACTIONS(772), + [sym__concat] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(1539), + [anon_sym_PIPE_AMP] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(772), + [anon_sym_PIPE_PIPE] = ACTIONS(772), + [anon_sym_EQ_TILDE] = ACTIONS(1539), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_GT_GT] = ACTIONS(772), + [anon_sym_AMP_GT] = ACTIONS(1539), + [anon_sym_AMP_GT_GT] = ACTIONS(772), + [anon_sym_LT_AMP] = ACTIONS(772), + [anon_sym_GT_AMP] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(1539), + [anon_sym_LT_LT_DASH] = ACTIONS(772), + [anon_sym_LT_LT_LT] = ACTIONS(772), + [sym__special_characters] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(1539), + [sym_raw_string] = ACTIONS(772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(772), + [anon_sym_BQUOTE] = ACTIONS(772), + [anon_sym_LT_LPAREN] = ACTIONS(772), + [anon_sym_GT_LPAREN] = ACTIONS(772), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_word] = ACTIONS(774), }, [571] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(2196), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), + [sym_file_descriptor] = ACTIONS(776), + [sym__concat] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_PIPE_AMP] = ACTIONS(776), + [anon_sym_AMP_AMP] = ACTIONS(776), + [anon_sym_PIPE_PIPE] = ACTIONS(776), + [anon_sym_EQ_TILDE] = ACTIONS(1541), + [anon_sym_LT] = ACTIONS(1541), + [anon_sym_GT] = ACTIONS(1541), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_AMP_GT] = ACTIONS(1541), + [anon_sym_AMP_GT_GT] = ACTIONS(776), + [anon_sym_LT_AMP] = ACTIONS(776), + [anon_sym_GT_AMP] = ACTIONS(776), + [anon_sym_LT_LT] = ACTIONS(1541), + [anon_sym_LT_LT_DASH] = ACTIONS(776), + [anon_sym_LT_LT_LT] = ACTIONS(776), + [sym__special_characters] = ACTIONS(1541), + [anon_sym_DQUOTE] = ACTIONS(776), + [anon_sym_DOLLAR] = ACTIONS(1541), + [sym_raw_string] = ACTIONS(776), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(776), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(776), + [anon_sym_BQUOTE] = ACTIONS(776), + [anon_sym_LT_LPAREN] = ACTIONS(776), + [anon_sym_GT_LPAREN] = ACTIONS(776), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(778), }, [572] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(2196), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(2284), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, [573] = { - [anon_sym_RPAREN] = ACTIONS(2198), + [sym_file_descriptor] = ACTIONS(808), + [sym__concat] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PIPE_AMP] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [anon_sym_EQ_TILDE] = ACTIONS(1545), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_GT_GT] = ACTIONS(808), + [anon_sym_AMP_GT] = ACTIONS(1545), + [anon_sym_AMP_GT_GT] = ACTIONS(808), + [anon_sym_LT_AMP] = ACTIONS(808), + [anon_sym_GT_AMP] = ACTIONS(808), + [anon_sym_LT_LT] = ACTIONS(1545), + [anon_sym_LT_LT_DASH] = ACTIONS(808), + [anon_sym_LT_LT_LT] = ACTIONS(808), + [sym__special_characters] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(808), + [anon_sym_DOLLAR] = ACTIONS(1545), + [sym_raw_string] = ACTIONS(808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(808), + [anon_sym_BQUOTE] = ACTIONS(808), + [anon_sym_LT_LPAREN] = ACTIONS(808), + [anon_sym_GT_LPAREN] = ACTIONS(808), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(810), }, [574] = { - [sym_for_statement] = STATE(1023), - [sym_while_statement] = STATE(1023), - [sym_if_statement] = STATE(1023), - [sym_case_statement] = STATE(1023), - [sym_function_definition] = STATE(1023), - [sym_subshell] = STATE(1023), - [sym_pipeline] = STATE(1023), - [sym_list] = STATE(1023), - [sym_bracket_command] = STATE(1023), - [sym_command] = STATE(1023), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(1114), - [sym_declaration_command] = STATE(1023), - [sym_unset_command] = STATE(1023), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), + [sym_file_descriptor] = ACTIONS(812), + [sym__concat] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(1547), + [anon_sym_PIPE_AMP] = ACTIONS(812), + [anon_sym_AMP_AMP] = ACTIONS(812), + [anon_sym_PIPE_PIPE] = ACTIONS(812), + [anon_sym_EQ_TILDE] = ACTIONS(1547), + [anon_sym_LT] = ACTIONS(1547), + [anon_sym_GT] = ACTIONS(1547), + [anon_sym_GT_GT] = ACTIONS(812), + [anon_sym_AMP_GT] = ACTIONS(1547), + [anon_sym_AMP_GT_GT] = ACTIONS(812), + [anon_sym_LT_AMP] = ACTIONS(812), + [anon_sym_GT_AMP] = ACTIONS(812), + [anon_sym_LT_LT] = ACTIONS(1547), + [anon_sym_LT_LT_DASH] = ACTIONS(812), + [anon_sym_LT_LT_LT] = ACTIONS(812), + [sym__special_characters] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR] = ACTIONS(1547), + [sym_raw_string] = ACTIONS(812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(812), + [anon_sym_BQUOTE] = ACTIONS(812), + [anon_sym_LT_LPAREN] = ACTIONS(812), + [anon_sym_GT_LPAREN] = ACTIONS(812), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), + [sym_word] = ACTIONS(814), }, [575] = { - [sym_for_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_if_statement] = STATE(1115), - [sym_case_statement] = STATE(1115), - [sym_function_definition] = STATE(1115), - [sym_subshell] = STATE(1115), - [sym_pipeline] = STATE(1115), - [sym_list] = STATE(1115), - [sym_bracket_command] = STATE(1115), - [sym_command] = STATE(1115), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(1116), - [sym_declaration_command] = STATE(1115), - [sym_unset_command] = STATE(1115), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), + [sym_file_descriptor] = ACTIONS(816), + [sym__concat] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_PIPE_AMP] = ACTIONS(816), + [anon_sym_AMP_AMP] = ACTIONS(816), + [anon_sym_PIPE_PIPE] = ACTIONS(816), + [anon_sym_EQ_TILDE] = ACTIONS(1549), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1549), + [anon_sym_GT_GT] = ACTIONS(816), + [anon_sym_AMP_GT] = ACTIONS(1549), + [anon_sym_AMP_GT_GT] = ACTIONS(816), + [anon_sym_LT_AMP] = ACTIONS(816), + [anon_sym_GT_AMP] = ACTIONS(816), + [anon_sym_LT_LT] = ACTIONS(1549), + [anon_sym_LT_LT_DASH] = ACTIONS(816), + [anon_sym_LT_LT_LT] = ACTIONS(816), + [sym__special_characters] = ACTIONS(1549), + [anon_sym_DQUOTE] = ACTIONS(816), + [anon_sym_DOLLAR] = ACTIONS(1549), + [sym_raw_string] = ACTIONS(816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(816), + [anon_sym_BQUOTE] = ACTIONS(816), + [anon_sym_LT_LPAREN] = ACTIONS(816), + [anon_sym_GT_LPAREN] = ACTIONS(816), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), + [sym_word] = ACTIONS(818), }, [576] = { - [anon_sym_LT] = ACTIONS(2200), - [anon_sym_GT] = ACTIONS(2200), - [anon_sym_GT_GT] = ACTIONS(2202), - [anon_sym_AMP_GT] = ACTIONS(2200), - [anon_sym_AMP_GT_GT] = ACTIONS(2202), - [anon_sym_LT_AMP] = ACTIONS(2202), - [anon_sym_GT_AMP] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(2286), [sym_comment] = ACTIONS(56), }, [577] = { - [sym_concatenation] = STATE(1036), - [sym_string] = STATE(1121), - [sym_simple_expansion] = STATE(1121), - [sym_string_expansion] = STATE(1121), - [sym_expansion] = STATE(1121), - [sym_command_substitution] = STATE(1121), - [sym_process_substitution] = STATE(1121), - [sym__special_characters] = ACTIONS(2204), - [anon_sym_DQUOTE] = ACTIONS(2206), - [anon_sym_DOLLAR] = ACTIONS(2208), - [sym_raw_string] = ACTIONS(2210), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2212), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2214), - [anon_sym_BQUOTE] = ACTIONS(2216), - [anon_sym_LT_LPAREN] = ACTIONS(2218), - [anon_sym_GT_LPAREN] = ACTIONS(2218), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2220), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1162), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(2290), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [578] = { - [sym_concatenation] = STATE(1042), - [sym_string] = STATE(1127), - [sym_simple_expansion] = STATE(1127), - [sym_string_expansion] = STATE(1127), - [sym_expansion] = STATE(1127), - [sym_command_substitution] = STATE(1127), - [sym_process_substitution] = STATE(1127), - [sym__special_characters] = ACTIONS(2222), - [anon_sym_DQUOTE] = ACTIONS(2206), - [anon_sym_DOLLAR] = ACTIONS(2208), - [sym_raw_string] = ACTIONS(2224), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2212), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2214), - [anon_sym_BQUOTE] = ACTIONS(2216), - [anon_sym_LT_LPAREN] = ACTIONS(2218), - [anon_sym_GT_LPAREN] = ACTIONS(2218), + [sym_subscript] = STATE(1166), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [anon_sym_DASH] = ACTIONS(2294), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2226), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(2294), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_QMARK] = ACTIONS(2294), + [anon_sym_0] = ACTIONS(2298), + [anon_sym__] = ACTIONS(2298), }, [579] = { - [aux_sym_concatenation_repeat1] = STATE(556), - [sym_file_descriptor] = ACTIONS(1096), - [sym__concat] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_PIPE_AMP] = ACTIONS(1096), - [anon_sym_AMP_AMP] = ACTIONS(1096), - [anon_sym_PIPE_PIPE] = ACTIONS(1096), - [anon_sym_LT] = ACTIONS(2100), - [anon_sym_GT] = ACTIONS(2100), - [anon_sym_GT_GT] = ACTIONS(1096), - [anon_sym_AMP_GT] = ACTIONS(2100), - [anon_sym_AMP_GT_GT] = ACTIONS(1096), - [anon_sym_LT_AMP] = ACTIONS(1096), - [anon_sym_GT_AMP] = ACTIONS(1096), - [anon_sym_LT_LT] = ACTIONS(2100), - [anon_sym_LT_LT_DASH] = ACTIONS(1096), - [anon_sym_LT_LT_LT] = ACTIONS(1096), - [sym__special_characters] = ACTIONS(2100), - [anon_sym_DQUOTE] = ACTIONS(1096), - [anon_sym_DOLLAR] = ACTIONS(2100), - [sym_raw_string] = ACTIONS(1096), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1096), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1096), - [anon_sym_BQUOTE] = ACTIONS(1096), - [anon_sym_LT_LPAREN] = ACTIONS(1096), - [anon_sym_GT_LPAREN] = ACTIONS(1096), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2100), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1169), + [anon_sym_RBRACE] = ACTIONS(2300), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(2302), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [580] = { - [aux_sym_concatenation_repeat1] = STATE(556), - [sym_file_descriptor] = ACTIONS(1100), - [sym__concat] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(2102), - [anon_sym_PIPE_AMP] = ACTIONS(1100), - [anon_sym_AMP_AMP] = ACTIONS(1100), - [anon_sym_PIPE_PIPE] = ACTIONS(1100), - [anon_sym_LT] = ACTIONS(2102), - [anon_sym_GT] = ACTIONS(2102), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(2102), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [anon_sym_LT_LT] = ACTIONS(2102), - [anon_sym_LT_LT_DASH] = ACTIONS(1100), - [anon_sym_LT_LT_LT] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(2102), - [anon_sym_DQUOTE] = ACTIONS(1100), - [anon_sym_DOLLAR] = ACTIONS(2102), - [sym_raw_string] = ACTIONS(1100), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1100), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1100), - [anon_sym_BQUOTE] = ACTIONS(1100), - [anon_sym_LT_LPAREN] = ACTIONS(1100), - [anon_sym_GT_LPAREN] = ACTIONS(1100), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2102), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1172), + [anon_sym_RBRACE] = ACTIONS(2304), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(2306), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [581] = { - [sym_file_redirect] = STATE(527), - [sym_heredoc_redirect] = STATE(527), - [sym_herestring_redirect] = STATE(527), - [sym_concatenation] = STATE(528), - [sym_string] = STATE(580), - [sym_simple_expansion] = STATE(580), - [sym_string_expansion] = STATE(580), - [sym_expansion] = STATE(580), - [sym_command_substitution] = STATE(580), - [sym_process_substitution] = STATE(580), - [aux_sym_for_statement_repeat1] = STATE(1128), - [aux_sym_while_statement_repeat1] = STATE(1129), - [sym_file_descriptor] = ACTIONS(1036), - [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(1038), - [anon_sym_GT] = ACTIONS(1038), - [anon_sym_GT_GT] = ACTIONS(1040), - [anon_sym_AMP_GT] = ACTIONS(1038), - [anon_sym_AMP_GT_GT] = ACTIONS(1040), - [anon_sym_LT_AMP] = ACTIONS(1040), - [anon_sym_GT_AMP] = ACTIONS(1040), - [anon_sym_LT_LT] = ACTIONS(954), - [anon_sym_LT_LT_DASH] = ACTIONS(956), - [anon_sym_LT_LT_LT] = ACTIONS(1042), - [sym__special_characters] = ACTIONS(1044), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(1046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(2108), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2308), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1048), }, [582] = { - [sym_file_redirect] = STATE(527), - [sym_heredoc_redirect] = STATE(527), - [sym_herestring_redirect] = STATE(527), - [aux_sym_while_statement_repeat1] = STATE(1130), - [sym_file_descriptor] = ACTIONS(1036), - [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(1038), - [anon_sym_GT] = ACTIONS(1038), - [anon_sym_GT_GT] = ACTIONS(1040), - [anon_sym_AMP_GT] = ACTIONS(1038), - [anon_sym_AMP_GT_GT] = ACTIONS(1040), - [anon_sym_LT_AMP] = ACTIONS(1040), - [anon_sym_GT_AMP] = ACTIONS(1040), - [anon_sym_LT_LT] = ACTIONS(954), - [anon_sym_LT_LT_DASH] = ACTIONS(956), - [anon_sym_LT_LT_LT] = ACTIONS(1042), - [anon_sym_BQUOTE] = ACTIONS(2108), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2308), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), }, [583] = { - [sym_file_redirect] = STATE(527), - [sym_heredoc_redirect] = STATE(527), - [sym_herestring_redirect] = STATE(527), - [sym_concatenation] = STATE(528), - [sym_string] = STATE(580), - [sym_simple_expansion] = STATE(580), - [sym_string_expansion] = STATE(580), - [sym_expansion] = STATE(580), - [sym_command_substitution] = STATE(580), - [sym_process_substitution] = STATE(580), - [aux_sym_for_statement_repeat1] = STATE(1131), - [aux_sym_while_statement_repeat1] = STATE(1129), - [sym_file_descriptor] = ACTIONS(1036), - [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(1038), - [anon_sym_GT] = ACTIONS(1038), - [anon_sym_GT_GT] = ACTIONS(1040), - [anon_sym_AMP_GT] = ACTIONS(1038), - [anon_sym_AMP_GT_GT] = ACTIONS(1040), - [anon_sym_LT_AMP] = ACTIONS(1040), - [anon_sym_GT_AMP] = ACTIONS(1040), - [anon_sym_LT_LT] = ACTIONS(954), - [anon_sym_LT_LT_DASH] = ACTIONS(956), - [anon_sym_LT_LT_LT] = ACTIONS(1042), - [sym__special_characters] = ACTIONS(1044), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(1046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(2108), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(2308), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1048), }, [584] = { - [sym_file_descriptor] = ACTIONS(2228), - [sym__concat] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_SEMI_SEMI] = ACTIONS(2230), - [anon_sym_PIPE_AMP] = ACTIONS(2230), - [anon_sym_AMP_AMP] = ACTIONS(2230), - [anon_sym_PIPE_PIPE] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_AMP_GT] = ACTIONS(2230), - [anon_sym_AMP_GT_GT] = ACTIONS(2230), - [anon_sym_LT_AMP] = ACTIONS(2230), - [anon_sym_GT_AMP] = ACTIONS(2230), - [anon_sym_LT_LT] = ACTIONS(2230), - [anon_sym_LT_LT_DASH] = ACTIONS(2230), - [anon_sym_LT_LT_LT] = ACTIONS(2230), - [sym__special_characters] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2230), - [anon_sym_DOLLAR] = ACTIONS(2230), - [sym_raw_string] = ACTIONS(2230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2230), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2230), - [anon_sym_BQUOTE] = ACTIONS(2230), - [anon_sym_LT_LPAREN] = ACTIONS(2230), - [anon_sym_GT_LPAREN] = ACTIONS(2230), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_LF] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(2308), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), }, [585] = { - [sym_compound_statement] = STATE(1132), - [anon_sym_LBRACE] = ACTIONS(470), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2310), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), [sym_comment] = ACTIONS(56), }, [586] = { - [anon_sym_PIPE] = ACTIONS(2232), - [anon_sym_RPAREN] = ACTIONS(2232), - [anon_sym_SEMI_SEMI] = ACTIONS(2232), - [anon_sym_PIPE_AMP] = ACTIONS(2232), - [anon_sym_AMP_AMP] = ACTIONS(2232), - [anon_sym_PIPE_PIPE] = ACTIONS(2232), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2232), - [anon_sym_LF] = ACTIONS(2232), - [anon_sym_AMP] = ACTIONS(2232), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2310), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), }, [587] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(2232), - [anon_sym_RPAREN] = ACTIONS(2232), - [anon_sym_SEMI_SEMI] = ACTIONS(2232), - [anon_sym_PIPE_AMP] = ACTIONS(2232), - [anon_sym_AMP_AMP] = ACTIONS(2232), - [anon_sym_PIPE_PIPE] = ACTIONS(2232), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_AMP_GT] = ACTIONS(370), - [anon_sym_AMP_GT_GT] = ACTIONS(370), - [anon_sym_LT_AMP] = ACTIONS(370), - [anon_sym_GT_AMP] = ACTIONS(370), - [sym__special_characters] = ACTIONS(370), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_DOLLAR] = ACTIONS(370), - [sym_raw_string] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(370), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(370), - [anon_sym_BQUOTE] = ACTIONS(370), - [anon_sym_LT_LPAREN] = ACTIONS(370), - [anon_sym_GT_LPAREN] = ACTIONS(370), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(370), - [anon_sym_SEMI] = ACTIONS(2232), - [anon_sym_LF] = ACTIONS(2232), - [anon_sym_AMP] = ACTIONS(2232), + [anon_sym_RPAREN] = ACTIONS(2312), + [sym_comment] = ACTIONS(56), }, [588] = { - [anon_sym_PIPE] = ACTIONS(336), - [anon_sym_SEMI_SEMI] = ACTIONS(2234), - [anon_sym_PIPE_AMP] = ACTIONS(336), - [anon_sym_AMP_AMP] = ACTIONS(2234), - [anon_sym_PIPE_PIPE] = ACTIONS(2234), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_LF] = ACTIONS(2234), - [anon_sym_AMP] = ACTIONS(2234), + [sym_for_statement] = STATE(1078), + [sym_while_statement] = STATE(1078), + [sym_if_statement] = STATE(1078), + [sym_case_statement] = STATE(1078), + [sym_function_definition] = STATE(1078), + [sym_subshell] = STATE(1078), + [sym_pipeline] = STATE(1078), + [sym_list] = STATE(1078), + [sym_command] = STATE(1078), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(1078), + [sym_variable_assignment] = STATE(1176), + [sym_declaration_command] = STATE(1078), + [sym_unset_command] = STATE(1078), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), }, [589] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(336), - [anon_sym_SEMI_SEMI] = ACTIONS(2234), - [anon_sym_PIPE_AMP] = ACTIONS(336), - [anon_sym_AMP_AMP] = ACTIONS(2234), - [anon_sym_PIPE_PIPE] = ACTIONS(2234), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_AMP_GT] = ACTIONS(370), - [anon_sym_AMP_GT_GT] = ACTIONS(370), - [anon_sym_LT_AMP] = ACTIONS(370), - [anon_sym_GT_AMP] = ACTIONS(370), - [sym__special_characters] = ACTIONS(370), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_DOLLAR] = ACTIONS(370), - [sym_raw_string] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(370), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(370), - [anon_sym_BQUOTE] = ACTIONS(370), - [anon_sym_LT_LPAREN] = ACTIONS(370), - [anon_sym_GT_LPAREN] = ACTIONS(370), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(370), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_LF] = ACTIONS(2234), - [anon_sym_AMP] = ACTIONS(2234), + [sym_for_statement] = STATE(1177), + [sym_while_statement] = STATE(1177), + [sym_if_statement] = STATE(1177), + [sym_case_statement] = STATE(1177), + [sym_function_definition] = STATE(1177), + [sym_subshell] = STATE(1177), + [sym_pipeline] = STATE(1177), + [sym_list] = STATE(1177), + [sym_command] = STATE(1177), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(1177), + [sym_variable_assignment] = STATE(1178), + [sym_declaration_command] = STATE(1177), + [sym_unset_command] = STATE(1177), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), }, [590] = { - [sym_concatenation] = STATE(1135), - [sym_string] = STATE(1134), - [sym_simple_expansion] = STATE(1134), - [sym_string_expansion] = STATE(1134), - [sym_expansion] = STATE(1134), - [sym_command_substitution] = STATE(1134), - [sym_process_substitution] = STATE(1134), - [sym__special_characters] = ACTIONS(2236), - [anon_sym_DQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1072), - [sym_raw_string] = ACTIONS(2238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1076), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1078), - [anon_sym_BQUOTE] = ACTIONS(1080), - [anon_sym_LT_LPAREN] = ACTIONS(1082), - [anon_sym_GT_LPAREN] = ACTIONS(1082), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_GT] = ACTIONS(2314), + [anon_sym_GT_GT] = ACTIONS(2316), + [anon_sym_AMP_GT] = ACTIONS(2314), + [anon_sym_AMP_GT_GT] = ACTIONS(2316), + [anon_sym_LT_AMP] = ACTIONS(2316), + [anon_sym_GT_AMP] = ACTIONS(2316), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2240), }, [591] = { - [aux_sym_concatenation_repeat1] = STATE(1137), - [sym_file_descriptor] = ACTIONS(728), - [sym__concat] = ACTIONS(2242), - [anon_sym_PIPE] = ACTIONS(2244), - [anon_sym_SEMI_SEMI] = ACTIONS(2244), - [anon_sym_PIPE_AMP] = ACTIONS(2244), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE_PIPE] = ACTIONS(2244), - [anon_sym_LT] = ACTIONS(2244), - [anon_sym_GT] = ACTIONS(2244), - [anon_sym_GT_GT] = ACTIONS(2244), - [anon_sym_AMP_GT] = ACTIONS(2244), - [anon_sym_AMP_GT_GT] = ACTIONS(2244), - [anon_sym_LT_AMP] = ACTIONS(2244), - [anon_sym_GT_AMP] = ACTIONS(2244), - [anon_sym_LT_LT] = ACTIONS(2244), - [anon_sym_LT_LT_DASH] = ACTIONS(2244), - [anon_sym_LT_LT_LT] = ACTIONS(2244), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2244), - [anon_sym_LF] = ACTIONS(2244), - [anon_sym_AMP] = ACTIONS(2244), + [sym_concatenation] = STATE(1085), + [sym_string] = STATE(1181), + [sym_simple_expansion] = STATE(1181), + [sym_string_expansion] = STATE(1181), + [sym_expansion] = STATE(1181), + [sym_command_substitution] = STATE(1181), + [sym_process_substitution] = STATE(1181), + [sym__special_characters] = ACTIONS(2318), + [anon_sym_DQUOTE] = ACTIONS(2320), + [anon_sym_DOLLAR] = ACTIONS(2322), + [sym_raw_string] = ACTIONS(2324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2328), + [anon_sym_BQUOTE] = ACTIONS(2330), + [anon_sym_LT_LPAREN] = ACTIONS(2332), + [anon_sym_GT_LPAREN] = ACTIONS(2332), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2324), + [sym_regex] = ACTIONS(2180), }, [592] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(1139), - [anon_sym_DQUOTE] = ACTIONS(2246), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym_concatenation] = STATE(1094), + [sym_string] = STATE(1185), + [sym_simple_expansion] = STATE(1185), + [sym_string_expansion] = STATE(1185), + [sym_expansion] = STATE(1185), + [sym_command_substitution] = STATE(1185), + [sym_process_substitution] = STATE(1185), + [sym__special_characters] = ACTIONS(2334), + [anon_sym_DQUOTE] = ACTIONS(2336), + [anon_sym_DOLLAR] = ACTIONS(2338), + [sym_raw_string] = ACTIONS(2340), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2344), + [anon_sym_BQUOTE] = ACTIONS(2346), + [anon_sym_LT_LPAREN] = ACTIONS(2348), + [anon_sym_GT_LPAREN] = ACTIONS(2348), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2350), }, [593] = { - [sym_string] = STATE(1142), - [anon_sym_DQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(2248), - [anon_sym_POUND] = ACTIONS(2248), - [anon_sym_DASH] = ACTIONS(2248), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2250), - [anon_sym_STAR] = ACTIONS(2248), - [anon_sym_AT] = ACTIONS(2248), - [anon_sym_QMARK] = ACTIONS(2248), - [anon_sym_0] = ACTIONS(2252), - [anon_sym__] = ACTIONS(2252), + [sym_concatenation] = STATE(1100), + [sym_string] = STATE(1191), + [sym_simple_expansion] = STATE(1191), + [sym_string_expansion] = STATE(1191), + [sym_expansion] = STATE(1191), + [sym_command_substitution] = STATE(1191), + [sym_process_substitution] = STATE(1191), + [sym__special_characters] = ACTIONS(2352), + [anon_sym_DQUOTE] = ACTIONS(2336), + [anon_sym_DOLLAR] = ACTIONS(2338), + [sym_raw_string] = ACTIONS(2354), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2344), + [anon_sym_BQUOTE] = ACTIONS(2346), + [anon_sym_LT_LPAREN] = ACTIONS(2348), + [anon_sym_GT_LPAREN] = ACTIONS(2348), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2356), }, [594] = { - [aux_sym_concatenation_repeat1] = STATE(1137), - [sym_file_descriptor] = ACTIONS(742), - [sym__concat] = ACTIONS(2242), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_SEMI_SEMI] = ACTIONS(2254), - [anon_sym_PIPE_AMP] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_GT] = ACTIONS(2254), - [anon_sym_GT_GT] = ACTIONS(2254), - [anon_sym_AMP_GT] = ACTIONS(2254), - [anon_sym_AMP_GT_GT] = ACTIONS(2254), - [anon_sym_LT_AMP] = ACTIONS(2254), - [anon_sym_GT_AMP] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2254), - [anon_sym_LT_LT_DASH] = ACTIONS(2254), - [anon_sym_LT_LT_LT] = ACTIONS(2254), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LF] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2254), + [aux_sym_concatenation_repeat1] = STATE(570), + [sym_file_descriptor] = ACTIONS(600), + [sym__concat] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(598), + [anon_sym_PIPE_AMP] = ACTIONS(600), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_EQ_TILDE] = ACTIONS(598), + [anon_sym_LT] = ACTIONS(598), + [anon_sym_GT] = ACTIONS(598), + [anon_sym_GT_GT] = ACTIONS(600), + [anon_sym_AMP_GT] = ACTIONS(598), + [anon_sym_AMP_GT_GT] = ACTIONS(600), + [anon_sym_LT_AMP] = ACTIONS(600), + [anon_sym_GT_AMP] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(598), + [anon_sym_LT_LT_DASH] = ACTIONS(600), + [anon_sym_LT_LT_LT] = ACTIONS(600), + [sym__special_characters] = ACTIONS(598), + [anon_sym_DQUOTE] = ACTIONS(600), + [anon_sym_DOLLAR] = ACTIONS(598), + [sym_raw_string] = ACTIONS(600), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(600), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(600), + [anon_sym_BQUOTE] = ACTIONS(600), + [anon_sym_LT_LPAREN] = ACTIONS(600), + [anon_sym_GT_LPAREN] = ACTIONS(600), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(602), }, [595] = { - [sym_subscript] = STATE(1147), - [sym_variable_name] = ACTIONS(2256), - [anon_sym_DOLLAR] = ACTIONS(2258), - [anon_sym_POUND] = ACTIONS(2260), - [anon_sym_DASH] = ACTIONS(2258), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(2258), - [anon_sym_AT] = ACTIONS(2258), - [anon_sym_QMARK] = ACTIONS(2258), - [anon_sym_0] = ACTIONS(2264), - [anon_sym__] = ACTIONS(2264), + [aux_sym_concatenation_repeat1] = STATE(570), + [sym_file_descriptor] = ACTIONS(614), + [sym__concat] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(612), + [anon_sym_PIPE_AMP] = ACTIONS(614), + [anon_sym_AMP_AMP] = ACTIONS(614), + [anon_sym_PIPE_PIPE] = ACTIONS(614), + [anon_sym_EQ_TILDE] = ACTIONS(612), + [anon_sym_LT] = ACTIONS(612), + [anon_sym_GT] = ACTIONS(612), + [anon_sym_GT_GT] = ACTIONS(614), + [anon_sym_AMP_GT] = ACTIONS(612), + [anon_sym_AMP_GT_GT] = ACTIONS(614), + [anon_sym_LT_AMP] = ACTIONS(614), + [anon_sym_GT_AMP] = ACTIONS(614), + [anon_sym_LT_LT] = ACTIONS(612), + [anon_sym_LT_LT_DASH] = ACTIONS(614), + [anon_sym_LT_LT_LT] = ACTIONS(614), + [sym__special_characters] = ACTIONS(612), + [anon_sym_DQUOTE] = ACTIONS(614), + [anon_sym_DOLLAR] = ACTIONS(612), + [sym_raw_string] = ACTIONS(614), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(614), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(614), + [anon_sym_BQUOTE] = ACTIONS(614), + [anon_sym_LT_LPAREN] = ACTIONS(614), + [anon_sym_GT_LPAREN] = ACTIONS(614), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(616), }, [596] = { - [sym_for_statement] = STATE(1148), - [sym_while_statement] = STATE(1148), - [sym_if_statement] = STATE(1148), - [sym_case_statement] = STATE(1148), - [sym_function_definition] = STATE(1148), - [sym_subshell] = STATE(1148), - [sym_pipeline] = STATE(1148), - [sym_list] = STATE(1148), - [sym_bracket_command] = STATE(1148), - [sym_command] = STATE(1148), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1149), - [sym_declaration_command] = STATE(1148), - [sym_unset_command] = STATE(1148), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [sym_file_redirect] = STATE(539), + [sym_heredoc_redirect] = STATE(539), + [sym_herestring_redirect] = STATE(539), + [aux_sym_while_statement_repeat1] = STATE(1192), + [sym_file_descriptor] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(2212), + [anon_sym_PIPE_AMP] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_PIPE_PIPE] = ACTIONS(2214), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1060), + [anon_sym_GT_GT] = ACTIONS(1062), + [anon_sym_AMP_GT] = ACTIONS(1060), + [anon_sym_AMP_GT_GT] = ACTIONS(1062), + [anon_sym_LT_AMP] = ACTIONS(1062), + [anon_sym_GT_AMP] = ACTIONS(1062), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_LT_LT_DASH] = ACTIONS(976), + [anon_sym_LT_LT_LT] = ACTIONS(1064), + [anon_sym_BQUOTE] = ACTIONS(2214), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), }, [597] = { - [sym_for_statement] = STATE(1150), - [sym_while_statement] = STATE(1150), - [sym_if_statement] = STATE(1150), - [sym_case_statement] = STATE(1150), - [sym_function_definition] = STATE(1150), - [sym_subshell] = STATE(1150), - [sym_pipeline] = STATE(1150), - [sym_list] = STATE(1150), - [sym_bracket_command] = STATE(1150), - [sym_command] = STATE(1150), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(1151), - [sym_declaration_command] = STATE(1150), - [sym_unset_command] = STATE(1150), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), + [sym_file_redirect] = STATE(539), + [sym_heredoc_redirect] = STATE(539), + [sym_herestring_redirect] = STATE(539), + [sym_concatenation] = STATE(540), + [sym_string] = STATE(595), + [sym_simple_expansion] = STATE(595), + [sym_string_expansion] = STATE(595), + [sym_expansion] = STATE(595), + [sym_command_substitution] = STATE(595), + [sym_process_substitution] = STATE(595), + [aux_sym_while_statement_repeat1] = STATE(1193), + [aux_sym_command_repeat2] = STATE(1194), + [sym_file_descriptor] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(2212), + [anon_sym_PIPE_AMP] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_PIPE_PIPE] = ACTIONS(2214), + [anon_sym_EQ_TILDE] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1060), + [anon_sym_GT_GT] = ACTIONS(1062), + [anon_sym_AMP_GT] = ACTIONS(1060), + [anon_sym_AMP_GT_GT] = ACTIONS(1062), + [anon_sym_LT_AMP] = ACTIONS(1062), + [anon_sym_GT_AMP] = ACTIONS(1062), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_LT_LT_DASH] = ACTIONS(976), + [anon_sym_LT_LT_LT] = ACTIONS(1064), + [sym__special_characters] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(1068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(2214), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), + [sym_word] = ACTIONS(1070), }, [598] = { - [sym_for_statement] = STATE(1152), - [sym_while_statement] = STATE(1152), - [sym_if_statement] = STATE(1152), - [sym_case_statement] = STATE(1152), - [sym_function_definition] = STATE(1152), - [sym_subshell] = STATE(1152), - [sym_pipeline] = STATE(1152), - [sym_list] = STATE(1152), - [sym_bracket_command] = STATE(1152), - [sym_command] = STATE(1152), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1153), - [sym_declaration_command] = STATE(1152), - [sym_unset_command] = STATE(1152), - [sym_subscript] = STATE(168), + [sym_file_redirect] = STATE(539), + [sym_heredoc_redirect] = STATE(539), + [sym_herestring_redirect] = STATE(539), + [sym_concatenation] = STATE(540), + [sym_string] = STATE(595), + [sym_simple_expansion] = STATE(595), + [sym_string_expansion] = STATE(595), + [sym_expansion] = STATE(595), + [sym_command_substitution] = STATE(595), + [sym_process_substitution] = STATE(595), + [aux_sym_while_statement_repeat1] = STATE(1193), + [aux_sym_command_repeat2] = STATE(1195), + [sym_file_descriptor] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(2212), + [anon_sym_PIPE_AMP] = ACTIONS(2214), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_PIPE_PIPE] = ACTIONS(2214), + [anon_sym_EQ_TILDE] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1060), + [anon_sym_GT_GT] = ACTIONS(1062), + [anon_sym_AMP_GT] = ACTIONS(1060), + [anon_sym_AMP_GT_GT] = ACTIONS(1062), + [anon_sym_LT_AMP] = ACTIONS(1062), + [anon_sym_GT_AMP] = ACTIONS(1062), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_LT_LT_DASH] = ACTIONS(976), + [anon_sym_LT_LT_LT] = ACTIONS(1064), + [sym__special_characters] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(1068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(2214), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1070), + }, + [599] = { + [sym_file_descriptor] = ACTIONS(2358), + [sym__concat] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_SEMI_SEMI] = ACTIONS(2360), + [anon_sym_PIPE_AMP] = ACTIONS(2360), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_EQ_TILDE] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_AMP_GT] = ACTIONS(2360), + [anon_sym_AMP_GT_GT] = ACTIONS(2360), + [anon_sym_LT_AMP] = ACTIONS(2360), + [anon_sym_GT_AMP] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(2360), + [anon_sym_LT_LT_DASH] = ACTIONS(2360), + [anon_sym_LT_LT_LT] = ACTIONS(2360), + [sym__special_characters] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [anon_sym_DOLLAR] = ACTIONS(2360), + [sym_raw_string] = ACTIONS(2360), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2360), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2360), + [anon_sym_BQUOTE] = ACTIONS(2360), + [anon_sym_LT_LPAREN] = ACTIONS(2360), + [anon_sym_GT_LPAREN] = ACTIONS(2360), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + }, + [600] = { + [sym_compound_statement] = STATE(1196), + [anon_sym_LBRACE] = ACTIONS(480), + [sym_comment] = ACTIONS(56), + }, + [601] = { + [anon_sym_PIPE] = ACTIONS(2362), + [anon_sym_RPAREN] = ACTIONS(2362), + [anon_sym_SEMI_SEMI] = ACTIONS(2362), + [anon_sym_PIPE_AMP] = ACTIONS(2362), + [anon_sym_AMP_AMP] = ACTIONS(2362), + [anon_sym_PIPE_PIPE] = ACTIONS(2362), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2362), + [anon_sym_LF] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2362), + }, + [602] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(2362), + [anon_sym_RPAREN] = ACTIONS(2362), + [anon_sym_SEMI_SEMI] = ACTIONS(2362), + [anon_sym_PIPE_AMP] = ACTIONS(2362), + [anon_sym_AMP_AMP] = ACTIONS(2362), + [anon_sym_PIPE_PIPE] = ACTIONS(2362), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(380), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(380), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(380), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(2362), + [anon_sym_LF] = ACTIONS(2362), + [anon_sym_AMP] = ACTIONS(2362), + }, + [603] = { + [anon_sym_PIPE] = ACTIONS(344), + [anon_sym_SEMI_SEMI] = ACTIONS(2364), + [anon_sym_PIPE_AMP] = ACTIONS(344), + [anon_sym_AMP_AMP] = ACTIONS(2364), + [anon_sym_PIPE_PIPE] = ACTIONS(2364), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_LF] = ACTIONS(2364), + [anon_sym_AMP] = ACTIONS(2364), + }, + [604] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(344), + [anon_sym_SEMI_SEMI] = ACTIONS(2364), + [anon_sym_PIPE_AMP] = ACTIONS(344), + [anon_sym_AMP_AMP] = ACTIONS(2364), + [anon_sym_PIPE_PIPE] = ACTIONS(2364), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(380), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(380), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(380), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_LF] = ACTIONS(2364), + [anon_sym_AMP] = ACTIONS(2364), + }, + [605] = { + [sym_concatenation] = STATE(1199), + [sym_string] = STATE(1198), + [sym_simple_expansion] = STATE(1198), + [sym_string_expansion] = STATE(1198), + [sym_expansion] = STATE(1198), + [sym_command_substitution] = STATE(1198), + [sym_process_substitution] = STATE(1198), + [sym__special_characters] = ACTIONS(2366), + [anon_sym_DQUOTE] = ACTIONS(1098), + [anon_sym_DOLLAR] = ACTIONS(1100), + [sym_raw_string] = ACTIONS(2368), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), + [anon_sym_BQUOTE] = ACTIONS(1108), + [anon_sym_LT_LPAREN] = ACTIONS(1110), + [anon_sym_GT_LPAREN] = ACTIONS(1110), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2370), + }, + [606] = { + [aux_sym_concatenation_repeat1] = STATE(131), + [sym_file_descriptor] = ACTIONS(1525), + [sym__concat] = ACTIONS(226), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_SEMI_SEMI] = ACTIONS(1527), + [anon_sym_PIPE_AMP] = ACTIONS(1527), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1527), + [anon_sym_EQ_TILDE] = ACTIONS(1527), + [anon_sym_LT] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_AMP_GT] = ACTIONS(1527), + [anon_sym_AMP_GT_GT] = ACTIONS(1527), + [anon_sym_LT_AMP] = ACTIONS(1527), + [anon_sym_GT_AMP] = ACTIONS(1527), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_LT_LT_DASH] = ACTIONS(1527), + [anon_sym_LT_LT_LT] = ACTIONS(1527), + [sym__special_characters] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1527), + [anon_sym_DOLLAR] = ACTIONS(1527), + [sym_raw_string] = ACTIONS(1527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1527), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1527), + [anon_sym_BQUOTE] = ACTIONS(1527), + [anon_sym_LT_LPAREN] = ACTIONS(1527), + [anon_sym_GT_LPAREN] = ACTIONS(1527), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1527), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_LF] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1527), + }, + [607] = { + [aux_sym_concatenation_repeat1] = STATE(131), + [sym_file_descriptor] = ACTIONS(1531), + [sym__concat] = ACTIONS(226), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_SEMI_SEMI] = ACTIONS(1533), + [anon_sym_PIPE_AMP] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1533), + [anon_sym_PIPE_PIPE] = ACTIONS(1533), + [anon_sym_EQ_TILDE] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(1533), + [anon_sym_GT] = ACTIONS(1533), + [anon_sym_GT_GT] = ACTIONS(1533), + [anon_sym_AMP_GT] = ACTIONS(1533), + [anon_sym_AMP_GT_GT] = ACTIONS(1533), + [anon_sym_LT_AMP] = ACTIONS(1533), + [anon_sym_GT_AMP] = ACTIONS(1533), + [anon_sym_LT_LT] = ACTIONS(1533), + [anon_sym_LT_LT_DASH] = ACTIONS(1533), + [anon_sym_LT_LT_LT] = ACTIONS(1533), + [sym__special_characters] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_DOLLAR] = ACTIONS(1533), + [sym_raw_string] = ACTIONS(1533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1533), + [anon_sym_BQUOTE] = ACTIONS(1533), + [anon_sym_LT_LPAREN] = ACTIONS(1533), + [anon_sym_GT_LPAREN] = ACTIONS(1533), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_LF] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1533), + }, + [608] = { + [sym_file_descriptor] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_RPAREN] = ACTIONS(1533), + [anon_sym_SEMI_SEMI] = ACTIONS(1533), + [anon_sym_PIPE_AMP] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1533), + [anon_sym_PIPE_PIPE] = ACTIONS(1533), + [anon_sym_EQ_TILDE] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(1533), + [anon_sym_GT] = ACTIONS(1533), + [anon_sym_GT_GT] = ACTIONS(1533), + [anon_sym_AMP_GT] = ACTIONS(1533), + [anon_sym_AMP_GT_GT] = ACTIONS(1533), + [anon_sym_LT_AMP] = ACTIONS(1533), + [anon_sym_GT_AMP] = ACTIONS(1533), + [anon_sym_LT_LT] = ACTIONS(1533), + [anon_sym_LT_LT_DASH] = ACTIONS(1533), + [anon_sym_LT_LT_LT] = ACTIONS(1533), + [sym__special_characters] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_DOLLAR] = ACTIONS(1533), + [sym_raw_string] = ACTIONS(1533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1533), + [anon_sym_BQUOTE] = ACTIONS(1533), + [anon_sym_LT_LPAREN] = ACTIONS(1533), + [anon_sym_GT_LPAREN] = ACTIONS(1533), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_LF] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1533), + }, + [609] = { + [aux_sym_concatenation_repeat1] = STATE(1201), + [sym_file_descriptor] = ACTIONS(740), + [sym__concat] = ACTIONS(2372), + [anon_sym_PIPE] = ACTIONS(2374), + [anon_sym_SEMI_SEMI] = ACTIONS(2374), + [anon_sym_PIPE_AMP] = ACTIONS(2374), + [anon_sym_AMP_AMP] = ACTIONS(2374), + [anon_sym_PIPE_PIPE] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_GT] = ACTIONS(2374), + [anon_sym_GT_GT] = ACTIONS(2374), + [anon_sym_AMP_GT] = ACTIONS(2374), + [anon_sym_AMP_GT_GT] = ACTIONS(2374), + [anon_sym_LT_AMP] = ACTIONS(2374), + [anon_sym_GT_AMP] = ACTIONS(2374), + [anon_sym_LT_LT] = ACTIONS(2374), + [anon_sym_LT_LT_DASH] = ACTIONS(2374), + [anon_sym_LT_LT_LT] = ACTIONS(2374), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_LF] = ACTIONS(2374), + [anon_sym_AMP] = ACTIONS(2374), + }, + [610] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(1203), + [anon_sym_DQUOTE] = ACTIONS(2376), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [611] = { + [sym_string] = STATE(1206), + [anon_sym_DQUOTE] = ACTIONS(1098), + [anon_sym_DOLLAR] = ACTIONS(2378), + [anon_sym_POUND] = ACTIONS(2378), + [anon_sym_DASH] = ACTIONS(2378), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2380), + [anon_sym_STAR] = ACTIONS(2378), + [anon_sym_AT] = ACTIONS(2378), + [anon_sym_QMARK] = ACTIONS(2378), + [anon_sym_0] = ACTIONS(2382), + [anon_sym__] = ACTIONS(2382), + }, + [612] = { + [aux_sym_concatenation_repeat1] = STATE(1201), + [sym_file_descriptor] = ACTIONS(754), + [sym__concat] = ACTIONS(2372), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_SEMI_SEMI] = ACTIONS(2384), + [anon_sym_PIPE_AMP] = ACTIONS(2384), + [anon_sym_AMP_AMP] = ACTIONS(2384), + [anon_sym_PIPE_PIPE] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_GT] = ACTIONS(2384), + [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym_AMP_GT] = ACTIONS(2384), + [anon_sym_AMP_GT_GT] = ACTIONS(2384), + [anon_sym_LT_AMP] = ACTIONS(2384), + [anon_sym_GT_AMP] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2384), + [anon_sym_LT_LT_DASH] = ACTIONS(2384), + [anon_sym_LT_LT_LT] = ACTIONS(2384), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2384), + [anon_sym_LF] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + }, + [613] = { + [sym_subscript] = STATE(1211), + [sym_variable_name] = ACTIONS(2386), + [anon_sym_DOLLAR] = ACTIONS(2388), + [anon_sym_POUND] = ACTIONS(2390), + [anon_sym_DASH] = ACTIONS(2388), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2392), + [anon_sym_STAR] = ACTIONS(2388), + [anon_sym_AT] = ACTIONS(2388), + [anon_sym_QMARK] = ACTIONS(2388), + [anon_sym_0] = ACTIONS(2394), + [anon_sym__] = ACTIONS(2394), + }, + [614] = { + [sym_for_statement] = STATE(1212), + [sym_while_statement] = STATE(1212), + [sym_if_statement] = STATE(1212), + [sym_case_statement] = STATE(1212), + [sym_function_definition] = STATE(1212), + [sym_subshell] = STATE(1212), + [sym_pipeline] = STATE(1212), + [sym_list] = STATE(1212), + [sym_command] = STATE(1212), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1212), + [sym_variable_assignment] = STATE(1213), + [sym_declaration_command] = STATE(1212), + [sym_unset_command] = STATE(1212), + [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -24748,637 +26383,142 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [599] = { - [sym_file_descriptor] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_RPAREN] = ACTIONS(2254), - [anon_sym_SEMI_SEMI] = ACTIONS(2254), - [anon_sym_PIPE_AMP] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_GT] = ACTIONS(2254), - [anon_sym_GT_GT] = ACTIONS(2254), - [anon_sym_AMP_GT] = ACTIONS(2254), - [anon_sym_AMP_GT_GT] = ACTIONS(2254), - [anon_sym_LT_AMP] = ACTIONS(2254), - [anon_sym_GT_AMP] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2254), - [anon_sym_LT_LT_DASH] = ACTIONS(2254), - [anon_sym_LT_LT_LT] = ACTIONS(2254), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LF] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2254), - }, - [600] = { - [sym_file_descriptor] = ACTIONS(2266), - [anon_sym_PIPE] = ACTIONS(2268), - [anon_sym_RPAREN] = ACTIONS(2268), - [anon_sym_SEMI_SEMI] = ACTIONS(2268), - [anon_sym_PIPE_AMP] = ACTIONS(2268), - [anon_sym_AMP_AMP] = ACTIONS(2268), - [anon_sym_PIPE_PIPE] = ACTIONS(2268), - [anon_sym_LT] = ACTIONS(2268), - [anon_sym_GT] = ACTIONS(2268), - [anon_sym_GT_GT] = ACTIONS(2268), - [anon_sym_AMP_GT] = ACTIONS(2268), - [anon_sym_AMP_GT_GT] = ACTIONS(2268), - [anon_sym_LT_AMP] = ACTIONS(2268), - [anon_sym_GT_AMP] = ACTIONS(2268), - [anon_sym_LT_LT] = ACTIONS(2268), - [anon_sym_LT_LT_DASH] = ACTIONS(2268), - [anon_sym_LT_LT_LT] = ACTIONS(2268), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2268), - [anon_sym_LF] = ACTIONS(2268), - [anon_sym_AMP] = ACTIONS(2268), - }, - [601] = { - [sym_simple_expansion] = STATE(1154), - [sym_expansion] = STATE(1154), - [aux_sym_heredoc_repeat1] = STATE(1158), - [sym__heredoc_middle] = ACTIONS(2270), - [sym__heredoc_end] = ACTIONS(2272), - [anon_sym_DOLLAR] = ACTIONS(2274), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2276), - [sym_comment] = ACTIONS(56), - }, - [602] = { - [sym_file_descriptor] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_RPAREN] = ACTIONS(2280), - [anon_sym_SEMI_SEMI] = ACTIONS(2280), - [anon_sym_PIPE_AMP] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2280), - [anon_sym_PIPE_PIPE] = ACTIONS(2280), - [anon_sym_LT] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(2280), - [anon_sym_GT_GT] = ACTIONS(2280), - [anon_sym_AMP_GT] = ACTIONS(2280), - [anon_sym_AMP_GT_GT] = ACTIONS(2280), - [anon_sym_LT_AMP] = ACTIONS(2280), - [anon_sym_GT_AMP] = ACTIONS(2280), - [anon_sym_LT_LT] = ACTIONS(2280), - [anon_sym_LT_LT_DASH] = ACTIONS(2280), - [anon_sym_LT_LT_LT] = ACTIONS(2280), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_LF] = ACTIONS(2280), - [anon_sym_AMP] = ACTIONS(2280), - }, - [603] = { - [aux_sym_concatenation_repeat1] = STATE(1137), - [sym_file_descriptor] = ACTIONS(2282), - [sym__concat] = ACTIONS(2242), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_SEMI_SEMI] = ACTIONS(2284), - [anon_sym_PIPE_AMP] = ACTIONS(2284), - [anon_sym_AMP_AMP] = ACTIONS(2284), - [anon_sym_PIPE_PIPE] = ACTIONS(2284), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_GT] = ACTIONS(2284), - [anon_sym_GT_GT] = ACTIONS(2284), - [anon_sym_AMP_GT] = ACTIONS(2284), - [anon_sym_AMP_GT_GT] = ACTIONS(2284), - [anon_sym_LT_AMP] = ACTIONS(2284), - [anon_sym_GT_AMP] = ACTIONS(2284), - [anon_sym_LT_LT] = ACTIONS(2284), - [anon_sym_LT_LT_DASH] = ACTIONS(2284), - [anon_sym_LT_LT_LT] = ACTIONS(2284), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2284), - [anon_sym_LF] = ACTIONS(2284), - [anon_sym_AMP] = ACTIONS(2284), - }, - [604] = { - [aux_sym_concatenation_repeat1] = STATE(1137), - [sym_file_descriptor] = ACTIONS(2286), - [sym__concat] = ACTIONS(2242), - [anon_sym_PIPE] = ACTIONS(2288), - [anon_sym_SEMI_SEMI] = ACTIONS(2288), - [anon_sym_PIPE_AMP] = ACTIONS(2288), - [anon_sym_AMP_AMP] = ACTIONS(2288), - [anon_sym_PIPE_PIPE] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(2288), - [anon_sym_GT_GT] = ACTIONS(2288), - [anon_sym_AMP_GT] = ACTIONS(2288), - [anon_sym_AMP_GT_GT] = ACTIONS(2288), - [anon_sym_LT_AMP] = ACTIONS(2288), - [anon_sym_GT_AMP] = ACTIONS(2288), - [anon_sym_LT_LT] = ACTIONS(2288), - [anon_sym_LT_LT_DASH] = ACTIONS(2288), - [anon_sym_LT_LT_LT] = ACTIONS(2288), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_LF] = ACTIONS(2288), - [anon_sym_AMP] = ACTIONS(2288), - }, - [605] = { - [sym_file_descriptor] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(2288), - [anon_sym_RPAREN] = ACTIONS(2288), - [anon_sym_SEMI_SEMI] = ACTIONS(2288), - [anon_sym_PIPE_AMP] = ACTIONS(2288), - [anon_sym_AMP_AMP] = ACTIONS(2288), - [anon_sym_PIPE_PIPE] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(2288), - [anon_sym_GT_GT] = ACTIONS(2288), - [anon_sym_AMP_GT] = ACTIONS(2288), - [anon_sym_AMP_GT_GT] = ACTIONS(2288), - [anon_sym_LT_AMP] = ACTIONS(2288), - [anon_sym_GT_AMP] = ACTIONS(2288), - [anon_sym_LT_LT] = ACTIONS(2288), - [anon_sym_LT_LT_DASH] = ACTIONS(2288), - [anon_sym_LT_LT_LT] = ACTIONS(2288), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_LF] = ACTIONS(2288), - [anon_sym_AMP] = ACTIONS(2288), - }, - [606] = { - [sym_concatenation] = STATE(203), - [sym_string] = STATE(201), - [sym_simple_expansion] = STATE(201), - [sym_string_expansion] = STATE(201), - [sym_expansion] = STATE(201), - [sym_command_substitution] = STATE(201), - [sym_process_substitution] = STATE(201), - [aux_sym_for_statement_repeat1] = STATE(606), - [sym_file_descriptor] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_SEMI_SEMI] = ACTIONS(2292), - [anon_sym_PIPE_AMP] = ACTIONS(2292), - [anon_sym_AMP_AMP] = ACTIONS(2292), - [anon_sym_PIPE_PIPE] = ACTIONS(2292), - [anon_sym_LT] = ACTIONS(2292), - [anon_sym_GT] = ACTIONS(2292), - [anon_sym_GT_GT] = ACTIONS(2292), - [anon_sym_AMP_GT] = ACTIONS(2292), - [anon_sym_AMP_GT_GT] = ACTIONS(2292), - [anon_sym_LT_AMP] = ACTIONS(2292), - [anon_sym_GT_AMP] = ACTIONS(2292), - [anon_sym_LT_LT] = ACTIONS(2292), - [anon_sym_LT_LT_DASH] = ACTIONS(2292), - [anon_sym_LT_LT_LT] = ACTIONS(2292), - [sym__special_characters] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2297), - [anon_sym_DOLLAR] = ACTIONS(2300), - [sym_raw_string] = ACTIONS(2303), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2306), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2309), - [anon_sym_BQUOTE] = ACTIONS(2312), - [anon_sym_LT_LPAREN] = ACTIONS(2315), - [anon_sym_GT_LPAREN] = ACTIONS(2315), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(2303), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_LF] = ACTIONS(2292), - [anon_sym_AMP] = ACTIONS(2292), - }, - [607] = { - [sym_file_redirect] = STATE(202), - [sym_heredoc_redirect] = STATE(202), - [sym_herestring_redirect] = STATE(202), - [aux_sym_while_statement_repeat1] = STATE(608), - [sym_file_descriptor] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(2318), - [anon_sym_SEMI_SEMI] = ACTIONS(2318), - [anon_sym_PIPE_AMP] = ACTIONS(2318), - [anon_sym_AMP_AMP] = ACTIONS(2318), - [anon_sym_PIPE_PIPE] = ACTIONS(2318), - [anon_sym_LT] = ACTIONS(346), - [anon_sym_GT] = ACTIONS(346), - [anon_sym_GT_GT] = ACTIONS(346), - [anon_sym_AMP_GT] = ACTIONS(346), - [anon_sym_AMP_GT_GT] = ACTIONS(346), - [anon_sym_LT_AMP] = ACTIONS(346), - [anon_sym_GT_AMP] = ACTIONS(346), - [anon_sym_LT_LT] = ACTIONS(348), - [anon_sym_LT_LT_DASH] = ACTIONS(348), - [anon_sym_LT_LT_LT] = ACTIONS(350), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2318), - [anon_sym_LF] = ACTIONS(2318), - [anon_sym_AMP] = ACTIONS(2318), - }, - [608] = { - [sym_file_redirect] = STATE(202), - [sym_heredoc_redirect] = STATE(202), - [sym_herestring_redirect] = STATE(202), - [aux_sym_while_statement_repeat1] = STATE(608), - [sym_file_descriptor] = ACTIONS(2320), - [anon_sym_PIPE] = ACTIONS(2323), - [anon_sym_SEMI_SEMI] = ACTIONS(2323), - [anon_sym_PIPE_AMP] = ACTIONS(2323), - [anon_sym_AMP_AMP] = ACTIONS(2323), - [anon_sym_PIPE_PIPE] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2325), - [anon_sym_GT] = ACTIONS(2325), - [anon_sym_GT_GT] = ACTIONS(2325), - [anon_sym_AMP_GT] = ACTIONS(2325), - [anon_sym_AMP_GT_GT] = ACTIONS(2325), - [anon_sym_LT_AMP] = ACTIONS(2325), - [anon_sym_GT_AMP] = ACTIONS(2325), - [anon_sym_LT_LT] = ACTIONS(2328), - [anon_sym_LT_LT_DASH] = ACTIONS(2328), - [anon_sym_LT_LT_LT] = ACTIONS(2331), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_LF] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2323), - }, - [609] = { - [sym_concatenation] = STATE(940), - [sym_string] = STATE(1160), - [sym_array] = STATE(940), - [sym_simple_expansion] = STATE(1160), - [sym_string_expansion] = STATE(1160), - [sym_expansion] = STATE(1160), - [sym_command_substitution] = STATE(1160), - [sym_process_substitution] = STATE(1160), - [sym__empty_value] = ACTIONS(1920), - [anon_sym_LPAREN] = ACTIONS(1922), - [sym__special_characters] = ACTIONS(2334), - [anon_sym_DQUOTE] = ACTIONS(204), - [anon_sym_DOLLAR] = ACTIONS(206), - [sym_raw_string] = ACTIONS(2336), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(210), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(212), - [anon_sym_BQUOTE] = ACTIONS(214), - [anon_sym_LT_LPAREN] = ACTIONS(216), - [anon_sym_GT_LPAREN] = ACTIONS(216), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2338), - }, - [610] = { - [sym_file_redirect] = STATE(202), - [sym_heredoc_redirect] = STATE(202), - [sym_herestring_redirect] = STATE(202), - [sym_concatenation] = STATE(203), - [sym_string] = STATE(201), - [sym_simple_expansion] = STATE(201), - [sym_string_expansion] = STATE(201), - [sym_expansion] = STATE(201), - [sym_command_substitution] = STATE(201), - [sym_process_substitution] = STATE(201), - [aux_sym_for_statement_repeat1] = STATE(606), - [aux_sym_while_statement_repeat1] = STATE(1161), - [sym_file_descriptor] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(2318), - [anon_sym_SEMI_SEMI] = ACTIONS(2318), - [anon_sym_PIPE_AMP] = ACTIONS(2318), - [anon_sym_AMP_AMP] = ACTIONS(2318), - [anon_sym_PIPE_PIPE] = ACTIONS(2318), - [anon_sym_LT] = ACTIONS(346), - [anon_sym_GT] = ACTIONS(346), - [anon_sym_GT_GT] = ACTIONS(346), - [anon_sym_AMP_GT] = ACTIONS(346), - [anon_sym_AMP_GT_GT] = ACTIONS(346), - [anon_sym_LT_AMP] = ACTIONS(346), - [anon_sym_GT_AMP] = ACTIONS(346), - [anon_sym_LT_LT] = ACTIONS(348), - [anon_sym_LT_LT_DASH] = ACTIONS(348), - [anon_sym_LT_LT_LT] = ACTIONS(350), - [sym__special_characters] = ACTIONS(352), - [anon_sym_DQUOTE] = ACTIONS(354), - [anon_sym_DOLLAR] = ACTIONS(356), - [sym_raw_string] = ACTIONS(358), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(360), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(362), - [anon_sym_BQUOTE] = ACTIONS(364), - [anon_sym_LT_LPAREN] = ACTIONS(366), - [anon_sym_GT_LPAREN] = ACTIONS(366), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(358), - [anon_sym_SEMI] = ACTIONS(2318), - [anon_sym_LF] = ACTIONS(2318), - [anon_sym_AMP] = ACTIONS(2318), - }, - [611] = { - [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_RBRACK] = ACTIONS(2340), - [sym__special_characters] = ACTIONS(2342), - [anon_sym_DQUOTE] = ACTIONS(390), - [anon_sym_DOLLAR] = ACTIONS(392), - [sym_raw_string] = ACTIONS(2344), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(398), - [anon_sym_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2346), - }, - [612] = { - [sym__concat] = ACTIONS(2348), - [anon_sym_EQ] = ACTIONS(2350), - [anon_sym_PLUS_EQ] = ACTIONS(2350), - [sym_comment] = ACTIONS(56), - }, - [613] = { - [aux_sym_concatenation_repeat1] = STATE(1166), - [sym__concat] = ACTIONS(2352), - [anon_sym_RBRACK] = ACTIONS(760), - [sym_comment] = ACTIONS(56), - }, - [614] = { - [sym__concat] = ACTIONS(764), - [anon_sym_RBRACK] = ACTIONS(764), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), }, [615] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(2354), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym_for_statement] = STATE(1214), + [sym_while_statement] = STATE(1214), + [sym_if_statement] = STATE(1214), + [sym_case_statement] = STATE(1214), + [sym_function_definition] = STATE(1214), + [sym_subshell] = STATE(1214), + [sym_pipeline] = STATE(1214), + [sym_list] = STATE(1214), + [sym_command] = STATE(1214), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(1214), + [sym_variable_assignment] = STATE(1215), + [sym_declaration_command] = STATE(1214), + [sym_unset_command] = STATE(1214), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), }, [616] = { - [sym__concat] = ACTIONS(796), - [anon_sym_RBRACK] = ACTIONS(796), + [sym_for_statement] = STATE(1216), + [sym_while_statement] = STATE(1216), + [sym_if_statement] = STATE(1216), + [sym_case_statement] = STATE(1216), + [sym_function_definition] = STATE(1216), + [sym_subshell] = STATE(1216), + [sym_pipeline] = STATE(1216), + [sym_list] = STATE(1216), + [sym_command] = STATE(1216), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1216), + [sym_variable_assignment] = STATE(1217), + [sym_declaration_command] = STATE(1216), + [sym_unset_command] = STATE(1216), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), }, [617] = { - [sym__concat] = ACTIONS(800), - [anon_sym_RBRACK] = ACTIONS(800), - [sym_comment] = ACTIONS(56), - }, - [618] = { - [sym__concat] = ACTIONS(804), - [anon_sym_RBRACK] = ACTIONS(804), - [sym_comment] = ACTIONS(56), - }, - [619] = { - [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_RBRACK] = ACTIONS(2356), - [sym__special_characters] = ACTIONS(2342), - [anon_sym_DQUOTE] = ACTIONS(390), - [anon_sym_DOLLAR] = ACTIONS(392), - [sym_raw_string] = ACTIONS(2344), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(398), - [anon_sym_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2346), - }, - [620] = { - [sym__concat] = ACTIONS(2358), - [anon_sym_EQ] = ACTIONS(2360), - [anon_sym_PLUS_EQ] = ACTIONS(2360), - [sym_comment] = ACTIONS(56), - }, - [621] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(2362), - [sym_comment] = ACTIONS(56), - }, - [622] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1172), - [anon_sym_RBRACE] = ACTIONS(2364), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [623] = { - [sym_subscript] = STATE(1176), - [sym_variable_name] = ACTIONS(2366), - [anon_sym_DOLLAR] = ACTIONS(2368), - [anon_sym_DASH] = ACTIONS(2368), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2370), - [anon_sym_STAR] = ACTIONS(2368), - [anon_sym_AT] = ACTIONS(2368), - [anon_sym_QMARK] = ACTIONS(2368), - [anon_sym_0] = ACTIONS(2372), - [anon_sym__] = ACTIONS(2372), - }, - [624] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1178), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [625] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1180), - [anon_sym_RBRACE] = ACTIONS(2376), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [626] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(2378), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [627] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(2378), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [628] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(2378), - [sym_comment] = ACTIONS(56), - }, - [629] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(2378), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [630] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(2380), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [631] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(2380), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [632] = { - [anon_sym_RBRACK] = ACTIONS(2356), - [sym_comment] = ACTIONS(56), - }, - [633] = { - [sym_file_descriptor] = ACTIONS(2382), - [sym_variable_name] = ACTIONS(2382), + [sym_file_descriptor] = ACTIONS(754), [anon_sym_PIPE] = ACTIONS(2384), [anon_sym_RPAREN] = ACTIONS(2384), [anon_sym_SEMI_SEMI] = ACTIONS(2384), @@ -25392,834 +26532,816 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(2384), [anon_sym_LT_AMP] = ACTIONS(2384), [anon_sym_GT_AMP] = ACTIONS(2384), - [sym__special_characters] = ACTIONS(2384), - [anon_sym_DQUOTE] = ACTIONS(2384), - [anon_sym_DOLLAR] = ACTIONS(2384), - [sym_raw_string] = ACTIONS(2384), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2384), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2384), - [anon_sym_BQUOTE] = ACTIONS(2384), - [anon_sym_LT_LPAREN] = ACTIONS(2384), - [anon_sym_GT_LPAREN] = ACTIONS(2384), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2384), + [anon_sym_LT_LT_DASH] = ACTIONS(2384), + [anon_sym_LT_LT_LT] = ACTIONS(2384), + [sym_comment] = ACTIONS(182), [anon_sym_SEMI] = ACTIONS(2384), [anon_sym_LF] = ACTIONS(2384), [anon_sym_AMP] = ACTIONS(2384), }, - [634] = { - [aux_sym_concatenation_repeat1] = STATE(1184), - [sym__concat] = ACTIONS(2386), - [anon_sym_RPAREN] = ACTIONS(1096), - [sym__special_characters] = ACTIONS(2100), - [anon_sym_DQUOTE] = ACTIONS(1096), - [anon_sym_DOLLAR] = ACTIONS(2100), - [sym_raw_string] = ACTIONS(1096), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1096), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1096), - [anon_sym_BQUOTE] = ACTIONS(1096), - [anon_sym_LT_LPAREN] = ACTIONS(1096), - [anon_sym_GT_LPAREN] = ACTIONS(1096), + [618] = { + [sym_file_descriptor] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_RPAREN] = ACTIONS(2398), + [anon_sym_SEMI_SEMI] = ACTIONS(2398), + [anon_sym_PIPE_AMP] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2398), + [anon_sym_GT] = ACTIONS(2398), + [anon_sym_GT_GT] = ACTIONS(2398), + [anon_sym_AMP_GT] = ACTIONS(2398), + [anon_sym_AMP_GT_GT] = ACTIONS(2398), + [anon_sym_LT_AMP] = ACTIONS(2398), + [anon_sym_GT_AMP] = ACTIONS(2398), + [anon_sym_LT_LT] = ACTIONS(2398), + [anon_sym_LT_LT_DASH] = ACTIONS(2398), + [anon_sym_LT_LT_LT] = ACTIONS(2398), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_LF] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), + }, + [619] = { + [sym_simple_expansion] = STATE(1218), + [sym_expansion] = STATE(1218), + [aux_sym_heredoc_repeat1] = STATE(1222), + [sym__heredoc_middle] = ACTIONS(2400), + [sym__heredoc_end] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(2404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2406), + [sym_comment] = ACTIONS(56), + }, + [620] = { + [sym_file_descriptor] = ACTIONS(2408), + [anon_sym_PIPE] = ACTIONS(2410), + [anon_sym_RPAREN] = ACTIONS(2410), + [anon_sym_SEMI_SEMI] = ACTIONS(2410), + [anon_sym_PIPE_AMP] = ACTIONS(2410), + [anon_sym_AMP_AMP] = ACTIONS(2410), + [anon_sym_PIPE_PIPE] = ACTIONS(2410), + [anon_sym_LT] = ACTIONS(2410), + [anon_sym_GT] = ACTIONS(2410), + [anon_sym_GT_GT] = ACTIONS(2410), + [anon_sym_AMP_GT] = ACTIONS(2410), + [anon_sym_AMP_GT_GT] = ACTIONS(2410), + [anon_sym_LT_AMP] = ACTIONS(2410), + [anon_sym_GT_AMP] = ACTIONS(2410), + [anon_sym_LT_LT] = ACTIONS(2410), + [anon_sym_LT_LT_DASH] = ACTIONS(2410), + [anon_sym_LT_LT_LT] = ACTIONS(2410), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_LF] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2410), + }, + [621] = { + [aux_sym_concatenation_repeat1] = STATE(1201), + [sym_file_descriptor] = ACTIONS(2412), + [sym__concat] = ACTIONS(2372), + [anon_sym_PIPE] = ACTIONS(2414), + [anon_sym_SEMI_SEMI] = ACTIONS(2414), + [anon_sym_PIPE_AMP] = ACTIONS(2414), + [anon_sym_AMP_AMP] = ACTIONS(2414), + [anon_sym_PIPE_PIPE] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2414), + [anon_sym_GT] = ACTIONS(2414), + [anon_sym_GT_GT] = ACTIONS(2414), + [anon_sym_AMP_GT] = ACTIONS(2414), + [anon_sym_AMP_GT_GT] = ACTIONS(2414), + [anon_sym_LT_AMP] = ACTIONS(2414), + [anon_sym_GT_AMP] = ACTIONS(2414), + [anon_sym_LT_LT] = ACTIONS(2414), + [anon_sym_LT_LT_DASH] = ACTIONS(2414), + [anon_sym_LT_LT_LT] = ACTIONS(2414), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym_LF] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2414), + }, + [622] = { + [aux_sym_concatenation_repeat1] = STATE(1201), + [sym_file_descriptor] = ACTIONS(2416), + [sym__concat] = ACTIONS(2372), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_SEMI_SEMI] = ACTIONS(2418), + [anon_sym_PIPE_AMP] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2418), + [anon_sym_PIPE_PIPE] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_GT] = ACTIONS(2418), + [anon_sym_AMP_GT] = ACTIONS(2418), + [anon_sym_AMP_GT_GT] = ACTIONS(2418), + [anon_sym_LT_AMP] = ACTIONS(2418), + [anon_sym_GT_AMP] = ACTIONS(2418), + [anon_sym_LT_LT] = ACTIONS(2418), + [anon_sym_LT_LT_DASH] = ACTIONS(2418), + [anon_sym_LT_LT_LT] = ACTIONS(2418), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_LF] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2418), + }, + [623] = { + [sym_file_descriptor] = ACTIONS(2416), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_RPAREN] = ACTIONS(2418), + [anon_sym_SEMI_SEMI] = ACTIONS(2418), + [anon_sym_PIPE_AMP] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2418), + [anon_sym_PIPE_PIPE] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_GT] = ACTIONS(2418), + [anon_sym_AMP_GT] = ACTIONS(2418), + [anon_sym_AMP_GT_GT] = ACTIONS(2418), + [anon_sym_LT_AMP] = ACTIONS(2418), + [anon_sym_GT_AMP] = ACTIONS(2418), + [anon_sym_LT_LT] = ACTIONS(2418), + [anon_sym_LT_LT_DASH] = ACTIONS(2418), + [anon_sym_LT_LT_LT] = ACTIONS(2418), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_LF] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2418), + }, + [624] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(624), + [sym_file_descriptor] = ACTIONS(2420), + [anon_sym_PIPE] = ACTIONS(2423), + [anon_sym_SEMI_SEMI] = ACTIONS(2423), + [anon_sym_PIPE_AMP] = ACTIONS(2423), + [anon_sym_AMP_AMP] = ACTIONS(2423), + [anon_sym_PIPE_PIPE] = ACTIONS(2423), + [anon_sym_LT] = ACTIONS(2425), + [anon_sym_GT] = ACTIONS(2425), + [anon_sym_GT_GT] = ACTIONS(2425), + [anon_sym_AMP_GT] = ACTIONS(2425), + [anon_sym_AMP_GT_GT] = ACTIONS(2425), + [anon_sym_LT_AMP] = ACTIONS(2425), + [anon_sym_GT_AMP] = ACTIONS(2425), + [anon_sym_LT_LT] = ACTIONS(2428), + [anon_sym_LT_LT_DASH] = ACTIONS(2428), + [anon_sym_LT_LT_LT] = ACTIONS(2431), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2423), + [anon_sym_LF] = ACTIONS(2423), + [anon_sym_AMP] = ACTIONS(2423), + }, + [625] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(624), + [sym_file_descriptor] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(2434), + [anon_sym_SEMI_SEMI] = ACTIONS(2434), + [anon_sym_PIPE_AMP] = ACTIONS(2434), + [anon_sym_AMP_AMP] = ACTIONS(2434), + [anon_sym_PIPE_PIPE] = ACTIONS(2434), + [anon_sym_LT] = ACTIONS(356), + [anon_sym_GT] = ACTIONS(356), + [anon_sym_GT_GT] = ACTIONS(356), + [anon_sym_AMP_GT] = ACTIONS(356), + [anon_sym_AMP_GT_GT] = ACTIONS(356), + [anon_sym_LT_AMP] = ACTIONS(356), + [anon_sym_GT_AMP] = ACTIONS(356), + [anon_sym_LT_LT] = ACTIONS(358), + [anon_sym_LT_LT_DASH] = ACTIONS(358), + [anon_sym_LT_LT_LT] = ACTIONS(360), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym_LF] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2434), + }, + [626] = { + [sym_concatenation] = STATE(208), + [sym_string] = STATE(206), + [sym_simple_expansion] = STATE(206), + [sym_string_expansion] = STATE(206), + [sym_expansion] = STATE(206), + [sym_command_substitution] = STATE(206), + [sym_process_substitution] = STATE(206), + [aux_sym_command_repeat2] = STATE(626), + [sym_file_descriptor] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_SEMI_SEMI] = ACTIONS(1533), + [anon_sym_PIPE_AMP] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1533), + [anon_sym_PIPE_PIPE] = ACTIONS(1533), + [anon_sym_EQ_TILDE] = ACTIONS(2436), + [anon_sym_LT] = ACTIONS(1533), + [anon_sym_GT] = ACTIONS(1533), + [anon_sym_GT_GT] = ACTIONS(1533), + [anon_sym_AMP_GT] = ACTIONS(1533), + [anon_sym_AMP_GT_GT] = ACTIONS(1533), + [anon_sym_LT_AMP] = ACTIONS(1533), + [anon_sym_GT_AMP] = ACTIONS(1533), + [anon_sym_LT_LT] = ACTIONS(1533), + [anon_sym_LT_LT_DASH] = ACTIONS(1533), + [anon_sym_LT_LT_LT] = ACTIONS(1533), + [sym__special_characters] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(2442), + [anon_sym_DOLLAR] = ACTIONS(2445), + [sym_raw_string] = ACTIONS(2448), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2451), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2454), + [anon_sym_BQUOTE] = ACTIONS(2457), + [anon_sym_LT_LPAREN] = ACTIONS(2460), + [anon_sym_GT_LPAREN] = ACTIONS(2460), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_LF] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1533), + }, + [627] = { + [sym_concatenation] = STATE(992), + [sym_string] = STATE(1224), + [sym_array] = STATE(992), + [sym_simple_expansion] = STATE(1224), + [sym_string_expansion] = STATE(1224), + [sym_expansion] = STATE(1224), + [sym_command_substitution] = STATE(1224), + [sym_process_substitution] = STATE(1224), + [sym__empty_value] = ACTIONS(2006), + [anon_sym_LPAREN] = ACTIONS(2008), + [sym__special_characters] = ACTIONS(2463), + [anon_sym_DQUOTE] = ACTIONS(208), + [anon_sym_DOLLAR] = ACTIONS(210), + [sym_raw_string] = ACTIONS(2465), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(216), + [anon_sym_BQUOTE] = ACTIONS(218), + [anon_sym_LT_LPAREN] = ACTIONS(220), + [anon_sym_GT_LPAREN] = ACTIONS(220), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2467), + }, + [628] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [sym_concatenation] = STATE(208), + [sym_string] = STATE(206), + [sym_simple_expansion] = STATE(206), + [sym_string_expansion] = STATE(206), + [sym_expansion] = STATE(206), + [sym_command_substitution] = STATE(206), + [sym_process_substitution] = STATE(206), + [aux_sym_while_statement_repeat1] = STATE(1225), + [aux_sym_command_repeat2] = STATE(626), + [sym_file_descriptor] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(2434), + [anon_sym_SEMI_SEMI] = ACTIONS(2434), + [anon_sym_PIPE_AMP] = ACTIONS(2434), + [anon_sym_AMP_AMP] = ACTIONS(2434), + [anon_sym_PIPE_PIPE] = ACTIONS(2434), + [anon_sym_EQ_TILDE] = ACTIONS(354), + [anon_sym_LT] = ACTIONS(356), + [anon_sym_GT] = ACTIONS(356), + [anon_sym_GT_GT] = ACTIONS(356), + [anon_sym_AMP_GT] = ACTIONS(356), + [anon_sym_AMP_GT_GT] = ACTIONS(356), + [anon_sym_LT_AMP] = ACTIONS(356), + [anon_sym_GT_AMP] = ACTIONS(356), + [anon_sym_LT_LT] = ACTIONS(358), + [anon_sym_LT_LT_DASH] = ACTIONS(358), + [anon_sym_LT_LT_LT] = ACTIONS(360), + [sym__special_characters] = ACTIONS(362), + [anon_sym_DQUOTE] = ACTIONS(364), + [anon_sym_DOLLAR] = ACTIONS(366), + [sym_raw_string] = ACTIONS(368), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(370), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(372), + [anon_sym_BQUOTE] = ACTIONS(374), + [anon_sym_LT_LPAREN] = ACTIONS(376), + [anon_sym_GT_LPAREN] = ACTIONS(376), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(368), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym_LF] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2434), + }, + [629] = { + [sym_string] = STATE(1227), + [sym_simple_expansion] = STATE(1227), + [sym_string_expansion] = STATE(1227), + [sym_expansion] = STATE(1227), + [sym_command_substitution] = STATE(1227), + [sym_process_substitution] = STATE(1227), + [anon_sym_RBRACK] = ACTIONS(2469), + [sym__special_characters] = ACTIONS(2471), + [anon_sym_DQUOTE] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(402), + [sym_raw_string] = ACTIONS(2473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(406), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(408), + [anon_sym_BQUOTE] = ACTIONS(410), + [anon_sym_LT_LPAREN] = ACTIONS(412), + [anon_sym_GT_LPAREN] = ACTIONS(412), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2475), + }, + [630] = { + [sym__concat] = ACTIONS(2477), + [anon_sym_EQ] = ACTIONS(2479), + [anon_sym_PLUS_EQ] = ACTIONS(2479), + [sym_comment] = ACTIONS(56), + }, + [631] = { + [aux_sym_concatenation_repeat1] = STATE(1230), + [sym__concat] = ACTIONS(2481), + [anon_sym_RBRACK] = ACTIONS(772), + [sym_comment] = ACTIONS(56), + }, + [632] = { + [sym__concat] = ACTIONS(776), + [anon_sym_RBRACK] = ACTIONS(776), + [sym_comment] = ACTIONS(56), + }, + [633] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(2483), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [634] = { + [sym__concat] = ACTIONS(808), + [anon_sym_RBRACK] = ACTIONS(808), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2100), }, [635] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(1186), - [anon_sym_DQUOTE] = ACTIONS(2388), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym__concat] = ACTIONS(812), + [anon_sym_RBRACK] = ACTIONS(812), + [sym_comment] = ACTIONS(56), }, [636] = { - [sym_string] = STATE(1189), - [anon_sym_DQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(2390), - [anon_sym_POUND] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2390), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2392), - [anon_sym_STAR] = ACTIONS(2390), - [anon_sym_AT] = ACTIONS(2390), - [anon_sym_QMARK] = ACTIONS(2390), - [anon_sym_0] = ACTIONS(2394), - [anon_sym__] = ACTIONS(2394), + [sym__concat] = ACTIONS(816), + [anon_sym_RBRACK] = ACTIONS(816), + [sym_comment] = ACTIONS(56), }, [637] = { - [aux_sym_concatenation_repeat1] = STATE(1184), - [sym__concat] = ACTIONS(2386), - [anon_sym_RPAREN] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(2102), - [anon_sym_DQUOTE] = ACTIONS(1100), - [anon_sym_DOLLAR] = ACTIONS(2102), - [sym_raw_string] = ACTIONS(1100), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1100), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1100), - [anon_sym_BQUOTE] = ACTIONS(1100), - [anon_sym_LT_LPAREN] = ACTIONS(1100), - [anon_sym_GT_LPAREN] = ACTIONS(1100), + [sym_string] = STATE(1227), + [sym_simple_expansion] = STATE(1227), + [sym_string_expansion] = STATE(1227), + [sym_expansion] = STATE(1227), + [sym_command_substitution] = STATE(1227), + [sym_process_substitution] = STATE(1227), + [anon_sym_RBRACK] = ACTIONS(2485), + [sym__special_characters] = ACTIONS(2471), + [anon_sym_DQUOTE] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(402), + [sym_raw_string] = ACTIONS(2473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(406), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(408), + [anon_sym_BQUOTE] = ACTIONS(410), + [anon_sym_LT_LPAREN] = ACTIONS(412), + [anon_sym_GT_LPAREN] = ACTIONS(412), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2102), + [sym_word] = ACTIONS(2475), }, [638] = { - [sym_subscript] = STATE(1194), - [sym_variable_name] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(2398), - [anon_sym_POUND] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2398), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2402), - [anon_sym_STAR] = ACTIONS(2398), - [anon_sym_AT] = ACTIONS(2398), - [anon_sym_QMARK] = ACTIONS(2398), - [anon_sym_0] = ACTIONS(2404), - [anon_sym__] = ACTIONS(2404), + [sym__concat] = ACTIONS(2487), + [anon_sym_EQ] = ACTIONS(2489), + [anon_sym_PLUS_EQ] = ACTIONS(2489), + [sym_comment] = ACTIONS(56), }, [639] = { - [sym_for_statement] = STATE(1195), - [sym_while_statement] = STATE(1195), - [sym_if_statement] = STATE(1195), - [sym_case_statement] = STATE(1195), - [sym_function_definition] = STATE(1195), - [sym_subshell] = STATE(1195), - [sym_pipeline] = STATE(1195), - [sym_list] = STATE(1195), - [sym_bracket_command] = STATE(1195), - [sym_command] = STATE(1195), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1196), - [sym_declaration_command] = STATE(1195), - [sym_unset_command] = STATE(1195), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(2491), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), }, [640] = { - [sym_for_statement] = STATE(1197), - [sym_while_statement] = STATE(1197), - [sym_if_statement] = STATE(1197), - [sym_case_statement] = STATE(1197), - [sym_function_definition] = STATE(1197), - [sym_subshell] = STATE(1197), - [sym_pipeline] = STATE(1197), - [sym_list] = STATE(1197), - [sym_bracket_command] = STATE(1197), - [sym_command] = STATE(1197), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(1198), - [sym_declaration_command] = STATE(1197), - [sym_unset_command] = STATE(1197), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1237), + [anon_sym_RBRACE] = ACTIONS(2493), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(2495), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [641] = { - [sym_for_statement] = STATE(1199), - [sym_while_statement] = STATE(1199), - [sym_if_statement] = STATE(1199), - [sym_case_statement] = STATE(1199), - [sym_function_definition] = STATE(1199), - [sym_subshell] = STATE(1199), - [sym_pipeline] = STATE(1199), - [sym_list] = STATE(1199), - [sym_bracket_command] = STATE(1199), - [sym_command] = STATE(1199), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1200), - [sym_declaration_command] = STATE(1199), - [sym_unset_command] = STATE(1199), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [sym_subscript] = STATE(1241), + [sym_variable_name] = ACTIONS(2497), + [anon_sym_DOLLAR] = ACTIONS(2499), + [anon_sym_DASH] = ACTIONS(2499), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2501), + [anon_sym_STAR] = ACTIONS(2499), + [anon_sym_AT] = ACTIONS(2499), + [anon_sym_QMARK] = ACTIONS(2499), + [anon_sym_0] = ACTIONS(2503), + [anon_sym__] = ACTIONS(2503), }, [642] = { - [anon_sym_RPAREN] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(2102), - [anon_sym_DQUOTE] = ACTIONS(1100), - [anon_sym_DOLLAR] = ACTIONS(2102), - [sym_raw_string] = ACTIONS(1100), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1100), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1100), - [anon_sym_BQUOTE] = ACTIONS(1100), - [anon_sym_LT_LPAREN] = ACTIONS(1100), - [anon_sym_GT_LPAREN] = ACTIONS(1100), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2102), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1244), + [anon_sym_RBRACE] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(2507), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [643] = { - [sym_concatenation] = STATE(642), - [sym_string] = STATE(637), - [sym_simple_expansion] = STATE(637), - [sym_string_expansion] = STATE(637), - [sym_expansion] = STATE(637), - [sym_command_substitution] = STATE(637), - [sym_process_substitution] = STATE(637), - [aux_sym_for_statement_repeat1] = STATE(1202), - [anon_sym_RPAREN] = ACTIONS(2406), - [sym__special_characters] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1245), - [sym_raw_string] = ACTIONS(1247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1249), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), - [anon_sym_BQUOTE] = ACTIONS(1253), - [anon_sym_LT_LPAREN] = ACTIONS(1255), - [anon_sym_GT_LPAREN] = ACTIONS(1255), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1257), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1247), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(2511), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [644] = { - [sym_string] = STATE(1203), - [sym_simple_expansion] = STATE(1203), - [sym_string_expansion] = STATE(1203), - [sym_expansion] = STATE(1203), - [sym_command_substitution] = STATE(1203), - [sym_process_substitution] = STATE(1203), - [sym__special_characters] = ACTIONS(2408), - [anon_sym_DQUOTE] = ACTIONS(412), - [anon_sym_DOLLAR] = ACTIONS(414), - [sym_raw_string] = ACTIONS(2410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(418), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(420), - [anon_sym_BQUOTE] = ACTIONS(422), - [anon_sym_LT_LPAREN] = ACTIONS(424), - [anon_sym_GT_LPAREN] = ACTIONS(424), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2513), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2408), }, [645] = { - [aux_sym_concatenation_repeat1] = STATE(1204), - [sym_file_descriptor] = ACTIONS(760), - [sym__concat] = ACTIONS(1261), - [sym_variable_name] = ACTIONS(760), - [anon_sym_PIPE] = ACTIONS(762), - [anon_sym_SEMI_SEMI] = ACTIONS(762), - [anon_sym_PIPE_AMP] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(762), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_LT] = ACTIONS(762), - [anon_sym_GT] = ACTIONS(762), - [anon_sym_GT_GT] = ACTIONS(762), - [anon_sym_AMP_GT] = ACTIONS(762), - [anon_sym_AMP_GT_GT] = ACTIONS(762), - [anon_sym_LT_AMP] = ACTIONS(762), - [anon_sym_GT_AMP] = ACTIONS(762), - [sym__special_characters] = ACTIONS(762), - [anon_sym_DQUOTE] = ACTIONS(762), - [anon_sym_DOLLAR] = ACTIONS(762), - [sym_raw_string] = ACTIONS(762), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(762), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(762), - [anon_sym_BQUOTE] = ACTIONS(762), - [anon_sym_LT_LPAREN] = ACTIONS(762), - [anon_sym_GT_LPAREN] = ACTIONS(762), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(762), - [anon_sym_SEMI] = ACTIONS(762), - [anon_sym_LF] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(762), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2513), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), }, [646] = { - [sym_file_descriptor] = ACTIONS(764), - [sym__concat] = ACTIONS(764), - [sym_variable_name] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_SEMI_SEMI] = ACTIONS(766), - [anon_sym_PIPE_AMP] = ACTIONS(766), - [anon_sym_AMP_AMP] = ACTIONS(766), - [anon_sym_PIPE_PIPE] = ACTIONS(766), - [anon_sym_LT] = ACTIONS(766), - [anon_sym_GT] = ACTIONS(766), - [anon_sym_GT_GT] = ACTIONS(766), - [anon_sym_AMP_GT] = ACTIONS(766), - [anon_sym_AMP_GT_GT] = ACTIONS(766), - [anon_sym_LT_AMP] = ACTIONS(766), - [anon_sym_GT_AMP] = ACTIONS(766), - [sym__special_characters] = ACTIONS(766), - [anon_sym_DQUOTE] = ACTIONS(766), - [anon_sym_DOLLAR] = ACTIONS(766), - [sym_raw_string] = ACTIONS(766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(766), - [anon_sym_BQUOTE] = ACTIONS(766), - [anon_sym_LT_LPAREN] = ACTIONS(766), - [anon_sym_GT_LPAREN] = ACTIONS(766), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(766), - [anon_sym_SEMI] = ACTIONS(766), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(2513), + [sym_comment] = ACTIONS(56), }, [647] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(2412), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(2513), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), }, [648] = { - [sym_file_descriptor] = ACTIONS(796), - [sym__concat] = ACTIONS(796), - [sym_variable_name] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(798), - [anon_sym_SEMI_SEMI] = ACTIONS(798), - [anon_sym_PIPE_AMP] = ACTIONS(798), - [anon_sym_AMP_AMP] = ACTIONS(798), - [anon_sym_PIPE_PIPE] = ACTIONS(798), - [anon_sym_LT] = ACTIONS(798), - [anon_sym_GT] = ACTIONS(798), - [anon_sym_GT_GT] = ACTIONS(798), - [anon_sym_AMP_GT] = ACTIONS(798), - [anon_sym_AMP_GT_GT] = ACTIONS(798), - [anon_sym_LT_AMP] = ACTIONS(798), - [anon_sym_GT_AMP] = ACTIONS(798), - [sym__special_characters] = ACTIONS(798), - [anon_sym_DQUOTE] = ACTIONS(798), - [anon_sym_DOLLAR] = ACTIONS(798), - [sym_raw_string] = ACTIONS(798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(798), - [anon_sym_BQUOTE] = ACTIONS(798), - [anon_sym_LT_LPAREN] = ACTIONS(798), - [anon_sym_GT_LPAREN] = ACTIONS(798), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(798), - [anon_sym_SEMI] = ACTIONS(798), - [anon_sym_LF] = ACTIONS(798), - [anon_sym_AMP] = ACTIONS(798), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2515), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), }, [649] = { - [sym_file_descriptor] = ACTIONS(800), - [sym__concat] = ACTIONS(800), - [sym_variable_name] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(802), - [anon_sym_SEMI_SEMI] = ACTIONS(802), - [anon_sym_PIPE_AMP] = ACTIONS(802), - [anon_sym_AMP_AMP] = ACTIONS(802), - [anon_sym_PIPE_PIPE] = ACTIONS(802), - [anon_sym_LT] = ACTIONS(802), - [anon_sym_GT] = ACTIONS(802), - [anon_sym_GT_GT] = ACTIONS(802), - [anon_sym_AMP_GT] = ACTIONS(802), - [anon_sym_AMP_GT_GT] = ACTIONS(802), - [anon_sym_LT_AMP] = ACTIONS(802), - [anon_sym_GT_AMP] = ACTIONS(802), - [sym__special_characters] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(802), - [sym_raw_string] = ACTIONS(802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(802), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(802), - [anon_sym_BQUOTE] = ACTIONS(802), - [anon_sym_LT_LPAREN] = ACTIONS(802), - [anon_sym_GT_LPAREN] = ACTIONS(802), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(802), - [anon_sym_LF] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(802), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2515), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), }, [650] = { - [sym_file_descriptor] = ACTIONS(804), - [sym__concat] = ACTIONS(804), - [sym_variable_name] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(806), - [anon_sym_SEMI_SEMI] = ACTIONS(806), - [anon_sym_PIPE_AMP] = ACTIONS(806), - [anon_sym_AMP_AMP] = ACTIONS(806), - [anon_sym_PIPE_PIPE] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(806), - [anon_sym_GT] = ACTIONS(806), - [anon_sym_GT_GT] = ACTIONS(806), - [anon_sym_AMP_GT] = ACTIONS(806), - [anon_sym_AMP_GT_GT] = ACTIONS(806), - [anon_sym_LT_AMP] = ACTIONS(806), - [anon_sym_GT_AMP] = ACTIONS(806), - [sym__special_characters] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(806), - [anon_sym_DOLLAR] = ACTIONS(806), - [sym_raw_string] = ACTIONS(806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(806), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(806), - [anon_sym_BQUOTE] = ACTIONS(806), - [anon_sym_LT_LPAREN] = ACTIONS(806), - [anon_sym_GT_LPAREN] = ACTIONS(806), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(806), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(806), + [anon_sym_RBRACK] = ACTIONS(2485), + [sym_comment] = ACTIONS(56), }, [651] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(2414), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(2517), + [sym_variable_name] = ACTIONS(2517), + [anon_sym_PIPE] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(2519), + [anon_sym_SEMI_SEMI] = ACTIONS(2519), + [anon_sym_PIPE_AMP] = ACTIONS(2519), + [anon_sym_AMP_AMP] = ACTIONS(2519), + [anon_sym_PIPE_PIPE] = ACTIONS(2519), + [anon_sym_LT] = ACTIONS(2519), + [anon_sym_GT] = ACTIONS(2519), + [anon_sym_GT_GT] = ACTIONS(2519), + [anon_sym_AMP_GT] = ACTIONS(2519), + [anon_sym_AMP_GT_GT] = ACTIONS(2519), + [anon_sym_LT_AMP] = ACTIONS(2519), + [anon_sym_GT_AMP] = ACTIONS(2519), + [sym__special_characters] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(2519), + [anon_sym_DOLLAR] = ACTIONS(2519), + [sym_raw_string] = ACTIONS(2519), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2519), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2519), + [anon_sym_BQUOTE] = ACTIONS(2519), + [anon_sym_LT_LPAREN] = ACTIONS(2519), + [anon_sym_GT_LPAREN] = ACTIONS(2519), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2519), + [anon_sym_SEMI] = ACTIONS(2519), + [anon_sym_LF] = ACTIONS(2519), + [anon_sym_AMP] = ACTIONS(2519), }, [652] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1208), - [anon_sym_RBRACE] = ACTIONS(2416), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [aux_sym_concatenation_repeat1] = STATE(1251), + [sym__concat] = ACTIONS(2521), + [anon_sym_RPAREN] = ACTIONS(2523), + [sym__special_characters] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2523), + [anon_sym_DOLLAR] = ACTIONS(2525), + [sym_raw_string] = ACTIONS(2523), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2523), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2523), + [anon_sym_BQUOTE] = ACTIONS(2523), + [anon_sym_LT_LPAREN] = ACTIONS(2523), + [anon_sym_GT_LPAREN] = ACTIONS(2523), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2525), }, [653] = { - [sym_subscript] = STATE(1212), - [sym_variable_name] = ACTIONS(2418), - [anon_sym_DOLLAR] = ACTIONS(2420), - [anon_sym_DASH] = ACTIONS(2420), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2422), - [anon_sym_STAR] = ACTIONS(2420), - [anon_sym_AT] = ACTIONS(2420), - [anon_sym_QMARK] = ACTIONS(2420), - [anon_sym_0] = ACTIONS(2424), - [anon_sym__] = ACTIONS(2424), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(1253), + [anon_sym_DQUOTE] = ACTIONS(2527), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, [654] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1214), - [anon_sym_RBRACE] = ACTIONS(2426), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_string] = STATE(1256), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_DOLLAR] = ACTIONS(2529), + [anon_sym_POUND] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2529), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2531), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_AT] = ACTIONS(2529), + [anon_sym_QMARK] = ACTIONS(2529), + [anon_sym_0] = ACTIONS(2533), + [anon_sym__] = ACTIONS(2533), }, [655] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1216), - [anon_sym_RBRACE] = ACTIONS(2428), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [aux_sym_concatenation_repeat1] = STATE(1251), + [sym__concat] = ACTIONS(2521), + [anon_sym_RPAREN] = ACTIONS(2535), + [sym__special_characters] = ACTIONS(2537), + [anon_sym_DQUOTE] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(2537), + [sym_raw_string] = ACTIONS(2535), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2535), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2535), + [anon_sym_BQUOTE] = ACTIONS(2535), + [anon_sym_LT_LPAREN] = ACTIONS(2535), + [anon_sym_GT_LPAREN] = ACTIONS(2535), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2537), }, [656] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(2430), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), + [sym_subscript] = STATE(1261), + [sym_variable_name] = ACTIONS(2539), + [anon_sym_DOLLAR] = ACTIONS(2541), + [anon_sym_POUND] = ACTIONS(2543), + [anon_sym_DASH] = ACTIONS(2541), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2545), + [anon_sym_STAR] = ACTIONS(2541), + [anon_sym_AT] = ACTIONS(2541), + [anon_sym_QMARK] = ACTIONS(2541), + [anon_sym_0] = ACTIONS(2547), + [anon_sym__] = ACTIONS(2547), }, [657] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(2430), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [sym_for_statement] = STATE(1262), + [sym_while_statement] = STATE(1262), + [sym_if_statement] = STATE(1262), + [sym_case_statement] = STATE(1262), + [sym_function_definition] = STATE(1262), + [sym_subshell] = STATE(1262), + [sym_pipeline] = STATE(1262), + [sym_list] = STATE(1262), + [sym_command] = STATE(1262), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1262), + [sym_variable_assignment] = STATE(1263), + [sym_declaration_command] = STATE(1262), + [sym_unset_command] = STATE(1262), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_word] = ACTIONS(300), }, [658] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(2430), - [sym_comment] = ACTIONS(56), - }, - [659] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(2430), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [660] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [661] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(2432), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [662] = { - [aux_sym_concatenation_repeat1] = STATE(1220), - [sym__concat] = ACTIONS(2434), - [anon_sym_SEMI_SEMI] = ACTIONS(1098), - [sym__special_characters] = ACTIONS(1098), - [anon_sym_DQUOTE] = ACTIONS(1098), - [anon_sym_DOLLAR] = ACTIONS(1098), - [sym_raw_string] = ACTIONS(1098), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1098), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1098), - [anon_sym_BQUOTE] = ACTIONS(1098), - [anon_sym_LT_LPAREN] = ACTIONS(1098), - [anon_sym_GT_LPAREN] = ACTIONS(1098), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1098), - [anon_sym_SEMI] = ACTIONS(1098), - [anon_sym_LF] = ACTIONS(1098), - [anon_sym_AMP] = ACTIONS(1098), - }, - [663] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(1222), - [anon_sym_DQUOTE] = ACTIONS(2436), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [664] = { - [sym_string] = STATE(1225), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(2438), - [anon_sym_POUND] = ACTIONS(2438), - [anon_sym_DASH] = ACTIONS(2438), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2440), - [anon_sym_STAR] = ACTIONS(2438), - [anon_sym_AT] = ACTIONS(2438), - [anon_sym_QMARK] = ACTIONS(2438), - [anon_sym_0] = ACTIONS(2442), - [anon_sym__] = ACTIONS(2442), - }, - [665] = { - [aux_sym_concatenation_repeat1] = STATE(1220), - [sym__concat] = ACTIONS(2434), - [anon_sym_SEMI_SEMI] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [sym_raw_string] = ACTIONS(1102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), - [anon_sym_BQUOTE] = ACTIONS(1102), - [anon_sym_LT_LPAREN] = ACTIONS(1102), - [anon_sym_GT_LPAREN] = ACTIONS(1102), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1102), - }, - [666] = { - [sym_subscript] = STATE(1230), - [sym_variable_name] = ACTIONS(2444), - [anon_sym_DOLLAR] = ACTIONS(2446), - [anon_sym_POUND] = ACTIONS(2448), - [anon_sym_DASH] = ACTIONS(2446), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2450), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_AT] = ACTIONS(2446), - [anon_sym_QMARK] = ACTIONS(2446), - [anon_sym_0] = ACTIONS(2452), - [anon_sym__] = ACTIONS(2452), - }, - [667] = { - [sym_for_statement] = STATE(1231), - [sym_while_statement] = STATE(1231), - [sym_if_statement] = STATE(1231), - [sym_case_statement] = STATE(1231), - [sym_function_definition] = STATE(1231), - [sym_subshell] = STATE(1231), - [sym_pipeline] = STATE(1231), - [sym_list] = STATE(1231), - [sym_bracket_command] = STATE(1231), - [sym_command] = STATE(1231), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1232), - [sym_declaration_command] = STATE(1231), - [sym_unset_command] = STATE(1231), - [sym_subscript] = STATE(168), + [sym_for_statement] = STATE(1264), + [sym_while_statement] = STATE(1264), + [sym_if_statement] = STATE(1264), + [sym_case_statement] = STATE(1264), + [sym_function_definition] = STATE(1264), + [sym_subshell] = STATE(1264), + [sym_pipeline] = STATE(1264), + [sym_list] = STATE(1264), + [sym_command] = STATE(1264), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(1264), + [sym_variable_assignment] = STATE(1265), + [sym_declaration_command] = STATE(1264), + [sym_unset_command] = STATE(1264), + [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -26227,300 +27349,937 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [668] = { - [sym_for_statement] = STATE(1233), - [sym_while_statement] = STATE(1233), - [sym_if_statement] = STATE(1233), - [sym_case_statement] = STATE(1233), - [sym_function_definition] = STATE(1233), - [sym_subshell] = STATE(1233), - [sym_pipeline] = STATE(1233), - [sym_list] = STATE(1233), - [sym_bracket_command] = STATE(1233), - [sym_command] = STATE(1233), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(1234), - [sym_declaration_command] = STATE(1233), - [sym_unset_command] = STATE(1233), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), - }, - [669] = { - [sym_for_statement] = STATE(1235), - [sym_while_statement] = STATE(1235), - [sym_if_statement] = STATE(1235), - [sym_case_statement] = STATE(1235), - [sym_function_definition] = STATE(1235), - [sym_subshell] = STATE(1235), - [sym_pipeline] = STATE(1235), - [sym_list] = STATE(1235), - [sym_bracket_command] = STATE(1235), - [sym_command] = STATE(1235), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1236), - [sym_declaration_command] = STATE(1235), - [sym_unset_command] = STATE(1235), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [670] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1102), - [sym__special_characters] = ACTIONS(1102), - [anon_sym_DQUOTE] = ACTIONS(1102), - [anon_sym_DOLLAR] = ACTIONS(1102), - [sym_raw_string] = ACTIONS(1102), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), - [anon_sym_BQUOTE] = ACTIONS(1102), - [anon_sym_LT_LPAREN] = ACTIONS(1102), - [anon_sym_GT_LPAREN] = ACTIONS(1102), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1102), - [anon_sym_SEMI] = ACTIONS(1102), - [anon_sym_LF] = ACTIONS(1102), - [anon_sym_AMP] = ACTIONS(1102), - }, - [671] = { - [sym_concatenation] = STATE(670), - [sym_string] = STATE(665), - [sym_simple_expansion] = STATE(665), - [sym_string_expansion] = STATE(665), - [sym_expansion] = STATE(665), - [sym_command_substitution] = STATE(665), - [sym_process_substitution] = STATE(665), - [aux_sym_for_statement_repeat1] = STATE(1238), - [anon_sym_SEMI_SEMI] = ACTIONS(2454), - [sym__special_characters] = ACTIONS(2456), - [anon_sym_DQUOTE] = ACTIONS(2458), - [anon_sym_DOLLAR] = ACTIONS(2460), - [sym_raw_string] = ACTIONS(2462), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2464), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2466), - [anon_sym_BQUOTE] = ACTIONS(2468), - [anon_sym_LT_LPAREN] = ACTIONS(2470), - [anon_sym_GT_LPAREN] = ACTIONS(2470), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2454), - [anon_sym_LF] = ACTIONS(2454), - [anon_sym_AMP] = ACTIONS(2454), - }, - [672] = { - [sym_file_descriptor] = ACTIONS(2472), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_RPAREN] = ACTIONS(2474), - [anon_sym_SEMI_SEMI] = ACTIONS(2474), - [anon_sym_PIPE_AMP] = ACTIONS(2474), - [anon_sym_AMP_AMP] = ACTIONS(2474), - [anon_sym_PIPE_PIPE] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_AMP_GT] = ACTIONS(2474), - [anon_sym_AMP_GT_GT] = ACTIONS(2474), - [anon_sym_LT_AMP] = ACTIONS(2474), - [anon_sym_GT_AMP] = ACTIONS(2474), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_LT_LT_DASH] = ACTIONS(2474), - [anon_sym_LT_LT_LT] = ACTIONS(2474), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2474), - [anon_sym_LF] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(2474), - }, - [673] = { - [sym_file_descriptor] = ACTIONS(330), - [sym_variable_name] = ACTIONS(330), - [anon_sym_for] = ACTIONS(332), - [anon_sym_while] = ACTIONS(332), - [anon_sym_done] = ACTIONS(332), - [anon_sym_if] = ACTIONS(332), - [anon_sym_case] = ACTIONS(332), - [anon_sym_function] = ACTIONS(332), - [anon_sym_LPAREN] = ACTIONS(330), - [anon_sym_LBRACK] = ACTIONS(332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(330), - [anon_sym_declare] = ACTIONS(332), - [anon_sym_typeset] = ACTIONS(332), - [anon_sym_export] = ACTIONS(332), - [anon_sym_readonly] = ACTIONS(332), - [anon_sym_local] = ACTIONS(332), - [anon_sym_unset] = ACTIONS(332), - [anon_sym_unsetenv] = ACTIONS(332), - [anon_sym_LT] = ACTIONS(332), - [anon_sym_GT] = ACTIONS(332), - [anon_sym_GT_GT] = ACTIONS(330), - [anon_sym_AMP_GT] = ACTIONS(332), - [anon_sym_AMP_GT_GT] = ACTIONS(330), - [anon_sym_LT_AMP] = ACTIONS(330), - [anon_sym_GT_AMP] = ACTIONS(330), - [sym__special_characters] = ACTIONS(334), - [anon_sym_DQUOTE] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [sym_raw_string] = ACTIONS(330), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(330), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(330), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), [anon_sym_LT_LPAREN] = ACTIONS(330), [anon_sym_GT_LPAREN] = ACTIONS(330), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), + [sym_word] = ACTIONS(332), + }, + [659] = { + [sym_for_statement] = STATE(1266), + [sym_while_statement] = STATE(1266), + [sym_if_statement] = STATE(1266), + [sym_case_statement] = STATE(1266), + [sym_function_definition] = STATE(1266), + [sym_subshell] = STATE(1266), + [sym_pipeline] = STATE(1266), + [sym_list] = STATE(1266), + [sym_command] = STATE(1266), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1266), + [sym_variable_assignment] = STATE(1267), + [sym_declaration_command] = STATE(1266), + [sym_unset_command] = STATE(1266), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [660] = { + [anon_sym_RPAREN] = ACTIONS(2535), + [sym__special_characters] = ACTIONS(2537), + [anon_sym_DQUOTE] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(2537), + [sym_raw_string] = ACTIONS(2535), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2535), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2535), + [anon_sym_BQUOTE] = ACTIONS(2535), + [anon_sym_LT_LPAREN] = ACTIONS(2535), + [anon_sym_GT_LPAREN] = ACTIONS(2535), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2537), + }, + [661] = { + [sym_concatenation] = STATE(660), + [sym_string] = STATE(655), + [sym_simple_expansion] = STATE(655), + [sym_string_expansion] = STATE(655), + [sym_expansion] = STATE(655), + [sym_command_substitution] = STATE(655), + [sym_process_substitution] = STATE(655), + [aux_sym_for_statement_repeat1] = STATE(1269), + [anon_sym_RPAREN] = ACTIONS(2549), + [sym__special_characters] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_DOLLAR] = ACTIONS(1265), + [sym_raw_string] = ACTIONS(1267), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1269), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1273), + [anon_sym_LT_LPAREN] = ACTIONS(1275), + [anon_sym_GT_LPAREN] = ACTIONS(1275), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1277), + }, + [662] = { + [sym_string] = STATE(1270), + [sym_simple_expansion] = STATE(1270), + [sym_string_expansion] = STATE(1270), + [sym_expansion] = STATE(1270), + [sym_command_substitution] = STATE(1270), + [sym_process_substitution] = STATE(1270), + [sym__special_characters] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(422), + [anon_sym_DOLLAR] = ACTIONS(424), + [sym_raw_string] = ACTIONS(2553), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(428), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(430), + [anon_sym_BQUOTE] = ACTIONS(432), + [anon_sym_LT_LPAREN] = ACTIONS(434), + [anon_sym_GT_LPAREN] = ACTIONS(434), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2551), + }, + [663] = { + [aux_sym_concatenation_repeat1] = STATE(1271), + [sym_file_descriptor] = ACTIONS(772), + [sym__concat] = ACTIONS(1281), + [sym_variable_name] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(774), + [anon_sym_SEMI_SEMI] = ACTIONS(774), + [anon_sym_PIPE_AMP] = ACTIONS(774), + [anon_sym_AMP_AMP] = ACTIONS(774), + [anon_sym_PIPE_PIPE] = ACTIONS(774), + [anon_sym_LT] = ACTIONS(774), + [anon_sym_GT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(774), + [anon_sym_AMP_GT] = ACTIONS(774), + [anon_sym_AMP_GT_GT] = ACTIONS(774), + [anon_sym_LT_AMP] = ACTIONS(774), + [anon_sym_GT_AMP] = ACTIONS(774), + [sym__special_characters] = ACTIONS(774), + [anon_sym_DQUOTE] = ACTIONS(774), + [anon_sym_DOLLAR] = ACTIONS(774), + [sym_raw_string] = ACTIONS(774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(774), + [anon_sym_BQUOTE] = ACTIONS(774), + [anon_sym_LT_LPAREN] = ACTIONS(774), + [anon_sym_GT_LPAREN] = ACTIONS(774), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(774), + [anon_sym_SEMI] = ACTIONS(774), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_AMP] = ACTIONS(774), + }, + [664] = { + [sym_file_descriptor] = ACTIONS(776), + [sym__concat] = ACTIONS(776), + [sym_variable_name] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(778), + [anon_sym_SEMI_SEMI] = ACTIONS(778), + [anon_sym_PIPE_AMP] = ACTIONS(778), + [anon_sym_AMP_AMP] = ACTIONS(778), + [anon_sym_PIPE_PIPE] = ACTIONS(778), + [anon_sym_LT] = ACTIONS(778), + [anon_sym_GT] = ACTIONS(778), + [anon_sym_GT_GT] = ACTIONS(778), + [anon_sym_AMP_GT] = ACTIONS(778), + [anon_sym_AMP_GT_GT] = ACTIONS(778), + [anon_sym_LT_AMP] = ACTIONS(778), + [anon_sym_GT_AMP] = ACTIONS(778), + [sym__special_characters] = ACTIONS(778), + [anon_sym_DQUOTE] = ACTIONS(778), + [anon_sym_DOLLAR] = ACTIONS(778), + [sym_raw_string] = ACTIONS(778), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(778), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(778), + [anon_sym_BQUOTE] = ACTIONS(778), + [anon_sym_LT_LPAREN] = ACTIONS(778), + [anon_sym_GT_LPAREN] = ACTIONS(778), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(778), + [anon_sym_SEMI] = ACTIONS(778), + [anon_sym_LF] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(778), + }, + [665] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(2555), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [666] = { + [sym_file_descriptor] = ACTIONS(808), + [sym__concat] = ACTIONS(808), + [sym_variable_name] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(810), + [anon_sym_SEMI_SEMI] = ACTIONS(810), + [anon_sym_PIPE_AMP] = ACTIONS(810), + [anon_sym_AMP_AMP] = ACTIONS(810), + [anon_sym_PIPE_PIPE] = ACTIONS(810), + [anon_sym_LT] = ACTIONS(810), + [anon_sym_GT] = ACTIONS(810), + [anon_sym_GT_GT] = ACTIONS(810), + [anon_sym_AMP_GT] = ACTIONS(810), + [anon_sym_AMP_GT_GT] = ACTIONS(810), + [anon_sym_LT_AMP] = ACTIONS(810), + [anon_sym_GT_AMP] = ACTIONS(810), + [sym__special_characters] = ACTIONS(810), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_DOLLAR] = ACTIONS(810), + [sym_raw_string] = ACTIONS(810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(810), + [anon_sym_BQUOTE] = ACTIONS(810), + [anon_sym_LT_LPAREN] = ACTIONS(810), + [anon_sym_GT_LPAREN] = ACTIONS(810), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(810), + [anon_sym_LF] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(810), + }, + [667] = { + [sym_file_descriptor] = ACTIONS(812), + [sym__concat] = ACTIONS(812), + [sym_variable_name] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(814), + [anon_sym_SEMI_SEMI] = ACTIONS(814), + [anon_sym_PIPE_AMP] = ACTIONS(814), + [anon_sym_AMP_AMP] = ACTIONS(814), + [anon_sym_PIPE_PIPE] = ACTIONS(814), + [anon_sym_LT] = ACTIONS(814), + [anon_sym_GT] = ACTIONS(814), + [anon_sym_GT_GT] = ACTIONS(814), + [anon_sym_AMP_GT] = ACTIONS(814), + [anon_sym_AMP_GT_GT] = ACTIONS(814), + [anon_sym_LT_AMP] = ACTIONS(814), + [anon_sym_GT_AMP] = ACTIONS(814), + [sym__special_characters] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_DOLLAR] = ACTIONS(814), + [sym_raw_string] = ACTIONS(814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(814), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(814), + [anon_sym_BQUOTE] = ACTIONS(814), + [anon_sym_LT_LPAREN] = ACTIONS(814), + [anon_sym_GT_LPAREN] = ACTIONS(814), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(814), + [anon_sym_SEMI] = ACTIONS(814), + [anon_sym_LF] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(814), + }, + [668] = { + [sym_file_descriptor] = ACTIONS(816), + [sym__concat] = ACTIONS(816), + [sym_variable_name] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_SEMI_SEMI] = ACTIONS(818), + [anon_sym_PIPE_AMP] = ACTIONS(818), + [anon_sym_AMP_AMP] = ACTIONS(818), + [anon_sym_PIPE_PIPE] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(818), + [anon_sym_GT] = ACTIONS(818), + [anon_sym_GT_GT] = ACTIONS(818), + [anon_sym_AMP_GT] = ACTIONS(818), + [anon_sym_AMP_GT_GT] = ACTIONS(818), + [anon_sym_LT_AMP] = ACTIONS(818), + [anon_sym_GT_AMP] = ACTIONS(818), + [sym__special_characters] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(818), + [anon_sym_DOLLAR] = ACTIONS(818), + [sym_raw_string] = ACTIONS(818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(818), + [anon_sym_BQUOTE] = ACTIONS(818), + [anon_sym_LT_LPAREN] = ACTIONS(818), + [anon_sym_GT_LPAREN] = ACTIONS(818), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_LF] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(818), + }, + [669] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(2557), + [sym_comment] = ACTIONS(56), + }, + [670] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1276), + [anon_sym_RBRACE] = ACTIONS(2559), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(2561), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [671] = { + [sym_subscript] = STATE(1280), + [sym_variable_name] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(2565), + [anon_sym_DASH] = ACTIONS(2565), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2567), + [anon_sym_STAR] = ACTIONS(2565), + [anon_sym_AT] = ACTIONS(2565), + [anon_sym_QMARK] = ACTIONS(2565), + [anon_sym_0] = ACTIONS(2569), + [anon_sym__] = ACTIONS(2569), + }, + [672] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1283), + [anon_sym_RBRACE] = ACTIONS(2571), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(2573), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [673] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1286), + [anon_sym_RBRACE] = ACTIONS(2575), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(2577), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [674] = { - [anon_sym_PIPE] = ACTIONS(336), - [anon_sym_SEMI_SEMI] = ACTIONS(2476), - [anon_sym_PIPE_AMP] = ACTIONS(336), - [anon_sym_AMP_AMP] = ACTIONS(340), - [anon_sym_PIPE_PIPE] = ACTIONS(340), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_LF] = ACTIONS(2476), - [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2579), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), }, [675] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(336), - [anon_sym_SEMI_SEMI] = ACTIONS(2476), - [anon_sym_PIPE_AMP] = ACTIONS(336), - [anon_sym_AMP_AMP] = ACTIONS(340), - [anon_sym_PIPE_PIPE] = ACTIONS(340), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_AMP_GT] = ACTIONS(370), - [anon_sym_AMP_GT_GT] = ACTIONS(370), - [anon_sym_LT_AMP] = ACTIONS(370), - [anon_sym_GT_AMP] = ACTIONS(370), - [sym__special_characters] = ACTIONS(370), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_DOLLAR] = ACTIONS(370), - [sym_raw_string] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(370), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(370), - [anon_sym_BQUOTE] = ACTIONS(370), - [anon_sym_LT_LPAREN] = ACTIONS(370), - [anon_sym_GT_LPAREN] = ACTIONS(370), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(370), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_LF] = ACTIONS(2476), - [anon_sym_AMP] = ACTIONS(2476), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2579), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), }, [676] = { - [sym__terminated_statement] = STATE(673), - [sym_for_statement] = STATE(674), - [sym_while_statement] = STATE(674), - [sym_if_statement] = STATE(674), - [sym_case_statement] = STATE(674), - [sym_function_definition] = STATE(674), - [sym_subshell] = STATE(674), - [sym_pipeline] = STATE(674), - [sym_list] = STATE(674), - [sym_bracket_command] = STATE(674), - [sym_command] = STATE(674), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(2579), + [sym_comment] = ACTIONS(56), + }, + [677] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(2579), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [678] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2581), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [679] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2581), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [680] = { + [aux_sym_concatenation_repeat1] = STATE(1290), + [sym__concat] = ACTIONS(2583), + [anon_sym_SEMI_SEMI] = ACTIONS(2585), + [sym__special_characters] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2585), + [anon_sym_DOLLAR] = ACTIONS(2585), + [sym_raw_string] = ACTIONS(2585), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2585), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2585), + [anon_sym_BQUOTE] = ACTIONS(2585), + [anon_sym_LT_LPAREN] = ACTIONS(2585), + [anon_sym_GT_LPAREN] = ACTIONS(2585), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2585), + [anon_sym_SEMI] = ACTIONS(2585), + [anon_sym_LF] = ACTIONS(2585), + [anon_sym_AMP] = ACTIONS(2585), + }, + [681] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(1292), + [anon_sym_DQUOTE] = ACTIONS(2587), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [682] = { + [sym_string] = STATE(1295), + [anon_sym_DQUOTE] = ACTIONS(1305), + [anon_sym_DOLLAR] = ACTIONS(2589), + [anon_sym_POUND] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2589), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2591), + [anon_sym_STAR] = ACTIONS(2589), + [anon_sym_AT] = ACTIONS(2589), + [anon_sym_QMARK] = ACTIONS(2589), + [anon_sym_0] = ACTIONS(2593), + [anon_sym__] = ACTIONS(2593), + }, + [683] = { + [aux_sym_concatenation_repeat1] = STATE(1290), + [sym__concat] = ACTIONS(2583), + [anon_sym_SEMI_SEMI] = ACTIONS(2595), + [sym__special_characters] = ACTIONS(2595), + [anon_sym_DQUOTE] = ACTIONS(2595), + [anon_sym_DOLLAR] = ACTIONS(2595), + [sym_raw_string] = ACTIONS(2595), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2595), + [anon_sym_BQUOTE] = ACTIONS(2595), + [anon_sym_LT_LPAREN] = ACTIONS(2595), + [anon_sym_GT_LPAREN] = ACTIONS(2595), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2595), + [anon_sym_LF] = ACTIONS(2595), + [anon_sym_AMP] = ACTIONS(2595), + }, + [684] = { + [sym_subscript] = STATE(1300), + [sym_variable_name] = ACTIONS(2597), + [anon_sym_DOLLAR] = ACTIONS(2599), + [anon_sym_POUND] = ACTIONS(2601), + [anon_sym_DASH] = ACTIONS(2599), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2603), + [anon_sym_STAR] = ACTIONS(2599), + [anon_sym_AT] = ACTIONS(2599), + [anon_sym_QMARK] = ACTIONS(2599), + [anon_sym_0] = ACTIONS(2605), + [anon_sym__] = ACTIONS(2605), + }, + [685] = { + [sym_for_statement] = STATE(1301), + [sym_while_statement] = STATE(1301), + [sym_if_statement] = STATE(1301), + [sym_case_statement] = STATE(1301), + [sym_function_definition] = STATE(1301), + [sym_subshell] = STATE(1301), + [sym_pipeline] = STATE(1301), + [sym_list] = STATE(1301), + [sym_command] = STATE(1301), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1301), + [sym_variable_assignment] = STATE(1302), + [sym_declaration_command] = STATE(1301), + [sym_unset_command] = STATE(1301), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [686] = { + [sym_for_statement] = STATE(1303), + [sym_while_statement] = STATE(1303), + [sym_if_statement] = STATE(1303), + [sym_case_statement] = STATE(1303), + [sym_function_definition] = STATE(1303), + [sym_subshell] = STATE(1303), + [sym_pipeline] = STATE(1303), + [sym_list] = STATE(1303), + [sym_command] = STATE(1303), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(1303), + [sym_variable_assignment] = STATE(1304), + [sym_declaration_command] = STATE(1303), + [sym_unset_command] = STATE(1303), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), + }, + [687] = { + [sym_for_statement] = STATE(1305), + [sym_while_statement] = STATE(1305), + [sym_if_statement] = STATE(1305), + [sym_case_statement] = STATE(1305), + [sym_function_definition] = STATE(1305), + [sym_subshell] = STATE(1305), + [sym_pipeline] = STATE(1305), + [sym_list] = STATE(1305), + [sym_command] = STATE(1305), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1305), + [sym_variable_assignment] = STATE(1306), + [sym_declaration_command] = STATE(1305), + [sym_unset_command] = STATE(1305), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [688] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2595), + [sym__special_characters] = ACTIONS(2595), + [anon_sym_DQUOTE] = ACTIONS(2595), + [anon_sym_DOLLAR] = ACTIONS(2595), + [sym_raw_string] = ACTIONS(2595), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2595), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2595), + [anon_sym_BQUOTE] = ACTIONS(2595), + [anon_sym_LT_LPAREN] = ACTIONS(2595), + [anon_sym_GT_LPAREN] = ACTIONS(2595), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2595), + [anon_sym_SEMI] = ACTIONS(2595), + [anon_sym_LF] = ACTIONS(2595), + [anon_sym_AMP] = ACTIONS(2595), + }, + [689] = { + [sym_concatenation] = STATE(688), + [sym_string] = STATE(683), + [sym_simple_expansion] = STATE(683), + [sym_string_expansion] = STATE(683), + [sym_expansion] = STATE(683), + [sym_command_substitution] = STATE(683), + [sym_process_substitution] = STATE(683), + [aux_sym_for_statement_repeat1] = STATE(1308), + [anon_sym_SEMI_SEMI] = ACTIONS(2607), + [sym__special_characters] = ACTIONS(2609), + [anon_sym_DQUOTE] = ACTIONS(2611), + [anon_sym_DOLLAR] = ACTIONS(2613), + [sym_raw_string] = ACTIONS(2615), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2617), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2619), + [anon_sym_BQUOTE] = ACTIONS(2621), + [anon_sym_LT_LPAREN] = ACTIONS(2623), + [anon_sym_GT_LPAREN] = ACTIONS(2623), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(2607), + [anon_sym_LF] = ACTIONS(2607), + [anon_sym_AMP] = ACTIONS(2607), + }, + [690] = { + [sym_file_descriptor] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2627), + [anon_sym_SEMI_SEMI] = ACTIONS(2627), + [anon_sym_PIPE_AMP] = ACTIONS(2627), + [anon_sym_AMP_AMP] = ACTIONS(2627), + [anon_sym_PIPE_PIPE] = ACTIONS(2627), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_GT_GT] = ACTIONS(2627), + [anon_sym_AMP_GT] = ACTIONS(2627), + [anon_sym_AMP_GT_GT] = ACTIONS(2627), + [anon_sym_LT_AMP] = ACTIONS(2627), + [anon_sym_GT_AMP] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2627), + [anon_sym_LT_LT_DASH] = ACTIONS(2627), + [anon_sym_LT_LT_LT] = ACTIONS(2627), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2627), + [anon_sym_LF] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2627), + }, + [691] = { + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(338), + [anon_sym_for] = ACTIONS(340), + [anon_sym_while] = ACTIONS(340), + [anon_sym_done] = ACTIONS(340), + [anon_sym_if] = ACTIONS(340), + [anon_sym_case] = ACTIONS(340), + [anon_sym_function] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(338), + [anon_sym_LBRACK] = ACTIONS(340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(338), + [anon_sym_declare] = ACTIONS(340), + [anon_sym_typeset] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_readonly] = ACTIONS(340), + [anon_sym_local] = ACTIONS(340), + [anon_sym_unset] = ACTIONS(340), + [anon_sym_unsetenv] = ACTIONS(340), + [anon_sym_LT] = ACTIONS(340), + [anon_sym_GT] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_AMP_GT] = ACTIONS(340), + [anon_sym_AMP_GT_GT] = ACTIONS(338), + [anon_sym_LT_AMP] = ACTIONS(338), + [anon_sym_GT_AMP] = ACTIONS(338), + [sym__special_characters] = ACTIONS(342), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_DOLLAR] = ACTIONS(340), + [sym_raw_string] = ACTIONS(338), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(338), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(338), + [anon_sym_BQUOTE] = ACTIONS(338), + [anon_sym_LT_LPAREN] = ACTIONS(338), + [anon_sym_GT_LPAREN] = ACTIONS(338), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(342), + }, + [692] = { + [anon_sym_PIPE] = ACTIONS(344), + [anon_sym_SEMI_SEMI] = ACTIONS(2629), + [anon_sym_PIPE_AMP] = ACTIONS(344), + [anon_sym_AMP_AMP] = ACTIONS(348), + [anon_sym_PIPE_PIPE] = ACTIONS(348), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym_LF] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2629), + }, + [693] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(344), + [anon_sym_SEMI_SEMI] = ACTIONS(2629), + [anon_sym_PIPE_AMP] = ACTIONS(344), + [anon_sym_AMP_AMP] = ACTIONS(348), + [anon_sym_PIPE_PIPE] = ACTIONS(348), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(380), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(380), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(380), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(2629), + [anon_sym_LF] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2629), + }, + [694] = { + [sym__terminated_statement] = STATE(691), + [sym_for_statement] = STATE(692), + [sym_while_statement] = STATE(692), + [sym_if_statement] = STATE(692), + [sym_case_statement] = STATE(692), + [sym_function_definition] = STATE(692), + [sym_subshell] = STATE(692), + [sym_pipeline] = STATE(692), + [sym_list] = STATE(692), + [sym_command] = STATE(692), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(675), - [sym_declaration_command] = STATE(674), - [sym_unset_command] = STATE(674), + [sym_bracket_command] = STATE(692), + [sym_variable_assignment] = STATE(693), + [sym_declaration_command] = STATE(692), + [sym_unset_command] = STATE(692), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -26530,13 +28289,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1241), + [aux_sym_program_repeat1] = STATE(1311), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(2478), + [anon_sym_done] = ACTIONS(2631), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), @@ -26569,46 +28328,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(58), }, - [677] = { - [sym_file_redirect] = STATE(202), - [sym_heredoc_redirect] = STATE(202), - [sym_herestring_redirect] = STATE(202), - [aux_sym_while_statement_repeat1] = STATE(608), - [sym_file_descriptor] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(2480), - [anon_sym_SEMI_SEMI] = ACTIONS(2480), - [anon_sym_PIPE_AMP] = ACTIONS(2480), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_PIPE_PIPE] = ACTIONS(2480), - [anon_sym_LT] = ACTIONS(346), - [anon_sym_GT] = ACTIONS(346), - [anon_sym_GT_GT] = ACTIONS(346), - [anon_sym_AMP_GT] = ACTIONS(346), - [anon_sym_AMP_GT_GT] = ACTIONS(346), - [anon_sym_LT_AMP] = ACTIONS(346), - [anon_sym_GT_AMP] = ACTIONS(346), - [anon_sym_LT_LT] = ACTIONS(348), - [anon_sym_LT_LT_DASH] = ACTIONS(348), - [anon_sym_LT_LT_LT] = ACTIONS(350), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_LF] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2480), + [695] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(624), + [sym_file_descriptor] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(2633), + [anon_sym_SEMI_SEMI] = ACTIONS(2633), + [anon_sym_PIPE_AMP] = ACTIONS(2633), + [anon_sym_AMP_AMP] = ACTIONS(2633), + [anon_sym_PIPE_PIPE] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(356), + [anon_sym_GT] = ACTIONS(356), + [anon_sym_GT_GT] = ACTIONS(356), + [anon_sym_AMP_GT] = ACTIONS(356), + [anon_sym_AMP_GT_GT] = ACTIONS(356), + [anon_sym_LT_AMP] = ACTIONS(356), + [anon_sym_GT_AMP] = ACTIONS(356), + [anon_sym_LT_LT] = ACTIONS(358), + [anon_sym_LT_LT_DASH] = ACTIONS(358), + [anon_sym_LT_LT_LT] = ACTIONS(360), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym_LF] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2633), }, - [678] = { - [anon_sym_PIPE] = ACTIONS(2482), - [anon_sym_RPAREN] = ACTIONS(2482), - [anon_sym_SEMI_SEMI] = ACTIONS(2482), - [anon_sym_PIPE_AMP] = ACTIONS(2482), - [anon_sym_AMP_AMP] = ACTIONS(2482), - [anon_sym_PIPE_PIPE] = ACTIONS(2482), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2482), - [anon_sym_LF] = ACTIONS(2482), - [anon_sym_AMP] = ACTIONS(2482), + [696] = { + [anon_sym_PIPE] = ACTIONS(2635), + [anon_sym_RPAREN] = ACTIONS(2635), + [anon_sym_SEMI_SEMI] = ACTIONS(2635), + [anon_sym_PIPE_AMP] = ACTIONS(2635), + [anon_sym_AMP_AMP] = ACTIONS(2635), + [anon_sym_PIPE_PIPE] = ACTIONS(2635), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2635), + [anon_sym_LF] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2635), }, - [679] = { - [sym__terminated_statement] = STATE(1242), + [697] = { + [sym__terminated_statement] = STATE(1312), [sym_for_statement] = STATE(40), [sym_while_statement] = STATE(40), [sym_if_statement] = STATE(40), @@ -26617,9 +28376,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subshell] = STATE(40), [sym_pipeline] = STATE(40), [sym_list] = STATE(40), - [sym_bracket_command] = STATE(40), [sym_command] = STATE(40), [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(40), [sym_variable_assignment] = STATE(41), [sym_declaration_command] = STATE(40), [sym_unset_command] = STATE(40), @@ -26669,700 +28428,179 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(58), }, - [680] = { - [sym__terminated_statement] = STATE(1243), - [sym_for_statement] = STATE(1244), - [sym_while_statement] = STATE(1244), - [sym_if_statement] = STATE(1244), - [sym_case_statement] = STATE(1244), - [sym_function_definition] = STATE(1244), - [sym_subshell] = STATE(1244), - [sym_pipeline] = STATE(1244), - [sym_list] = STATE(1244), - [sym_bracket_command] = STATE(1244), - [sym_command] = STATE(1244), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(1245), - [sym_declaration_command] = STATE(1244), - [sym_unset_command] = STATE(1244), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1246), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(2484), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [681] = { - [sym_file_descriptor] = ACTIONS(330), - [sym_variable_name] = ACTIONS(330), - [anon_sym_for] = ACTIONS(332), - [anon_sym_while] = ACTIONS(332), - [anon_sym_if] = ACTIONS(332), - [anon_sym_fi] = ACTIONS(332), - [anon_sym_elif] = ACTIONS(332), - [anon_sym_else] = ACTIONS(332), - [anon_sym_case] = ACTIONS(332), - [anon_sym_function] = ACTIONS(332), - [anon_sym_LPAREN] = ACTIONS(330), - [anon_sym_LBRACK] = ACTIONS(332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(330), - [anon_sym_declare] = ACTIONS(332), - [anon_sym_typeset] = ACTIONS(332), - [anon_sym_export] = ACTIONS(332), - [anon_sym_readonly] = ACTIONS(332), - [anon_sym_local] = ACTIONS(332), - [anon_sym_unset] = ACTIONS(332), - [anon_sym_unsetenv] = ACTIONS(332), - [anon_sym_LT] = ACTIONS(332), - [anon_sym_GT] = ACTIONS(332), - [anon_sym_GT_GT] = ACTIONS(330), - [anon_sym_AMP_GT] = ACTIONS(332), - [anon_sym_AMP_GT_GT] = ACTIONS(330), - [anon_sym_LT_AMP] = ACTIONS(330), - [anon_sym_GT_AMP] = ACTIONS(330), - [sym__special_characters] = ACTIONS(334), - [anon_sym_DQUOTE] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [sym_raw_string] = ACTIONS(330), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(330), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(330), - [anon_sym_GT_LPAREN] = ACTIONS(330), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [682] = { - [anon_sym_PIPE] = ACTIONS(336), - [anon_sym_SEMI_SEMI] = ACTIONS(2486), - [anon_sym_PIPE_AMP] = ACTIONS(336), - [anon_sym_AMP_AMP] = ACTIONS(340), - [anon_sym_PIPE_PIPE] = ACTIONS(340), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2486), - [anon_sym_LF] = ACTIONS(2486), - [anon_sym_AMP] = ACTIONS(2486), - }, - [683] = { - [anon_sym_fi] = ACTIONS(2488), - [anon_sym_elif] = ACTIONS(2488), - [anon_sym_else] = ACTIONS(2488), - [sym_comment] = ACTIONS(56), - }, - [684] = { - [anon_sym_fi] = ACTIONS(2490), - [sym_comment] = ACTIONS(56), - }, - [685] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(336), - [anon_sym_SEMI_SEMI] = ACTIONS(2486), - [anon_sym_PIPE_AMP] = ACTIONS(336), - [anon_sym_AMP_AMP] = ACTIONS(340), - [anon_sym_PIPE_PIPE] = ACTIONS(340), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_AMP_GT] = ACTIONS(370), - [anon_sym_AMP_GT_GT] = ACTIONS(370), - [anon_sym_LT_AMP] = ACTIONS(370), - [anon_sym_GT_AMP] = ACTIONS(370), - [sym__special_characters] = ACTIONS(370), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_DOLLAR] = ACTIONS(370), - [sym_raw_string] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(370), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(370), - [anon_sym_BQUOTE] = ACTIONS(370), - [anon_sym_LT_LPAREN] = ACTIONS(370), - [anon_sym_GT_LPAREN] = ACTIONS(370), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(370), - [anon_sym_SEMI] = ACTIONS(2486), - [anon_sym_LF] = ACTIONS(2486), - [anon_sym_AMP] = ACTIONS(2486), - }, - [686] = { - [sym__terminated_statement] = STATE(681), - [sym_for_statement] = STATE(682), - [sym_while_statement] = STATE(682), - [sym_if_statement] = STATE(682), - [sym_elif_clause] = STATE(683), - [sym_else_clause] = STATE(1249), - [sym_case_statement] = STATE(682), - [sym_function_definition] = STATE(682), - [sym_subshell] = STATE(682), - [sym_pipeline] = STATE(682), - [sym_list] = STATE(682), - [sym_bracket_command] = STATE(682), - [sym_command] = STATE(682), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(685), - [sym_declaration_command] = STATE(682), - [sym_unset_command] = STATE(682), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1250), - [aux_sym_if_statement_repeat1] = STATE(1251), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(2492), - [anon_sym_elif] = ACTIONS(1307), - [anon_sym_else] = ACTIONS(1309), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [687] = { - [sym_elif_clause] = STATE(683), - [sym_else_clause] = STATE(1249), - [aux_sym_if_statement_repeat1] = STATE(1252), - [anon_sym_fi] = ACTIONS(2490), - [anon_sym_elif] = ACTIONS(2494), - [anon_sym_else] = ACTIONS(2496), - [sym_comment] = ACTIONS(56), - }, - [688] = { - [sym__concat] = ACTIONS(1790), - [anon_sym_in] = ACTIONS(1792), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - }, - [689] = { - [sym_case_item] = STATE(1262), - [sym_last_case_item] = STATE(1263), - [sym_concatenation] = STATE(1264), - [sym_string] = STATE(1257), - [sym_simple_expansion] = STATE(1257), - [sym_string_expansion] = STATE(1257), - [sym_expansion] = STATE(1257), - [sym_command_substitution] = STATE(1257), - [sym_process_substitution] = STATE(1257), - [aux_sym_case_statement_repeat1] = STATE(1265), - [anon_sym_esac] = ACTIONS(2498), - [sym__special_characters] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2502), - [anon_sym_DOLLAR] = ACTIONS(2504), - [sym_raw_string] = ACTIONS(2506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2508), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2510), - [anon_sym_BQUOTE] = ACTIONS(2512), - [anon_sym_LT_LPAREN] = ACTIONS(2514), - [anon_sym_GT_LPAREN] = ACTIONS(2514), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2516), - }, - [690] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2518), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2518), - [anon_sym_LF] = ACTIONS(2518), - [anon_sym_AMP] = ACTIONS(2518), - }, - [691] = { - [aux_sym_concatenation_repeat1] = STATE(691), - [sym__concat] = ACTIONS(2520), - [anon_sym_in] = ACTIONS(1792), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - }, - [692] = { - [sym__concat] = ACTIONS(1821), - [anon_sym_in] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LF] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - }, - [693] = { - [sym_case_item] = STATE(1262), - [sym_last_case_item] = STATE(1268), - [sym_concatenation] = STATE(1264), - [sym_string] = STATE(1257), - [sym_simple_expansion] = STATE(1257), - [sym_string_expansion] = STATE(1257), - [sym_expansion] = STATE(1257), - [sym_command_substitution] = STATE(1257), - [sym_process_substitution] = STATE(1257), - [aux_sym_case_statement_repeat1] = STATE(1269), - [anon_sym_esac] = ACTIONS(2523), - [sym__special_characters] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2502), - [anon_sym_DOLLAR] = ACTIONS(2504), - [sym_raw_string] = ACTIONS(2506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2508), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2510), - [anon_sym_BQUOTE] = ACTIONS(2512), - [anon_sym_LT_LPAREN] = ACTIONS(2514), - [anon_sym_GT_LPAREN] = ACTIONS(2514), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2516), - }, - [694] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2525), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2525), - [anon_sym_LF] = ACTIONS(2525), - [anon_sym_AMP] = ACTIONS(2525), - }, - [695] = { - [sym_concatenation] = STATE(1274), - [sym_string] = STATE(1273), - [sym_simple_expansion] = STATE(1273), - [sym_string_expansion] = STATE(1273), - [sym_expansion] = STATE(1273), - [sym_command_substitution] = STATE(1273), - [sym_process_substitution] = STATE(1273), - [anon_sym_RBRACE] = ACTIONS(2527), - [sym__special_characters] = ACTIONS(2529), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(2531), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2533), - }, - [696] = { - [sym__concat] = ACTIONS(1866), - [anon_sym_in] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - }, - [697] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(2535), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, [698] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(2537), + [sym__terminated_statement] = STATE(1313), + [sym_for_statement] = STATE(1314), + [sym_while_statement] = STATE(1314), + [sym_if_statement] = STATE(1314), + [sym_case_statement] = STATE(1314), + [sym_function_definition] = STATE(1314), + [sym_subshell] = STATE(1314), + [sym_pipeline] = STATE(1314), + [sym_list] = STATE(1314), + [sym_command] = STATE(1314), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(1314), + [sym_variable_assignment] = STATE(1315), + [sym_declaration_command] = STATE(1314), + [sym_unset_command] = STATE(1314), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1316), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_fi] = ACTIONS(2637), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), }, [699] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1278), - [anon_sym_RBRACE] = ACTIONS(2539), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(338), + [anon_sym_for] = ACTIONS(340), + [anon_sym_while] = ACTIONS(340), + [anon_sym_if] = ACTIONS(340), + [anon_sym_fi] = ACTIONS(340), + [anon_sym_elif] = ACTIONS(340), + [anon_sym_else] = ACTIONS(340), + [anon_sym_case] = ACTIONS(340), + [anon_sym_function] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(338), + [anon_sym_LBRACK] = ACTIONS(340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(338), + [anon_sym_declare] = ACTIONS(340), + [anon_sym_typeset] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_readonly] = ACTIONS(340), + [anon_sym_local] = ACTIONS(340), + [anon_sym_unset] = ACTIONS(340), + [anon_sym_unsetenv] = ACTIONS(340), + [anon_sym_LT] = ACTIONS(340), + [anon_sym_GT] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_AMP_GT] = ACTIONS(340), + [anon_sym_AMP_GT_GT] = ACTIONS(338), + [anon_sym_LT_AMP] = ACTIONS(338), + [anon_sym_GT_AMP] = ACTIONS(338), + [sym__special_characters] = ACTIONS(342), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_DOLLAR] = ACTIONS(340), + [sym_raw_string] = ACTIONS(338), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(338), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(338), + [anon_sym_BQUOTE] = ACTIONS(338), + [anon_sym_LT_LPAREN] = ACTIONS(338), + [anon_sym_GT_LPAREN] = ACTIONS(338), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(342), }, [700] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1280), - [anon_sym_RBRACE] = ACTIONS(2541), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(344), + [anon_sym_SEMI_SEMI] = ACTIONS(2639), + [anon_sym_PIPE_AMP] = ACTIONS(344), + [anon_sym_AMP_AMP] = ACTIONS(348), + [anon_sym_PIPE_PIPE] = ACTIONS(348), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2639), + [anon_sym_LF] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2639), }, [701] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1281), - [anon_sym_RBRACE] = ACTIONS(2527), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [anon_sym_fi] = ACTIONS(2641), + [anon_sym_elif] = ACTIONS(2641), + [anon_sym_else] = ACTIONS(2641), + [sym_comment] = ACTIONS(56), }, [702] = { - [sym__concat] = ACTIONS(1910), - [anon_sym_in] = ACTIONS(1912), - [anon_sym_SEMI_SEMI] = ACTIONS(1912), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_LF] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_fi] = ACTIONS(2643), + [sym_comment] = ACTIONS(56), }, [703] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(2543), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(344), + [anon_sym_SEMI_SEMI] = ACTIONS(2639), + [anon_sym_PIPE_AMP] = ACTIONS(344), + [anon_sym_AMP_AMP] = ACTIONS(348), + [anon_sym_PIPE_PIPE] = ACTIONS(348), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(380), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(380), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(380), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(2639), + [anon_sym_LF] = ACTIONS(2639), + [anon_sym_AMP] = ACTIONS(2639), }, [704] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_in] = ACTIONS(1918), - [anon_sym_SEMI_SEMI] = ACTIONS(1918), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_LF] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), - }, - [705] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(2527), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [706] = { - [sym__concat] = ACTIONS(2064), - [anon_sym_in] = ACTIONS(2066), - [anon_sym_SEMI_SEMI] = ACTIONS(2066), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_LF] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2066), - }, - [707] = { - [sym__concat] = ACTIONS(2228), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_SEMI_SEMI] = ACTIONS(2230), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_LF] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - }, - [708] = { - [sym_compound_statement] = STATE(1283), - [anon_sym_LBRACE] = ACTIONS(470), - [sym_comment] = ACTIONS(56), - }, - [709] = { - [sym_file_descriptor] = ACTIONS(2545), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_RPAREN] = ACTIONS(2547), - [anon_sym_SEMI_SEMI] = ACTIONS(2547), - [anon_sym_PIPE_AMP] = ACTIONS(2547), - [anon_sym_AMP_AMP] = ACTIONS(2547), - [anon_sym_PIPE_PIPE] = ACTIONS(2547), - [anon_sym_LT] = ACTIONS(2547), - [anon_sym_GT] = ACTIONS(2547), - [anon_sym_GT_GT] = ACTIONS(2547), - [anon_sym_AMP_GT] = ACTIONS(2547), - [anon_sym_AMP_GT_GT] = ACTIONS(2547), - [anon_sym_LT_AMP] = ACTIONS(2547), - [anon_sym_GT_AMP] = ACTIONS(2547), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_LF] = ACTIONS(2547), - [anon_sym_AMP] = ACTIONS(2547), - }, - [710] = { - [sym_file_descriptor] = ACTIONS(330), - [sym_variable_name] = ACTIONS(330), - [anon_sym_for] = ACTIONS(332), - [anon_sym_while] = ACTIONS(332), - [anon_sym_if] = ACTIONS(332), - [anon_sym_case] = ACTIONS(332), - [anon_sym_function] = ACTIONS(332), - [anon_sym_LPAREN] = ACTIONS(330), - [anon_sym_RBRACE] = ACTIONS(330), - [anon_sym_LBRACK] = ACTIONS(332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(330), - [anon_sym_declare] = ACTIONS(332), - [anon_sym_typeset] = ACTIONS(332), - [anon_sym_export] = ACTIONS(332), - [anon_sym_readonly] = ACTIONS(332), - [anon_sym_local] = ACTIONS(332), - [anon_sym_unset] = ACTIONS(332), - [anon_sym_unsetenv] = ACTIONS(332), - [anon_sym_LT] = ACTIONS(332), - [anon_sym_GT] = ACTIONS(332), - [anon_sym_GT_GT] = ACTIONS(330), - [anon_sym_AMP_GT] = ACTIONS(332), - [anon_sym_AMP_GT_GT] = ACTIONS(330), - [anon_sym_LT_AMP] = ACTIONS(330), - [anon_sym_GT_AMP] = ACTIONS(330), - [sym__special_characters] = ACTIONS(334), - [anon_sym_DQUOTE] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [sym_raw_string] = ACTIONS(330), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(330), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(330), - [anon_sym_GT_LPAREN] = ACTIONS(330), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [711] = { - [anon_sym_PIPE] = ACTIONS(336), - [anon_sym_SEMI_SEMI] = ACTIONS(2549), - [anon_sym_PIPE_AMP] = ACTIONS(336), - [anon_sym_AMP_AMP] = ACTIONS(340), - [anon_sym_PIPE_PIPE] = ACTIONS(340), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2549), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2549), - }, - [712] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(336), - [anon_sym_SEMI_SEMI] = ACTIONS(2549), - [anon_sym_PIPE_AMP] = ACTIONS(336), - [anon_sym_AMP_AMP] = ACTIONS(340), - [anon_sym_PIPE_PIPE] = ACTIONS(340), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_AMP_GT] = ACTIONS(370), - [anon_sym_AMP_GT_GT] = ACTIONS(370), - [anon_sym_LT_AMP] = ACTIONS(370), - [anon_sym_GT_AMP] = ACTIONS(370), - [sym__special_characters] = ACTIONS(370), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_DOLLAR] = ACTIONS(370), - [sym_raw_string] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(370), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(370), - [anon_sym_BQUOTE] = ACTIONS(370), - [anon_sym_LT_LPAREN] = ACTIONS(370), - [anon_sym_GT_LPAREN] = ACTIONS(370), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(370), - [anon_sym_SEMI] = ACTIONS(2549), - [anon_sym_LF] = ACTIONS(2549), - [anon_sym_AMP] = ACTIONS(2549), - }, - [713] = { - [sym__terminated_statement] = STATE(710), - [sym_for_statement] = STATE(711), - [sym_while_statement] = STATE(711), - [sym_if_statement] = STATE(711), - [sym_case_statement] = STATE(711), - [sym_function_definition] = STATE(711), - [sym_subshell] = STATE(711), - [sym_pipeline] = STATE(711), - [sym_list] = STATE(711), - [sym_bracket_command] = STATE(711), - [sym_command] = STATE(711), + [sym__terminated_statement] = STATE(699), + [sym_for_statement] = STATE(700), + [sym_while_statement] = STATE(700), + [sym_if_statement] = STATE(700), + [sym_elif_clause] = STATE(701), + [sym_else_clause] = STATE(1319), + [sym_case_statement] = STATE(700), + [sym_function_definition] = STATE(700), + [sym_subshell] = STATE(700), + [sym_pipeline] = STATE(700), + [sym_list] = STATE(700), + [sym_command] = STATE(700), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(712), - [sym_declaration_command] = STATE(711), - [sym_unset_command] = STATE(711), + [sym_bracket_command] = STATE(700), + [sym_variable_assignment] = STATE(703), + [sym_declaration_command] = STATE(700), + [sym_unset_command] = STATE(700), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -27372,17 +28610,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1286), + [aux_sym_program_repeat1] = STATE(1320), + [aux_sym_if_statement_repeat1] = STATE(1321), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), + [anon_sym_fi] = ACTIONS(2645), + [anon_sym_elif] = ACTIONS(1327), + [anon_sym_else] = ACTIONS(1329), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_RBRACE] = ACTIONS(2551), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_LBRACK_LBRACK] = ACTIONS(30), [anon_sym_declare] = ACTIONS(32), @@ -27411,319 +28652,514 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(58), }, - [714] = { - [anon_sym_LT] = ACTIONS(2553), - [anon_sym_GT] = ACTIONS(2553), - [anon_sym_GT_GT] = ACTIONS(2555), - [anon_sym_AMP_GT] = ACTIONS(2553), - [anon_sym_AMP_GT_GT] = ACTIONS(2555), - [anon_sym_LT_AMP] = ACTIONS(2555), - [anon_sym_GT_AMP] = ACTIONS(2555), + [705] = { + [sym_elif_clause] = STATE(701), + [sym_else_clause] = STATE(1319), + [aux_sym_if_statement_repeat1] = STATE(1322), + [anon_sym_fi] = ACTIONS(2643), + [anon_sym_elif] = ACTIONS(2647), + [anon_sym_else] = ACTIONS(2649), [sym_comment] = ACTIONS(56), }, + [706] = { + [sym__concat] = ACTIONS(1858), + [anon_sym_in] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + }, + [707] = { + [sym_case_item] = STATE(1332), + [sym_last_case_item] = STATE(1333), + [sym_concatenation] = STATE(1334), + [sym_string] = STATE(1327), + [sym_simple_expansion] = STATE(1327), + [sym_string_expansion] = STATE(1327), + [sym_expansion] = STATE(1327), + [sym_command_substitution] = STATE(1327), + [sym_process_substitution] = STATE(1327), + [aux_sym_case_statement_repeat1] = STATE(1335), + [anon_sym_esac] = ACTIONS(2651), + [sym__special_characters] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2657), + [sym_raw_string] = ACTIONS(2659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2663), + [anon_sym_BQUOTE] = ACTIONS(2665), + [anon_sym_LT_LPAREN] = ACTIONS(2667), + [anon_sym_GT_LPAREN] = ACTIONS(2667), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2669), + }, + [708] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2671), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2671), + [anon_sym_LF] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + }, + [709] = { + [aux_sym_concatenation_repeat1] = STATE(709), + [sym__concat] = ACTIONS(2673), + [anon_sym_in] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + }, + [710] = { + [sym__concat] = ACTIONS(1895), + [anon_sym_in] = ACTIONS(1897), + [anon_sym_SEMI_SEMI] = ACTIONS(1897), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_LF] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), + }, + [711] = { + [sym_case_item] = STATE(1332), + [sym_last_case_item] = STATE(1338), + [sym_concatenation] = STATE(1334), + [sym_string] = STATE(1327), + [sym_simple_expansion] = STATE(1327), + [sym_string_expansion] = STATE(1327), + [sym_expansion] = STATE(1327), + [sym_command_substitution] = STATE(1327), + [sym_process_substitution] = STATE(1327), + [aux_sym_case_statement_repeat1] = STATE(1339), + [anon_sym_esac] = ACTIONS(2676), + [sym__special_characters] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2657), + [sym_raw_string] = ACTIONS(2659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2663), + [anon_sym_BQUOTE] = ACTIONS(2665), + [anon_sym_LT_LPAREN] = ACTIONS(2667), + [anon_sym_GT_LPAREN] = ACTIONS(2667), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2669), + }, + [712] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2678), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2678), + [anon_sym_LF] = ACTIONS(2678), + [anon_sym_AMP] = ACTIONS(2678), + }, + [713] = { + [sym_concatenation] = STATE(1344), + [sym_string] = STATE(1343), + [sym_simple_expansion] = STATE(1343), + [sym_string_expansion] = STATE(1343), + [sym_expansion] = STATE(1343), + [sym_command_substitution] = STATE(1343), + [sym_process_substitution] = STATE(1343), + [anon_sym_RBRACE] = ACTIONS(2680), + [sym__special_characters] = ACTIONS(2682), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(2684), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2686), + }, + [714] = { + [sym__concat] = ACTIONS(1940), + [anon_sym_in] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1942), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + }, [715] = { - [sym_concatenation] = STATE(1296), - [sym_string] = STATE(1291), - [sym_simple_expansion] = STATE(1291), - [sym_string_expansion] = STATE(1291), - [sym_expansion] = STATE(1291), - [sym_command_substitution] = STATE(1291), - [sym_process_substitution] = STATE(1291), - [sym__special_characters] = ACTIONS(2557), - [anon_sym_DQUOTE] = ACTIONS(2559), - [anon_sym_DOLLAR] = ACTIONS(2561), - [sym_raw_string] = ACTIONS(2563), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2565), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2567), - [anon_sym_BQUOTE] = ACTIONS(2569), - [anon_sym_LT_LPAREN] = ACTIONS(2571), - [anon_sym_GT_LPAREN] = ACTIONS(2571), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2573), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(2688), }, [716] = { - [anon_sym_PIPE] = ACTIONS(2575), - [anon_sym_RPAREN] = ACTIONS(2575), - [anon_sym_SEMI_SEMI] = ACTIONS(2575), - [anon_sym_PIPE_AMP] = ACTIONS(2575), - [anon_sym_AMP_AMP] = ACTIONS(2575), - [anon_sym_PIPE_PIPE] = ACTIONS(2575), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_LF] = ACTIONS(2575), - [anon_sym_AMP] = ACTIONS(2575), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(2690), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [717] = { - [aux_sym_concatenation_repeat1] = STATE(1298), - [sym_file_descriptor] = ACTIONS(1259), - [sym__concat] = ACTIONS(2577), - [sym_variable_name] = ACTIONS(1259), - [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(1263), - [anon_sym_GT] = ACTIONS(1263), - [anon_sym_GT_GT] = ACTIONS(1263), - [anon_sym_AMP_GT] = ACTIONS(1263), - [anon_sym_AMP_GT_GT] = ACTIONS(1263), - [anon_sym_LT_AMP] = ACTIONS(1263), - [anon_sym_GT_AMP] = ACTIONS(1263), - [sym__special_characters] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [sym_raw_string] = ACTIONS(1263), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1263), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1263), - [anon_sym_BQUOTE] = ACTIONS(1263), - [anon_sym_LT_LPAREN] = ACTIONS(1263), - [anon_sym_GT_LPAREN] = ACTIONS(1263), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(2692), + [sym_comment] = ACTIONS(56), }, [718] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(1300), - [anon_sym_DQUOTE] = ACTIONS(2579), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1350), + [anon_sym_RBRACE] = ACTIONS(2694), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(2696), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [719] = { - [sym_string] = STATE(1303), - [anon_sym_DQUOTE] = ACTIONS(1357), - [anon_sym_DOLLAR] = ACTIONS(2581), - [anon_sym_POUND] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2583), - [anon_sym_STAR] = ACTIONS(2581), - [anon_sym_AT] = ACTIONS(2581), - [anon_sym_QMARK] = ACTIONS(2581), - [anon_sym_0] = ACTIONS(2585), - [anon_sym__] = ACTIONS(2585), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1353), + [anon_sym_RBRACE] = ACTIONS(2698), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(2700), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [720] = { - [aux_sym_concatenation_repeat1] = STATE(1298), - [sym_file_descriptor] = ACTIONS(1235), - [sym__concat] = ACTIONS(2577), - [sym_variable_name] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1237), - [anon_sym_SEMI_SEMI] = ACTIONS(1237), - [anon_sym_PIPE_AMP] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [anon_sym_LT] = ACTIONS(1237), - [anon_sym_GT] = ACTIONS(1237), - [anon_sym_GT_GT] = ACTIONS(1237), - [anon_sym_AMP_GT] = ACTIONS(1237), - [anon_sym_AMP_GT_GT] = ACTIONS(1237), - [anon_sym_LT_AMP] = ACTIONS(1237), - [anon_sym_GT_AMP] = ACTIONS(1237), - [sym__special_characters] = ACTIONS(1237), - [anon_sym_DQUOTE] = ACTIONS(1237), - [anon_sym_DOLLAR] = ACTIONS(1237), - [sym_raw_string] = ACTIONS(1237), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1237), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1237), - [anon_sym_BQUOTE] = ACTIONS(1237), - [anon_sym_LT_LPAREN] = ACTIONS(1237), - [anon_sym_GT_LPAREN] = ACTIONS(1237), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LF] = ACTIONS(1237), - [anon_sym_AMP] = ACTIONS(1237), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1355), + [anon_sym_RBRACE] = ACTIONS(2680), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(2702), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [721] = { - [sym_subscript] = STATE(1308), - [sym_variable_name] = ACTIONS(2587), - [anon_sym_DOLLAR] = ACTIONS(2589), - [anon_sym_POUND] = ACTIONS(2591), - [anon_sym_DASH] = ACTIONS(2589), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2593), - [anon_sym_STAR] = ACTIONS(2589), - [anon_sym_AT] = ACTIONS(2589), - [anon_sym_QMARK] = ACTIONS(2589), - [anon_sym_0] = ACTIONS(2595), - [anon_sym__] = ACTIONS(2595), + [sym__concat] = ACTIONS(1992), + [anon_sym_in] = ACTIONS(1994), + [anon_sym_SEMI_SEMI] = ACTIONS(1994), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_LF] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), }, [722] = { - [sym_for_statement] = STATE(1309), - [sym_while_statement] = STATE(1309), - [sym_if_statement] = STATE(1309), - [sym_case_statement] = STATE(1309), - [sym_function_definition] = STATE(1309), - [sym_subshell] = STATE(1309), - [sym_pipeline] = STATE(1309), - [sym_list] = STATE(1309), - [sym_bracket_command] = STATE(1309), - [sym_command] = STATE(1309), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1310), - [sym_declaration_command] = STATE(1309), - [sym_unset_command] = STATE(1309), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(2704), }, [723] = { - [sym_for_statement] = STATE(1311), - [sym_while_statement] = STATE(1311), - [sym_if_statement] = STATE(1311), - [sym_case_statement] = STATE(1311), - [sym_function_definition] = STATE(1311), - [sym_subshell] = STATE(1311), - [sym_pipeline] = STATE(1311), - [sym_list] = STATE(1311), - [sym_bracket_command] = STATE(1311), - [sym_command] = STATE(1311), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(1312), - [sym_declaration_command] = STATE(1311), - [sym_unset_command] = STATE(1311), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(2706), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [724] = { - [sym_for_statement] = STATE(1313), - [sym_while_statement] = STATE(1313), - [sym_if_statement] = STATE(1313), - [sym_case_statement] = STATE(1313), - [sym_function_definition] = STATE(1313), - [sym_subshell] = STATE(1313), - [sym_pipeline] = STATE(1313), - [sym_list] = STATE(1313), - [sym_bracket_command] = STATE(1313), - [sym_command] = STATE(1313), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1314), - [sym_declaration_command] = STATE(1313), - [sym_unset_command] = STATE(1313), - [sym_subscript] = STATE(168), + [sym__concat] = ACTIONS(2000), + [anon_sym_in] = ACTIONS(2002), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2002), + }, + [725] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(2708), + }, + [726] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(2680), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [727] = { + [sym__concat] = ACTIONS(2156), + [anon_sym_in] = ACTIONS(2158), + [anon_sym_SEMI_SEMI] = ACTIONS(2158), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym_LF] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2158), + }, + [728] = { + [sym__concat] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_SEMI_SEMI] = ACTIONS(2360), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + }, + [729] = { + [sym_compound_statement] = STATE(1359), + [anon_sym_LBRACE] = ACTIONS(480), + [sym_comment] = ACTIONS(56), + }, + [730] = { + [sym_file_descriptor] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(2712), + [anon_sym_RPAREN] = ACTIONS(2712), + [anon_sym_SEMI_SEMI] = ACTIONS(2712), + [anon_sym_PIPE_AMP] = ACTIONS(2712), + [anon_sym_AMP_AMP] = ACTIONS(2712), + [anon_sym_PIPE_PIPE] = ACTIONS(2712), + [anon_sym_LT] = ACTIONS(2712), + [anon_sym_GT] = ACTIONS(2712), + [anon_sym_GT_GT] = ACTIONS(2712), + [anon_sym_AMP_GT] = ACTIONS(2712), + [anon_sym_AMP_GT_GT] = ACTIONS(2712), + [anon_sym_LT_AMP] = ACTIONS(2712), + [anon_sym_GT_AMP] = ACTIONS(2712), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2712), + [anon_sym_LF] = ACTIONS(2712), + [anon_sym_AMP] = ACTIONS(2712), + }, + [731] = { + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(338), + [anon_sym_for] = ACTIONS(340), + [anon_sym_while] = ACTIONS(340), + [anon_sym_if] = ACTIONS(340), + [anon_sym_case] = ACTIONS(340), + [anon_sym_function] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(338), + [anon_sym_RBRACE] = ACTIONS(338), + [anon_sym_LBRACK] = ACTIONS(340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(338), + [anon_sym_declare] = ACTIONS(340), + [anon_sym_typeset] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_readonly] = ACTIONS(340), + [anon_sym_local] = ACTIONS(340), + [anon_sym_unset] = ACTIONS(340), + [anon_sym_unsetenv] = ACTIONS(340), + [anon_sym_LT] = ACTIONS(340), + [anon_sym_GT] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_AMP_GT] = ACTIONS(340), + [anon_sym_AMP_GT_GT] = ACTIONS(338), + [anon_sym_LT_AMP] = ACTIONS(338), + [anon_sym_GT_AMP] = ACTIONS(338), + [sym__special_characters] = ACTIONS(342), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_DOLLAR] = ACTIONS(340), + [sym_raw_string] = ACTIONS(338), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(338), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(338), + [anon_sym_BQUOTE] = ACTIONS(338), + [anon_sym_LT_LPAREN] = ACTIONS(338), + [anon_sym_GT_LPAREN] = ACTIONS(338), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(342), + }, + [732] = { + [anon_sym_PIPE] = ACTIONS(344), + [anon_sym_SEMI_SEMI] = ACTIONS(2714), + [anon_sym_PIPE_AMP] = ACTIONS(344), + [anon_sym_AMP_AMP] = ACTIONS(348), + [anon_sym_PIPE_PIPE] = ACTIONS(348), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_LF] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + }, + [733] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(344), + [anon_sym_SEMI_SEMI] = ACTIONS(2714), + [anon_sym_PIPE_AMP] = ACTIONS(344), + [anon_sym_AMP_AMP] = ACTIONS(348), + [anon_sym_PIPE_PIPE] = ACTIONS(348), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(380), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(380), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(380), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(2714), + [anon_sym_LF] = ACTIONS(2714), + [anon_sym_AMP] = ACTIONS(2714), + }, + [734] = { + [sym__terminated_statement] = STATE(731), + [sym_for_statement] = STATE(732), + [sym_while_statement] = STATE(732), + [sym_if_statement] = STATE(732), + [sym_case_statement] = STATE(732), + [sym_function_definition] = STATE(732), + [sym_subshell] = STATE(732), + [sym_pipeline] = STATE(732), + [sym_list] = STATE(732), + [sym_command] = STATE(732), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(732), + [sym_variable_assignment] = STATE(733), + [sym_declaration_command] = STATE(732), + [sym_unset_command] = STATE(732), + [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1362), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -27731,5476 +29167,209 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [725] = { - [sym_file_redirect] = STATE(202), - [sym_heredoc_redirect] = STATE(202), - [sym_herestring_redirect] = STATE(202), - [aux_sym_while_statement_repeat1] = STATE(1315), - [sym_file_descriptor] = ACTIONS(540), - [anon_sym_PIPE] = ACTIONS(1303), - [anon_sym_RPAREN] = ACTIONS(1303), - [anon_sym_SEMI_SEMI] = ACTIONS(1303), - [anon_sym_PIPE_AMP] = ACTIONS(1303), - [anon_sym_AMP_AMP] = ACTIONS(1303), - [anon_sym_PIPE_PIPE] = ACTIONS(1303), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_GT_GT] = ACTIONS(542), - [anon_sym_AMP_GT] = ACTIONS(542), - [anon_sym_AMP_GT_GT] = ACTIONS(542), - [anon_sym_LT_AMP] = ACTIONS(542), - [anon_sym_GT_AMP] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(348), - [anon_sym_LT_LT_DASH] = ACTIONS(348), - [anon_sym_LT_LT_LT] = ACTIONS(544), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1303), - [anon_sym_LF] = ACTIONS(1303), - [anon_sym_AMP] = ACTIONS(1303), - }, - [726] = { - [anon_sym_RPAREN] = ACTIONS(2597), - [sym_comment] = ACTIONS(56), - }, - [727] = { - [sym_file_redirect] = STATE(716), - [sym_file_descriptor] = ACTIONS(2599), - [anon_sym_PIPE] = ACTIONS(1351), - [anon_sym_RPAREN] = ACTIONS(1351), - [anon_sym_SEMI_SEMI] = ACTIONS(1351), - [anon_sym_PIPE_AMP] = ACTIONS(1351), - [anon_sym_AMP_AMP] = ACTIONS(1351), - [anon_sym_PIPE_PIPE] = ACTIONS(1351), - [anon_sym_LT] = ACTIONS(2601), - [anon_sym_GT] = ACTIONS(2601), - [anon_sym_GT_GT] = ACTIONS(2601), - [anon_sym_AMP_GT] = ACTIONS(2601), - [anon_sym_AMP_GT_GT] = ACTIONS(2601), - [anon_sym_LT_AMP] = ACTIONS(2601), - [anon_sym_GT_AMP] = ACTIONS(2601), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1351), - [anon_sym_LF] = ACTIONS(1351), - [anon_sym_AMP] = ACTIONS(1351), - }, - [728] = { - [sym_concatenation] = STATE(835), - [sym_string] = STATE(1320), - [sym_array] = STATE(835), - [sym_simple_expansion] = STATE(1320), - [sym_string_expansion] = STATE(1320), - [sym_expansion] = STATE(1320), - [sym_command_substitution] = STATE(1320), - [sym_process_substitution] = STATE(1320), - [sym__empty_value] = ACTIONS(1621), - [anon_sym_LPAREN] = ACTIONS(1623), - [sym__special_characters] = ACTIONS(2603), - [anon_sym_DQUOTE] = ACTIONS(1381), - [anon_sym_DOLLAR] = ACTIONS(2605), - [sym_raw_string] = ACTIONS(2607), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2609), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2611), - [anon_sym_BQUOTE] = ACTIONS(2613), - [anon_sym_LT_LPAREN] = ACTIONS(2615), - [anon_sym_GT_LPAREN] = ACTIONS(2615), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2617), - }, - [729] = { - [sym_string] = STATE(1321), - [sym_simple_expansion] = STATE(1321), - [sym_string_expansion] = STATE(1321), - [sym_expansion] = STATE(1321), - [sym_command_substitution] = STATE(1321), - [sym_process_substitution] = STATE(1321), - [sym__special_characters] = ACTIONS(2619), - [anon_sym_DQUOTE] = ACTIONS(1381), - [anon_sym_DOLLAR] = ACTIONS(2605), - [sym_raw_string] = ACTIONS(2621), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2609), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2611), - [anon_sym_BQUOTE] = ACTIONS(2613), - [anon_sym_LT_LPAREN] = ACTIONS(2615), - [anon_sym_GT_LPAREN] = ACTIONS(2615), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2619), - }, - [730] = { - [aux_sym_concatenation_repeat1] = STATE(1322), - [sym__concat] = ACTIONS(1377), - [sym_variable_name] = ACTIONS(760), - [anon_sym_PIPE] = ACTIONS(762), - [anon_sym_RPAREN] = ACTIONS(762), - [anon_sym_SEMI_SEMI] = ACTIONS(762), - [anon_sym_PIPE_AMP] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(762), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [sym__special_characters] = ACTIONS(762), - [anon_sym_DQUOTE] = ACTIONS(762), - [anon_sym_DOLLAR] = ACTIONS(762), - [sym_raw_string] = ACTIONS(762), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(762), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(762), - [anon_sym_BQUOTE] = ACTIONS(762), - [anon_sym_LT_LPAREN] = ACTIONS(762), - [anon_sym_GT_LPAREN] = ACTIONS(762), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(762), - [sym_word] = ACTIONS(762), - [anon_sym_SEMI] = ACTIONS(762), - [anon_sym_LF] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(762), - }, - [731] = { - [sym__concat] = ACTIONS(764), - [sym_variable_name] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(766), - [anon_sym_SEMI_SEMI] = ACTIONS(766), - [anon_sym_PIPE_AMP] = ACTIONS(766), - [anon_sym_AMP_AMP] = ACTIONS(766), - [anon_sym_PIPE_PIPE] = ACTIONS(766), - [sym__special_characters] = ACTIONS(766), - [anon_sym_DQUOTE] = ACTIONS(766), - [anon_sym_DOLLAR] = ACTIONS(766), - [sym_raw_string] = ACTIONS(766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(766), - [anon_sym_BQUOTE] = ACTIONS(766), - [anon_sym_LT_LPAREN] = ACTIONS(766), - [anon_sym_GT_LPAREN] = ACTIONS(766), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(766), - [sym_word] = ACTIONS(766), - [anon_sym_SEMI] = ACTIONS(766), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(766), - }, - [732] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(2623), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [733] = { - [sym__concat] = ACTIONS(796), - [sym_variable_name] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(798), - [anon_sym_RPAREN] = ACTIONS(798), - [anon_sym_SEMI_SEMI] = ACTIONS(798), - [anon_sym_PIPE_AMP] = ACTIONS(798), - [anon_sym_AMP_AMP] = ACTIONS(798), - [anon_sym_PIPE_PIPE] = ACTIONS(798), - [sym__special_characters] = ACTIONS(798), - [anon_sym_DQUOTE] = ACTIONS(798), - [anon_sym_DOLLAR] = ACTIONS(798), - [sym_raw_string] = ACTIONS(798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(798), - [anon_sym_BQUOTE] = ACTIONS(798), - [anon_sym_LT_LPAREN] = ACTIONS(798), - [anon_sym_GT_LPAREN] = ACTIONS(798), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(798), - [sym_word] = ACTIONS(798), - [anon_sym_SEMI] = ACTIONS(798), - [anon_sym_LF] = ACTIONS(798), - [anon_sym_AMP] = ACTIONS(798), - }, - [734] = { - [sym__concat] = ACTIONS(800), - [sym_variable_name] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(802), - [anon_sym_RPAREN] = ACTIONS(802), - [anon_sym_SEMI_SEMI] = ACTIONS(802), - [anon_sym_PIPE_AMP] = ACTIONS(802), - [anon_sym_AMP_AMP] = ACTIONS(802), - [anon_sym_PIPE_PIPE] = ACTIONS(802), - [sym__special_characters] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(802), - [sym_raw_string] = ACTIONS(802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(802), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(802), - [anon_sym_BQUOTE] = ACTIONS(802), - [anon_sym_LT_LPAREN] = ACTIONS(802), - [anon_sym_GT_LPAREN] = ACTIONS(802), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(802), - [sym_word] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(802), - [anon_sym_LF] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(802), + [sym_word] = ACTIONS(58), }, [735] = { - [sym__concat] = ACTIONS(804), - [sym_variable_name] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(806), - [anon_sym_RPAREN] = ACTIONS(806), - [anon_sym_SEMI_SEMI] = ACTIONS(806), - [anon_sym_PIPE_AMP] = ACTIONS(806), - [anon_sym_AMP_AMP] = ACTIONS(806), - [anon_sym_PIPE_PIPE] = ACTIONS(806), - [sym__special_characters] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(806), - [anon_sym_DOLLAR] = ACTIONS(806), - [sym_raw_string] = ACTIONS(806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(806), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(806), - [anon_sym_BQUOTE] = ACTIONS(806), - [anon_sym_LT_LPAREN] = ACTIONS(806), - [anon_sym_GT_LPAREN] = ACTIONS(806), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(806), - [sym_word] = ACTIONS(806), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(806), + [anon_sym_LT] = ACTIONS(2718), + [anon_sym_GT] = ACTIONS(2718), + [anon_sym_GT_GT] = ACTIONS(2720), + [anon_sym_AMP_GT] = ACTIONS(2718), + [anon_sym_AMP_GT_GT] = ACTIONS(2720), + [anon_sym_LT_AMP] = ACTIONS(2720), + [anon_sym_GT_AMP] = ACTIONS(2720), + [sym_comment] = ACTIONS(56), }, [736] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(2625), - [sym_comment] = ACTIONS(56), - }, - [737] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1326), - [anon_sym_RBRACE] = ACTIONS(2627), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [738] = { - [sym_subscript] = STATE(1330), - [sym_variable_name] = ACTIONS(2629), - [anon_sym_DOLLAR] = ACTIONS(2631), - [anon_sym_DASH] = ACTIONS(2631), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2633), - [anon_sym_STAR] = ACTIONS(2631), - [anon_sym_AT] = ACTIONS(2631), - [anon_sym_QMARK] = ACTIONS(2631), - [anon_sym_0] = ACTIONS(2635), - [anon_sym__] = ACTIONS(2635), - }, - [739] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1332), - [anon_sym_RBRACE] = ACTIONS(2637), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [740] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1334), - [anon_sym_RBRACE] = ACTIONS(2639), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [741] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(2641), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [742] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(2641), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [743] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(2641), - [sym_comment] = ACTIONS(56), - }, - [744] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(2641), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [745] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(2643), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [746] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(2643), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [747] = { - [sym_variable_assignment] = STATE(105), - [sym_subscript] = STATE(275), - [sym_concatenation] = STATE(105), - [sym_string] = STATE(270), - [sym_simple_expansion] = STATE(270), - [sym_string_expansion] = STATE(270), - [sym_expansion] = STATE(270), - [sym_command_substitution] = STATE(270), - [sym_process_substitution] = STATE(270), - [aux_sym_declaration_command_repeat1] = STATE(747), - [sym_variable_name] = ACTIONS(2645), - [anon_sym_PIPE] = ACTIONS(1670), - [anon_sym_RPAREN] = ACTIONS(1670), - [anon_sym_SEMI_SEMI] = ACTIONS(1670), - [anon_sym_PIPE_AMP] = ACTIONS(1670), - [anon_sym_AMP_AMP] = ACTIONS(1670), - [anon_sym_PIPE_PIPE] = ACTIONS(1670), - [sym__special_characters] = ACTIONS(2648), - [anon_sym_DQUOTE] = ACTIONS(2651), - [anon_sym_DOLLAR] = ACTIONS(2654), - [sym_raw_string] = ACTIONS(2657), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2660), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2663), - [anon_sym_BQUOTE] = ACTIONS(2666), - [anon_sym_LT_LPAREN] = ACTIONS(2669), - [anon_sym_GT_LPAREN] = ACTIONS(2669), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1696), - [sym_word] = ACTIONS(2657), - [anon_sym_SEMI] = ACTIONS(1670), - [anon_sym_LF] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1670), - }, - [748] = { - [sym_string] = STATE(1337), - [sym_simple_expansion] = STATE(1337), - [sym_string_expansion] = STATE(1337), - [sym_expansion] = STATE(1337), - [sym_command_substitution] = STATE(1337), - [sym_process_substitution] = STATE(1337), - [sym__special_characters] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(1403), - [anon_sym_DOLLAR] = ACTIONS(2674), - [sym_raw_string] = ACTIONS(2676), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2678), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2680), - [anon_sym_BQUOTE] = ACTIONS(2682), - [anon_sym_LT_LPAREN] = ACTIONS(2684), - [anon_sym_GT_LPAREN] = ACTIONS(2684), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2672), - }, - [749] = { - [aux_sym_concatenation_repeat1] = STATE(1338), - [sym__concat] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(762), - [anon_sym_RPAREN] = ACTIONS(762), - [anon_sym_SEMI_SEMI] = ACTIONS(762), - [anon_sym_PIPE_AMP] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(762), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [sym__special_characters] = ACTIONS(762), - [anon_sym_DQUOTE] = ACTIONS(762), - [anon_sym_DOLLAR] = ACTIONS(762), - [sym_raw_string] = ACTIONS(762), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(762), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(762), - [anon_sym_BQUOTE] = ACTIONS(762), - [anon_sym_LT_LPAREN] = ACTIONS(762), - [anon_sym_GT_LPAREN] = ACTIONS(762), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(762), - [sym_word] = ACTIONS(762), - [anon_sym_SEMI] = ACTIONS(762), - [anon_sym_LF] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(762), - }, - [750] = { - [sym__concat] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(766), - [anon_sym_SEMI_SEMI] = ACTIONS(766), - [anon_sym_PIPE_AMP] = ACTIONS(766), - [anon_sym_AMP_AMP] = ACTIONS(766), - [anon_sym_PIPE_PIPE] = ACTIONS(766), - [sym__special_characters] = ACTIONS(766), - [anon_sym_DQUOTE] = ACTIONS(766), - [anon_sym_DOLLAR] = ACTIONS(766), - [sym_raw_string] = ACTIONS(766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(766), - [anon_sym_BQUOTE] = ACTIONS(766), - [anon_sym_LT_LPAREN] = ACTIONS(766), - [anon_sym_GT_LPAREN] = ACTIONS(766), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(766), - [sym_word] = ACTIONS(766), - [anon_sym_SEMI] = ACTIONS(766), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(766), - }, - [751] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(2686), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [752] = { - [sym__concat] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(798), - [anon_sym_RPAREN] = ACTIONS(798), - [anon_sym_SEMI_SEMI] = ACTIONS(798), - [anon_sym_PIPE_AMP] = ACTIONS(798), - [anon_sym_AMP_AMP] = ACTIONS(798), - [anon_sym_PIPE_PIPE] = ACTIONS(798), - [sym__special_characters] = ACTIONS(798), - [anon_sym_DQUOTE] = ACTIONS(798), - [anon_sym_DOLLAR] = ACTIONS(798), - [sym_raw_string] = ACTIONS(798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(798), - [anon_sym_BQUOTE] = ACTIONS(798), - [anon_sym_LT_LPAREN] = ACTIONS(798), - [anon_sym_GT_LPAREN] = ACTIONS(798), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(798), - [sym_word] = ACTIONS(798), - [anon_sym_SEMI] = ACTIONS(798), - [anon_sym_LF] = ACTIONS(798), - [anon_sym_AMP] = ACTIONS(798), - }, - [753] = { - [sym__concat] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(802), - [anon_sym_RPAREN] = ACTIONS(802), - [anon_sym_SEMI_SEMI] = ACTIONS(802), - [anon_sym_PIPE_AMP] = ACTIONS(802), - [anon_sym_AMP_AMP] = ACTIONS(802), - [anon_sym_PIPE_PIPE] = ACTIONS(802), - [sym__special_characters] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(802), - [sym_raw_string] = ACTIONS(802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(802), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(802), - [anon_sym_BQUOTE] = ACTIONS(802), - [anon_sym_LT_LPAREN] = ACTIONS(802), - [anon_sym_GT_LPAREN] = ACTIONS(802), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(802), - [sym_word] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(802), - [anon_sym_LF] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(802), - }, - [754] = { - [sym__concat] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(806), - [anon_sym_RPAREN] = ACTIONS(806), - [anon_sym_SEMI_SEMI] = ACTIONS(806), - [anon_sym_PIPE_AMP] = ACTIONS(806), - [anon_sym_AMP_AMP] = ACTIONS(806), - [anon_sym_PIPE_PIPE] = ACTIONS(806), - [sym__special_characters] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(806), - [anon_sym_DOLLAR] = ACTIONS(806), - [sym_raw_string] = ACTIONS(806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(806), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(806), - [anon_sym_BQUOTE] = ACTIONS(806), - [anon_sym_LT_LPAREN] = ACTIONS(806), - [anon_sym_GT_LPAREN] = ACTIONS(806), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(806), - [sym_word] = ACTIONS(806), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(806), - }, - [755] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(2688), - [sym_comment] = ACTIONS(56), - }, - [756] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1342), - [anon_sym_RBRACE] = ACTIONS(2690), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [757] = { - [sym_subscript] = STATE(1346), - [sym_variable_name] = ACTIONS(2692), - [anon_sym_DOLLAR] = ACTIONS(2694), - [anon_sym_DASH] = ACTIONS(2694), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_AT] = ACTIONS(2694), - [anon_sym_QMARK] = ACTIONS(2694), - [anon_sym_0] = ACTIONS(2698), - [anon_sym__] = ACTIONS(2698), - }, - [758] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1348), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [759] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1350), - [anon_sym_RBRACE] = ACTIONS(2702), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [760] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(2704), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [761] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(2704), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [762] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(2704), - [sym_comment] = ACTIONS(56), - }, - [763] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(2704), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [764] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [765] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(2706), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [766] = { - [sym_concatenation] = STATE(117), - [sym_string] = STATE(280), - [sym_simple_expansion] = STATE(280), - [sym_string_expansion] = STATE(280), - [sym_expansion] = STATE(280), - [sym_command_substitution] = STATE(280), - [sym_process_substitution] = STATE(280), - [aux_sym_unset_command_repeat1] = STATE(766), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_RPAREN] = ACTIONS(1735), - [anon_sym_SEMI_SEMI] = ACTIONS(1735), - [anon_sym_PIPE_AMP] = ACTIONS(1735), - [anon_sym_AMP_AMP] = ACTIONS(1735), - [anon_sym_PIPE_PIPE] = ACTIONS(1735), - [sym__special_characters] = ACTIONS(2708), - [anon_sym_DQUOTE] = ACTIONS(2711), - [anon_sym_DOLLAR] = ACTIONS(2714), - [sym_raw_string] = ACTIONS(2717), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2720), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2723), - [anon_sym_BQUOTE] = ACTIONS(2726), - [anon_sym_LT_LPAREN] = ACTIONS(2729), - [anon_sym_GT_LPAREN] = ACTIONS(2729), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1761), - [sym_word] = ACTIONS(2717), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_LF] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - }, - [767] = { - [sym_file_descriptor] = ACTIONS(1790), - [sym__concat] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [anon_sym_PIPE_AMP] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_GT_GT] = ACTIONS(1792), - [anon_sym_AMP_GT] = ACTIONS(1792), - [anon_sym_AMP_GT_GT] = ACTIONS(1792), - [anon_sym_LT_AMP] = ACTIONS(1792), - [anon_sym_GT_AMP] = ACTIONS(1792), - [anon_sym_LT_LT] = ACTIONS(1792), - [anon_sym_LT_LT_DASH] = ACTIONS(1792), - [anon_sym_LT_LT_LT] = ACTIONS(1792), - [sym__special_characters] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1792), - [sym_raw_string] = ACTIONS(1792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1792), - [anon_sym_LT_LPAREN] = ACTIONS(1792), - [anon_sym_GT_LPAREN] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - }, - [768] = { - [aux_sym_concatenation_repeat1] = STATE(768), - [sym_file_descriptor] = ACTIONS(1790), - [sym__concat] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [anon_sym_PIPE_AMP] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_GT_GT] = ACTIONS(1792), - [anon_sym_AMP_GT] = ACTIONS(1792), - [anon_sym_AMP_GT_GT] = ACTIONS(1792), - [anon_sym_LT_AMP] = ACTIONS(1792), - [anon_sym_GT_AMP] = ACTIONS(1792), - [anon_sym_LT_LT] = ACTIONS(1792), - [anon_sym_LT_LT_DASH] = ACTIONS(1792), - [anon_sym_LT_LT_LT] = ACTIONS(1792), - [sym__special_characters] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1792), - [sym_raw_string] = ACTIONS(1792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1792), - [anon_sym_LT_LPAREN] = ACTIONS(1792), - [anon_sym_GT_LPAREN] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - }, - [769] = { - [sym_file_descriptor] = ACTIONS(1821), - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_RPAREN] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_GT_GT] = ACTIONS(1823), - [anon_sym_AMP_GT] = ACTIONS(1823), - [anon_sym_AMP_GT_GT] = ACTIONS(1823), - [anon_sym_LT_AMP] = ACTIONS(1823), - [anon_sym_GT_AMP] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_LT_LT_DASH] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [sym__special_characters] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1823), - [sym_raw_string] = ACTIONS(1823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), - [anon_sym_BQUOTE] = ACTIONS(1823), - [anon_sym_LT_LPAREN] = ACTIONS(1823), - [anon_sym_GT_LPAREN] = ACTIONS(1823), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LF] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - }, - [770] = { - [sym_concatenation] = STATE(1356), - [sym_string] = STATE(1355), - [sym_simple_expansion] = STATE(1355), - [sym_string_expansion] = STATE(1355), - [sym_expansion] = STATE(1355), - [sym_command_substitution] = STATE(1355), - [sym_process_substitution] = STATE(1355), - [anon_sym_RBRACE] = ACTIONS(2735), - [sym__special_characters] = ACTIONS(2737), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(2739), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2741), - }, - [771] = { - [sym_file_descriptor] = ACTIONS(1866), - [sym__concat] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_RPAREN] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [anon_sym_PIPE_AMP] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_GT_GT] = ACTIONS(1868), - [anon_sym_AMP_GT] = ACTIONS(1868), - [anon_sym_AMP_GT_GT] = ACTIONS(1868), - [anon_sym_LT_AMP] = ACTIONS(1868), - [anon_sym_GT_AMP] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_LT_LT_DASH] = ACTIONS(1868), - [anon_sym_LT_LT_LT] = ACTIONS(1868), - [sym__special_characters] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1868), - [sym_raw_string] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), - [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(178), - [sym_word] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - }, - [772] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(2743), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [773] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(2745), - [sym_comment] = ACTIONS(56), - }, - [774] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1360), - [anon_sym_RBRACE] = ACTIONS(2747), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [775] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1362), - [anon_sym_RBRACE] = ACTIONS(2749), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [776] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1363), - [anon_sym_RBRACE] = ACTIONS(2735), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [777] = { - [sym_file_descriptor] = ACTIONS(1910), - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1912), - [anon_sym_SEMI_SEMI] = ACTIONS(1912), - [anon_sym_PIPE_AMP] = ACTIONS(1912), - [anon_sym_AMP_AMP] = ACTIONS(1912), - [anon_sym_PIPE_PIPE] = ACTIONS(1912), - [anon_sym_LT] = ACTIONS(1912), - [anon_sym_GT] = ACTIONS(1912), - [anon_sym_GT_GT] = ACTIONS(1912), - [anon_sym_AMP_GT] = ACTIONS(1912), - [anon_sym_AMP_GT_GT] = ACTIONS(1912), - [anon_sym_LT_AMP] = ACTIONS(1912), - [anon_sym_GT_AMP] = ACTIONS(1912), - [anon_sym_LT_LT] = ACTIONS(1912), - [anon_sym_LT_LT_DASH] = ACTIONS(1912), - [anon_sym_LT_LT_LT] = ACTIONS(1912), - [sym__special_characters] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [anon_sym_DOLLAR] = ACTIONS(1912), - [sym_raw_string] = ACTIONS(1912), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1912), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1912), - [anon_sym_BQUOTE] = ACTIONS(1912), - [anon_sym_LT_LPAREN] = ACTIONS(1912), - [anon_sym_GT_LPAREN] = ACTIONS(1912), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_LF] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1912), - }, - [778] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(2751), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [779] = { - [sym_file_descriptor] = ACTIONS(1916), - [sym__concat] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_RPAREN] = ACTIONS(1918), - [anon_sym_SEMI_SEMI] = ACTIONS(1918), - [anon_sym_PIPE_AMP] = ACTIONS(1918), - [anon_sym_AMP_AMP] = ACTIONS(1918), - [anon_sym_PIPE_PIPE] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_GT] = ACTIONS(1918), - [anon_sym_GT_GT] = ACTIONS(1918), - [anon_sym_AMP_GT] = ACTIONS(1918), - [anon_sym_AMP_GT_GT] = ACTIONS(1918), - [anon_sym_LT_AMP] = ACTIONS(1918), - [anon_sym_GT_AMP] = ACTIONS(1918), - [anon_sym_LT_LT] = ACTIONS(1918), - [anon_sym_LT_LT_DASH] = ACTIONS(1918), - [anon_sym_LT_LT_LT] = ACTIONS(1918), - [sym__special_characters] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1918), - [anon_sym_DOLLAR] = ACTIONS(1918), - [sym_raw_string] = ACTIONS(1918), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1918), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1918), - [anon_sym_BQUOTE] = ACTIONS(1918), - [anon_sym_LT_LPAREN] = ACTIONS(1918), - [anon_sym_GT_LPAREN] = ACTIONS(1918), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1918), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_LF] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), - }, - [780] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(2735), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [781] = { - [sym_file_descriptor] = ACTIONS(2064), - [sym__concat] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_RPAREN] = ACTIONS(2066), - [anon_sym_SEMI_SEMI] = ACTIONS(2066), - [anon_sym_PIPE_AMP] = ACTIONS(2066), - [anon_sym_AMP_AMP] = ACTIONS(2066), - [anon_sym_PIPE_PIPE] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_GT] = ACTIONS(2066), - [anon_sym_GT_GT] = ACTIONS(2066), - [anon_sym_AMP_GT] = ACTIONS(2066), - [anon_sym_AMP_GT_GT] = ACTIONS(2066), - [anon_sym_LT_AMP] = ACTIONS(2066), - [anon_sym_GT_AMP] = ACTIONS(2066), - [anon_sym_LT_LT] = ACTIONS(2066), - [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(2066), - [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(178), - [sym_word] = ACTIONS(2066), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_LF] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2066), - }, - [782] = { - [sym_file_descriptor] = ACTIONS(2228), - [sym__concat] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_RPAREN] = ACTIONS(2230), - [anon_sym_SEMI_SEMI] = ACTIONS(2230), - [anon_sym_PIPE_AMP] = ACTIONS(2230), - [anon_sym_AMP_AMP] = ACTIONS(2230), - [anon_sym_PIPE_PIPE] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_AMP_GT] = ACTIONS(2230), - [anon_sym_AMP_GT_GT] = ACTIONS(2230), - [anon_sym_LT_AMP] = ACTIONS(2230), - [anon_sym_GT_AMP] = ACTIONS(2230), - [anon_sym_LT_LT] = ACTIONS(2230), - [anon_sym_LT_LT_DASH] = ACTIONS(2230), - [anon_sym_LT_LT_LT] = ACTIONS(2230), - [sym__special_characters] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2230), - [anon_sym_DOLLAR] = ACTIONS(2230), - [sym_raw_string] = ACTIONS(2230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2230), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2230), - [anon_sym_BQUOTE] = ACTIONS(2230), - [anon_sym_LT_LPAREN] = ACTIONS(2230), - [anon_sym_GT_LPAREN] = ACTIONS(2230), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_LF] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - }, - [783] = { - [sym_compound_statement] = STATE(1365), - [anon_sym_LBRACE] = ACTIONS(470), - [sym_comment] = ACTIONS(56), - }, - [784] = { - [anon_sym_PIPE] = ACTIONS(2753), - [anon_sym_RPAREN] = ACTIONS(2753), - [anon_sym_SEMI_SEMI] = ACTIONS(2753), - [anon_sym_PIPE_AMP] = ACTIONS(2753), - [anon_sym_AMP_AMP] = ACTIONS(2753), - [anon_sym_PIPE_PIPE] = ACTIONS(2753), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2753), - [anon_sym_LF] = ACTIONS(2753), - [anon_sym_AMP] = ACTIONS(2753), - }, - [785] = { - [anon_sym_PIPE] = ACTIONS(532), - [anon_sym_RPAREN] = ACTIONS(2234), - [anon_sym_SEMI_SEMI] = ACTIONS(2234), - [anon_sym_PIPE_AMP] = ACTIONS(532), - [anon_sym_AMP_AMP] = ACTIONS(2234), - [anon_sym_PIPE_PIPE] = ACTIONS(2234), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_LF] = ACTIONS(2234), - [anon_sym_AMP] = ACTIONS(2234), - }, - [786] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(532), - [anon_sym_RPAREN] = ACTIONS(2234), - [anon_sym_SEMI_SEMI] = ACTIONS(2234), - [anon_sym_PIPE_AMP] = ACTIONS(532), - [anon_sym_AMP_AMP] = ACTIONS(2234), - [anon_sym_PIPE_PIPE] = ACTIONS(2234), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_AMP_GT] = ACTIONS(370), - [anon_sym_AMP_GT_GT] = ACTIONS(370), - [anon_sym_LT_AMP] = ACTIONS(370), - [anon_sym_GT_AMP] = ACTIONS(370), - [sym__special_characters] = ACTIONS(370), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_DOLLAR] = ACTIONS(370), - [sym_raw_string] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(370), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(370), - [anon_sym_BQUOTE] = ACTIONS(370), - [anon_sym_LT_LPAREN] = ACTIONS(370), - [anon_sym_GT_LPAREN] = ACTIONS(370), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(370), - [anon_sym_SEMI] = ACTIONS(2234), - [anon_sym_LF] = ACTIONS(2234), - [anon_sym_AMP] = ACTIONS(2234), - }, - [787] = { - [sym_concatenation] = STATE(1135), + [sym_concatenation] = STATE(1372), [sym_string] = STATE(1367), [sym_simple_expansion] = STATE(1367), [sym_string_expansion] = STATE(1367), [sym_expansion] = STATE(1367), [sym_command_substitution] = STATE(1367), [sym_process_substitution] = STATE(1367), - [sym__special_characters] = ACTIONS(2755), - [anon_sym_DQUOTE] = ACTIONS(1459), - [anon_sym_DOLLAR] = ACTIONS(1461), - [sym_raw_string] = ACTIONS(2757), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1465), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1467), - [anon_sym_BQUOTE] = ACTIONS(1469), - [anon_sym_LT_LPAREN] = ACTIONS(1471), - [anon_sym_GT_LPAREN] = ACTIONS(1471), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2759), - }, - [788] = { - [aux_sym_concatenation_repeat1] = STATE(1369), - [sym_file_descriptor] = ACTIONS(728), - [sym__concat] = ACTIONS(2761), - [anon_sym_PIPE] = ACTIONS(2244), - [anon_sym_RPAREN] = ACTIONS(2244), - [anon_sym_SEMI_SEMI] = ACTIONS(2244), - [anon_sym_PIPE_AMP] = ACTIONS(2244), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE_PIPE] = ACTIONS(2244), - [anon_sym_LT] = ACTIONS(2244), - [anon_sym_GT] = ACTIONS(2244), - [anon_sym_GT_GT] = ACTIONS(2244), - [anon_sym_AMP_GT] = ACTIONS(2244), - [anon_sym_AMP_GT_GT] = ACTIONS(2244), - [anon_sym_LT_AMP] = ACTIONS(2244), - [anon_sym_GT_AMP] = ACTIONS(2244), - [anon_sym_LT_LT] = ACTIONS(2244), - [anon_sym_LT_LT_DASH] = ACTIONS(2244), - [anon_sym_LT_LT_LT] = ACTIONS(2244), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2244), - [anon_sym_LF] = ACTIONS(2244), - [anon_sym_AMP] = ACTIONS(2244), - }, - [789] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(1371), - [anon_sym_DQUOTE] = ACTIONS(2763), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [790] = { - [sym_string] = STATE(1374), - [anon_sym_DQUOTE] = ACTIONS(1459), - [anon_sym_DOLLAR] = ACTIONS(2765), - [anon_sym_POUND] = ACTIONS(2765), - [anon_sym_DASH] = ACTIONS(2765), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2767), - [anon_sym_STAR] = ACTIONS(2765), - [anon_sym_AT] = ACTIONS(2765), - [anon_sym_QMARK] = ACTIONS(2765), - [anon_sym_0] = ACTIONS(2769), - [anon_sym__] = ACTIONS(2769), - }, - [791] = { - [aux_sym_concatenation_repeat1] = STATE(1369), - [sym_file_descriptor] = ACTIONS(742), - [sym__concat] = ACTIONS(2761), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_RPAREN] = ACTIONS(2254), - [anon_sym_SEMI_SEMI] = ACTIONS(2254), - [anon_sym_PIPE_AMP] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2254), - [anon_sym_GT] = ACTIONS(2254), - [anon_sym_GT_GT] = ACTIONS(2254), - [anon_sym_AMP_GT] = ACTIONS(2254), - [anon_sym_AMP_GT_GT] = ACTIONS(2254), - [anon_sym_LT_AMP] = ACTIONS(2254), - [anon_sym_GT_AMP] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2254), - [anon_sym_LT_LT_DASH] = ACTIONS(2254), - [anon_sym_LT_LT_LT] = ACTIONS(2254), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LF] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2254), - }, - [792] = { - [sym_subscript] = STATE(1379), - [sym_variable_name] = ACTIONS(2771), - [anon_sym_DOLLAR] = ACTIONS(2773), - [anon_sym_POUND] = ACTIONS(2775), - [anon_sym_DASH] = ACTIONS(2773), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2777), - [anon_sym_STAR] = ACTIONS(2773), - [anon_sym_AT] = ACTIONS(2773), - [anon_sym_QMARK] = ACTIONS(2773), - [anon_sym_0] = ACTIONS(2779), - [anon_sym__] = ACTIONS(2779), - }, - [793] = { - [sym_for_statement] = STATE(1380), - [sym_while_statement] = STATE(1380), - [sym_if_statement] = STATE(1380), - [sym_case_statement] = STATE(1380), - [sym_function_definition] = STATE(1380), - [sym_subshell] = STATE(1380), - [sym_pipeline] = STATE(1380), - [sym_list] = STATE(1380), - [sym_bracket_command] = STATE(1380), - [sym_command] = STATE(1380), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1381), - [sym_declaration_command] = STATE(1380), - [sym_unset_command] = STATE(1380), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [794] = { - [sym_for_statement] = STATE(1382), - [sym_while_statement] = STATE(1382), - [sym_if_statement] = STATE(1382), - [sym_case_statement] = STATE(1382), - [sym_function_definition] = STATE(1382), - [sym_subshell] = STATE(1382), - [sym_pipeline] = STATE(1382), - [sym_list] = STATE(1382), - [sym_bracket_command] = STATE(1382), - [sym_command] = STATE(1382), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(1383), - [sym_declaration_command] = STATE(1382), - [sym_unset_command] = STATE(1382), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), - }, - [795] = { - [sym_for_statement] = STATE(1384), - [sym_while_statement] = STATE(1384), - [sym_if_statement] = STATE(1384), - [sym_case_statement] = STATE(1384), - [sym_function_definition] = STATE(1384), - [sym_subshell] = STATE(1384), - [sym_pipeline] = STATE(1384), - [sym_list] = STATE(1384), - [sym_bracket_command] = STATE(1384), - [sym_command] = STATE(1384), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1385), - [sym_declaration_command] = STATE(1384), - [sym_unset_command] = STATE(1384), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [796] = { - [aux_sym_concatenation_repeat1] = STATE(1369), - [sym_file_descriptor] = ACTIONS(2282), - [sym__concat] = ACTIONS(2761), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_RPAREN] = ACTIONS(2284), - [anon_sym_SEMI_SEMI] = ACTIONS(2284), - [anon_sym_PIPE_AMP] = ACTIONS(2284), - [anon_sym_AMP_AMP] = ACTIONS(2284), - [anon_sym_PIPE_PIPE] = ACTIONS(2284), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_GT] = ACTIONS(2284), - [anon_sym_GT_GT] = ACTIONS(2284), - [anon_sym_AMP_GT] = ACTIONS(2284), - [anon_sym_AMP_GT_GT] = ACTIONS(2284), - [anon_sym_LT_AMP] = ACTIONS(2284), - [anon_sym_GT_AMP] = ACTIONS(2284), - [anon_sym_LT_LT] = ACTIONS(2284), - [anon_sym_LT_LT_DASH] = ACTIONS(2284), - [anon_sym_LT_LT_LT] = ACTIONS(2284), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2284), - [anon_sym_LF] = ACTIONS(2284), - [anon_sym_AMP] = ACTIONS(2284), - }, - [797] = { - [aux_sym_concatenation_repeat1] = STATE(1369), - [sym_file_descriptor] = ACTIONS(2286), - [sym__concat] = ACTIONS(2761), - [anon_sym_PIPE] = ACTIONS(2288), - [anon_sym_RPAREN] = ACTIONS(2288), - [anon_sym_SEMI_SEMI] = ACTIONS(2288), - [anon_sym_PIPE_AMP] = ACTIONS(2288), - [anon_sym_AMP_AMP] = ACTIONS(2288), - [anon_sym_PIPE_PIPE] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(2288), - [anon_sym_GT_GT] = ACTIONS(2288), - [anon_sym_AMP_GT] = ACTIONS(2288), - [anon_sym_AMP_GT_GT] = ACTIONS(2288), - [anon_sym_LT_AMP] = ACTIONS(2288), - [anon_sym_GT_AMP] = ACTIONS(2288), - [anon_sym_LT_LT] = ACTIONS(2288), - [anon_sym_LT_LT_DASH] = ACTIONS(2288), - [anon_sym_LT_LT_LT] = ACTIONS(2288), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_LF] = ACTIONS(2288), - [anon_sym_AMP] = ACTIONS(2288), - }, - [798] = { - [sym_concatenation] = STATE(203), - [sym_string] = STATE(313), - [sym_simple_expansion] = STATE(313), - [sym_string_expansion] = STATE(313), - [sym_expansion] = STATE(313), - [sym_command_substitution] = STATE(313), - [sym_process_substitution] = STATE(313), - [aux_sym_for_statement_repeat1] = STATE(798), - [sym_file_descriptor] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_RPAREN] = ACTIONS(2292), - [anon_sym_SEMI_SEMI] = ACTIONS(2292), - [anon_sym_PIPE_AMP] = ACTIONS(2292), - [anon_sym_AMP_AMP] = ACTIONS(2292), - [anon_sym_PIPE_PIPE] = ACTIONS(2292), - [anon_sym_LT] = ACTIONS(2292), - [anon_sym_GT] = ACTIONS(2292), - [anon_sym_GT_GT] = ACTIONS(2292), - [anon_sym_AMP_GT] = ACTIONS(2292), - [anon_sym_AMP_GT_GT] = ACTIONS(2292), - [anon_sym_LT_AMP] = ACTIONS(2292), - [anon_sym_GT_AMP] = ACTIONS(2292), - [anon_sym_LT_LT] = ACTIONS(2292), - [anon_sym_LT_LT_DASH] = ACTIONS(2292), - [anon_sym_LT_LT_LT] = ACTIONS(2292), - [sym__special_characters] = ACTIONS(2781), - [anon_sym_DQUOTE] = ACTIONS(2784), - [anon_sym_DOLLAR] = ACTIONS(2787), - [sym_raw_string] = ACTIONS(2790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2793), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2796), - [anon_sym_BQUOTE] = ACTIONS(2799), - [anon_sym_LT_LPAREN] = ACTIONS(2802), - [anon_sym_GT_LPAREN] = ACTIONS(2802), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(2790), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_LF] = ACTIONS(2292), - [anon_sym_AMP] = ACTIONS(2292), - }, - [799] = { - [sym_file_redirect] = STATE(202), - [sym_heredoc_redirect] = STATE(202), - [sym_herestring_redirect] = STATE(202), - [aux_sym_while_statement_repeat1] = STATE(800), - [sym_file_descriptor] = ACTIONS(540), - [anon_sym_PIPE] = ACTIONS(2318), - [anon_sym_RPAREN] = ACTIONS(2318), - [anon_sym_SEMI_SEMI] = ACTIONS(2318), - [anon_sym_PIPE_AMP] = ACTIONS(2318), - [anon_sym_AMP_AMP] = ACTIONS(2318), - [anon_sym_PIPE_PIPE] = ACTIONS(2318), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_GT_GT] = ACTIONS(542), - [anon_sym_AMP_GT] = ACTIONS(542), - [anon_sym_AMP_GT_GT] = ACTIONS(542), - [anon_sym_LT_AMP] = ACTIONS(542), - [anon_sym_GT_AMP] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(348), - [anon_sym_LT_LT_DASH] = ACTIONS(348), - [anon_sym_LT_LT_LT] = ACTIONS(544), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2318), - [anon_sym_LF] = ACTIONS(2318), - [anon_sym_AMP] = ACTIONS(2318), - }, - [800] = { - [sym_file_redirect] = STATE(202), - [sym_heredoc_redirect] = STATE(202), - [sym_herestring_redirect] = STATE(202), - [aux_sym_while_statement_repeat1] = STATE(800), - [sym_file_descriptor] = ACTIONS(2805), - [anon_sym_PIPE] = ACTIONS(2323), - [anon_sym_RPAREN] = ACTIONS(2323), - [anon_sym_SEMI_SEMI] = ACTIONS(2323), - [anon_sym_PIPE_AMP] = ACTIONS(2323), - [anon_sym_AMP_AMP] = ACTIONS(2323), - [anon_sym_PIPE_PIPE] = ACTIONS(2323), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_GT] = ACTIONS(2808), - [anon_sym_GT_GT] = ACTIONS(2808), - [anon_sym_AMP_GT] = ACTIONS(2808), - [anon_sym_AMP_GT_GT] = ACTIONS(2808), - [anon_sym_LT_AMP] = ACTIONS(2808), - [anon_sym_GT_AMP] = ACTIONS(2808), - [anon_sym_LT_LT] = ACTIONS(2328), - [anon_sym_LT_LT_DASH] = ACTIONS(2328), - [anon_sym_LT_LT_LT] = ACTIONS(2811), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2323), - [anon_sym_LF] = ACTIONS(2323), - [anon_sym_AMP] = ACTIONS(2323), - }, - [801] = { - [sym_file_descriptor] = ACTIONS(1058), - [sym_variable_name] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(2814), - [anon_sym_function] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym_declare] = ACTIONS(1060), - [anon_sym_typeset] = ACTIONS(1060), - [anon_sym_export] = ACTIONS(1060), - [anon_sym_readonly] = ACTIONS(1060), - [anon_sym_local] = ACTIONS(1060), - [anon_sym_unset] = ACTIONS(1060), - [anon_sym_unsetenv] = ACTIONS(1060), - [anon_sym_LT] = ACTIONS(1060), - [anon_sym_GT] = ACTIONS(1060), - [anon_sym_GT_GT] = ACTIONS(1058), - [anon_sym_AMP_GT] = ACTIONS(1060), - [anon_sym_AMP_GT_GT] = ACTIONS(1058), - [anon_sym_LT_AMP] = ACTIONS(1058), - [anon_sym_GT_AMP] = ACTIONS(1058), - [sym__special_characters] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1058), - [anon_sym_DOLLAR] = ACTIONS(1060), - [sym_raw_string] = ACTIONS(1058), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1058), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1058), - [anon_sym_BQUOTE] = ACTIONS(1058), - [anon_sym_LT_LPAREN] = ACTIONS(1058), - [anon_sym_GT_LPAREN] = ACTIONS(1058), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1062), - }, - [802] = { - [sym_file_redirect] = STATE(202), - [sym_heredoc_redirect] = STATE(202), - [sym_herestring_redirect] = STATE(202), - [sym_concatenation] = STATE(203), - [sym_string] = STATE(313), - [sym_simple_expansion] = STATE(313), - [sym_string_expansion] = STATE(313), - [sym_expansion] = STATE(313), - [sym_command_substitution] = STATE(313), - [sym_process_substitution] = STATE(313), - [aux_sym_for_statement_repeat1] = STATE(798), - [aux_sym_while_statement_repeat1] = STATE(1387), - [sym_file_descriptor] = ACTIONS(540), - [anon_sym_PIPE] = ACTIONS(2318), - [anon_sym_RPAREN] = ACTIONS(2318), - [anon_sym_SEMI_SEMI] = ACTIONS(2318), - [anon_sym_PIPE_AMP] = ACTIONS(2318), - [anon_sym_AMP_AMP] = ACTIONS(2318), - [anon_sym_PIPE_PIPE] = ACTIONS(2318), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_GT_GT] = ACTIONS(542), - [anon_sym_AMP_GT] = ACTIONS(542), - [anon_sym_AMP_GT_GT] = ACTIONS(542), - [anon_sym_LT_AMP] = ACTIONS(542), - [anon_sym_GT_AMP] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(348), - [anon_sym_LT_LT_DASH] = ACTIONS(348), - [anon_sym_LT_LT_LT] = ACTIONS(544), - [sym__special_characters] = ACTIONS(546), - [anon_sym_DQUOTE] = ACTIONS(548), - [anon_sym_DOLLAR] = ACTIONS(550), - [sym_raw_string] = ACTIONS(552), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(554), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(556), - [anon_sym_BQUOTE] = ACTIONS(558), - [anon_sym_LT_LPAREN] = ACTIONS(560), - [anon_sym_GT_LPAREN] = ACTIONS(560), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(2318), - [anon_sym_LF] = ACTIONS(2318), - [anon_sym_AMP] = ACTIONS(2318), - }, - [803] = { - [sym__concat] = ACTIONS(1790), - [anon_sym_EQ_TILDE] = ACTIONS(2816), - [anon_sym_RBRACK] = ACTIONS(1790), - [sym__special_characters] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_LT_LPAREN] = ACTIONS(1790), - [anon_sym_GT_LPAREN] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1792), - }, - [804] = { - [aux_sym_concatenation_repeat1] = STATE(804), - [sym__concat] = ACTIONS(2818), - [anon_sym_EQ_TILDE] = ACTIONS(2816), - [anon_sym_RBRACK] = ACTIONS(1790), - [sym__special_characters] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_LT_LPAREN] = ACTIONS(1790), - [anon_sym_GT_LPAREN] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1792), - }, - [805] = { - [sym__concat] = ACTIONS(1821), - [anon_sym_EQ_TILDE] = ACTIONS(2821), - [anon_sym_RBRACK] = ACTIONS(1821), - [sym__special_characters] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1821), - [anon_sym_DOLLAR] = ACTIONS(2821), - [sym_raw_string] = ACTIONS(1821), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1821), - [anon_sym_BQUOTE] = ACTIONS(1821), - [anon_sym_LT_LPAREN] = ACTIONS(1821), - [anon_sym_GT_LPAREN] = ACTIONS(1821), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1823), - }, - [806] = { - [sym_concatenation] = STATE(1391), - [sym_string] = STATE(1390), - [sym_simple_expansion] = STATE(1390), - [sym_string_expansion] = STATE(1390), - [sym_expansion] = STATE(1390), - [sym_command_substitution] = STATE(1390), - [sym_process_substitution] = STATE(1390), - [anon_sym_RBRACE] = ACTIONS(2823), - [sym__special_characters] = ACTIONS(2825), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(2827), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2829), - }, - [807] = { - [sym__concat] = ACTIONS(1866), - [anon_sym_EQ_TILDE] = ACTIONS(2831), - [anon_sym_RBRACK] = ACTIONS(1866), - [sym__special_characters] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(2831), - [sym_raw_string] = ACTIONS(1866), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1866), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1866), - [anon_sym_BQUOTE] = ACTIONS(1866), - [anon_sym_LT_LPAREN] = ACTIONS(1866), - [anon_sym_GT_LPAREN] = ACTIONS(1866), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1868), - }, - [808] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(2833), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [809] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(2835), - [sym_comment] = ACTIONS(56), - }, - [810] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1395), - [anon_sym_RBRACE] = ACTIONS(2837), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [811] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1397), - [anon_sym_RBRACE] = ACTIONS(2839), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [812] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1398), - [anon_sym_RBRACE] = ACTIONS(2823), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [813] = { - [sym__concat] = ACTIONS(1910), - [anon_sym_EQ_TILDE] = ACTIONS(2841), - [anon_sym_RBRACK] = ACTIONS(1910), - [sym__special_characters] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1910), - [anon_sym_DOLLAR] = ACTIONS(2841), - [sym_raw_string] = ACTIONS(1910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1910), - [anon_sym_BQUOTE] = ACTIONS(1910), - [anon_sym_LT_LPAREN] = ACTIONS(1910), - [anon_sym_GT_LPAREN] = ACTIONS(1910), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1912), - }, - [814] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(2843), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [815] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_EQ_TILDE] = ACTIONS(2845), - [anon_sym_RBRACK] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(2845), - [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(56), - [sym_word] = ACTIONS(1918), - }, - [816] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(2823), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [817] = { - [sym__concat] = ACTIONS(2064), - [anon_sym_EQ_TILDE] = ACTIONS(2847), - [anon_sym_RBRACK] = ACTIONS(2064), - [sym__special_characters] = ACTIONS(2066), - [anon_sym_DQUOTE] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2847), - [sym_raw_string] = ACTIONS(2064), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2064), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2064), - [anon_sym_BQUOTE] = ACTIONS(2064), - [anon_sym_LT_LPAREN] = ACTIONS(2064), - [anon_sym_GT_LPAREN] = ACTIONS(2064), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2066), - }, - [818] = { - [sym__concat] = ACTIONS(2228), - [anon_sym_EQ_TILDE] = ACTIONS(2849), - [anon_sym_RBRACK] = ACTIONS(2228), - [sym__special_characters] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2228), - [anon_sym_DOLLAR] = ACTIONS(2849), - [sym_raw_string] = ACTIONS(2228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2228), - [anon_sym_BQUOTE] = ACTIONS(2228), - [anon_sym_LT_LPAREN] = ACTIONS(2228), - [anon_sym_GT_LPAREN] = ACTIONS(2228), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2230), - }, - [819] = { - [sym__concat] = ACTIONS(1790), - [anon_sym_EQ_TILDE] = ACTIONS(2816), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1790), - [sym__special_characters] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_LT_LPAREN] = ACTIONS(1790), - [anon_sym_GT_LPAREN] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1792), - }, - [820] = { - [aux_sym_concatenation_repeat1] = STATE(820), - [sym__concat] = ACTIONS(2851), - [anon_sym_EQ_TILDE] = ACTIONS(2816), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1790), - [sym__special_characters] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_LT_LPAREN] = ACTIONS(1790), - [anon_sym_GT_LPAREN] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1792), - }, - [821] = { - [sym__concat] = ACTIONS(1821), - [anon_sym_EQ_TILDE] = ACTIONS(2821), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1821), - [sym__special_characters] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1821), - [anon_sym_DOLLAR] = ACTIONS(2821), - [sym_raw_string] = ACTIONS(1821), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1821), - [anon_sym_BQUOTE] = ACTIONS(1821), - [anon_sym_LT_LPAREN] = ACTIONS(1821), - [anon_sym_GT_LPAREN] = ACTIONS(1821), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1823), - }, - [822] = { - [sym_concatenation] = STATE(1403), - [sym_string] = STATE(1402), - [sym_simple_expansion] = STATE(1402), - [sym_string_expansion] = STATE(1402), - [sym_expansion] = STATE(1402), - [sym_command_substitution] = STATE(1402), - [sym_process_substitution] = STATE(1402), - [anon_sym_RBRACE] = ACTIONS(2854), - [sym__special_characters] = ACTIONS(2856), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(2858), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2860), - }, - [823] = { - [sym__concat] = ACTIONS(1866), - [anon_sym_EQ_TILDE] = ACTIONS(2831), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1866), - [sym__special_characters] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(2831), - [sym_raw_string] = ACTIONS(1866), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1866), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1866), - [anon_sym_BQUOTE] = ACTIONS(1866), - [anon_sym_LT_LPAREN] = ACTIONS(1866), - [anon_sym_GT_LPAREN] = ACTIONS(1866), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1868), - }, - [824] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(2862), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [825] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(2864), - [sym_comment] = ACTIONS(56), - }, - [826] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1407), - [anon_sym_RBRACE] = ACTIONS(2866), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [827] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1409), - [anon_sym_RBRACE] = ACTIONS(2868), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [828] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1410), - [anon_sym_RBRACE] = ACTIONS(2854), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [829] = { - [sym__concat] = ACTIONS(1910), - [anon_sym_EQ_TILDE] = ACTIONS(2841), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1910), - [sym__special_characters] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1910), - [anon_sym_DOLLAR] = ACTIONS(2841), - [sym_raw_string] = ACTIONS(1910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1910), - [anon_sym_BQUOTE] = ACTIONS(1910), - [anon_sym_LT_LPAREN] = ACTIONS(1910), - [anon_sym_GT_LPAREN] = ACTIONS(1910), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1912), - }, - [830] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(2870), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [831] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_EQ_TILDE] = ACTIONS(2845), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(2845), - [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(56), - [sym_word] = ACTIONS(1918), - }, - [832] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(2854), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [833] = { - [sym__concat] = ACTIONS(2064), - [anon_sym_EQ_TILDE] = ACTIONS(2847), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2064), - [sym__special_characters] = ACTIONS(2066), - [anon_sym_DQUOTE] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2847), - [sym_raw_string] = ACTIONS(2064), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2064), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2064), - [anon_sym_BQUOTE] = ACTIONS(2064), - [anon_sym_LT_LPAREN] = ACTIONS(2064), - [anon_sym_GT_LPAREN] = ACTIONS(2064), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2066), - }, - [834] = { - [sym__concat] = ACTIONS(2228), - [anon_sym_EQ_TILDE] = ACTIONS(2849), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2228), - [sym__special_characters] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2228), - [anon_sym_DOLLAR] = ACTIONS(2849), - [sym_raw_string] = ACTIONS(2228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2228), - [anon_sym_BQUOTE] = ACTIONS(2228), - [anon_sym_LT_LPAREN] = ACTIONS(2228), - [anon_sym_GT_LPAREN] = ACTIONS(2228), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2230), - }, - [835] = { - [sym_variable_name] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1237), - [anon_sym_SEMI_SEMI] = ACTIONS(1237), - [anon_sym_PIPE_AMP] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [sym__special_characters] = ACTIONS(1237), - [anon_sym_DQUOTE] = ACTIONS(1237), - [anon_sym_DOLLAR] = ACTIONS(1237), - [sym_raw_string] = ACTIONS(1237), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1237), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1237), - [anon_sym_BQUOTE] = ACTIONS(1237), - [anon_sym_LT_LPAREN] = ACTIONS(1237), - [anon_sym_GT_LPAREN] = ACTIONS(1237), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1237), - [sym_word] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LF] = ACTIONS(1237), - [anon_sym_AMP] = ACTIONS(1237), - }, - [836] = { - [sym_concatenation] = STATE(642), - [sym_string] = STATE(637), - [sym_simple_expansion] = STATE(637), - [sym_string_expansion] = STATE(637), - [sym_expansion] = STATE(637), - [sym_command_substitution] = STATE(637), - [sym_process_substitution] = STATE(637), - [aux_sym_for_statement_repeat1] = STATE(1413), - [anon_sym_RPAREN] = ACTIONS(2872), - [sym__special_characters] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1245), - [sym_raw_string] = ACTIONS(1247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1249), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), - [anon_sym_BQUOTE] = ACTIONS(1253), - [anon_sym_LT_LPAREN] = ACTIONS(1255), - [anon_sym_GT_LPAREN] = ACTIONS(1255), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1257), - }, - [837] = { - [aux_sym_concatenation_repeat1] = STATE(368), - [sym__concat] = ACTIONS(662), - [sym_variable_name] = ACTIONS(1259), - [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), - [sym__special_characters] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [sym_raw_string] = ACTIONS(1263), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1263), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1263), - [anon_sym_BQUOTE] = ACTIONS(1263), - [anon_sym_LT_LPAREN] = ACTIONS(1263), - [anon_sym_GT_LPAREN] = ACTIONS(1263), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1263), - [sym_word] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1263), - }, - [838] = { - [aux_sym_concatenation_repeat1] = STATE(368), - [sym__concat] = ACTIONS(662), - [sym_variable_name] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1237), - [anon_sym_SEMI_SEMI] = ACTIONS(1237), - [anon_sym_PIPE_AMP] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [sym__special_characters] = ACTIONS(1237), - [anon_sym_DQUOTE] = ACTIONS(1237), - [anon_sym_DOLLAR] = ACTIONS(1237), - [sym_raw_string] = ACTIONS(1237), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1237), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1237), - [anon_sym_BQUOTE] = ACTIONS(1237), - [anon_sym_LT_LPAREN] = ACTIONS(1237), - [anon_sym_GT_LPAREN] = ACTIONS(1237), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1237), - [sym_word] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LF] = ACTIONS(1237), - [anon_sym_AMP] = ACTIONS(1237), - }, - [839] = { - [sym__concat] = ACTIONS(1790), - [sym_variable_name] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [anon_sym_PIPE_AMP] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [sym__special_characters] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1792), - [sym_raw_string] = ACTIONS(1792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1792), - [anon_sym_LT_LPAREN] = ACTIONS(1792), - [anon_sym_GT_LPAREN] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1792), - [sym_word] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - }, - [840] = { - [aux_sym_concatenation_repeat1] = STATE(840), - [sym__concat] = ACTIONS(2874), - [sym_variable_name] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [anon_sym_PIPE_AMP] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [sym__special_characters] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1792), - [sym_raw_string] = ACTIONS(1792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1792), - [anon_sym_LT_LPAREN] = ACTIONS(1792), - [anon_sym_GT_LPAREN] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1792), - [sym_word] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - }, - [841] = { - [sym__concat] = ACTIONS(1821), - [sym_variable_name] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [sym__special_characters] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1823), - [sym_raw_string] = ACTIONS(1823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), - [anon_sym_BQUOTE] = ACTIONS(1823), - [anon_sym_LT_LPAREN] = ACTIONS(1823), - [anon_sym_GT_LPAREN] = ACTIONS(1823), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1823), - [sym_word] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LF] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - }, - [842] = { - [sym_concatenation] = STATE(1417), - [sym_string] = STATE(1416), - [sym_simple_expansion] = STATE(1416), - [sym_string_expansion] = STATE(1416), - [sym_expansion] = STATE(1416), - [sym_command_substitution] = STATE(1416), - [sym_process_substitution] = STATE(1416), - [anon_sym_RBRACE] = ACTIONS(2877), - [sym__special_characters] = ACTIONS(2879), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(2881), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2883), - }, - [843] = { - [sym__concat] = ACTIONS(1866), - [sym_variable_name] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [anon_sym_PIPE_AMP] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [sym__special_characters] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1868), - [sym_raw_string] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), - [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(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1868), - [sym_word] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - }, - [844] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(2885), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [845] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(2887), - [sym_comment] = ACTIONS(56), - }, - [846] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1421), - [anon_sym_RBRACE] = ACTIONS(2889), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [847] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1423), - [anon_sym_RBRACE] = ACTIONS(2891), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [848] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1424), - [anon_sym_RBRACE] = ACTIONS(2877), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [849] = { - [sym__concat] = ACTIONS(1910), - [sym_variable_name] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_SEMI_SEMI] = ACTIONS(1912), - [anon_sym_PIPE_AMP] = ACTIONS(1912), - [anon_sym_AMP_AMP] = ACTIONS(1912), - [anon_sym_PIPE_PIPE] = ACTIONS(1912), - [sym__special_characters] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [anon_sym_DOLLAR] = ACTIONS(1912), - [sym_raw_string] = ACTIONS(1912), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1912), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1912), - [anon_sym_BQUOTE] = ACTIONS(1912), - [anon_sym_LT_LPAREN] = ACTIONS(1912), - [anon_sym_GT_LPAREN] = ACTIONS(1912), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1912), - [sym_word] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_LF] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1912), - }, - [850] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(2893), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [851] = { - [sym__concat] = ACTIONS(1916), - [sym_variable_name] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_SEMI_SEMI] = ACTIONS(1918), - [anon_sym_PIPE_AMP] = ACTIONS(1918), - [anon_sym_AMP_AMP] = ACTIONS(1918), - [anon_sym_PIPE_PIPE] = ACTIONS(1918), - [sym__special_characters] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1918), - [anon_sym_DOLLAR] = ACTIONS(1918), - [sym_raw_string] = ACTIONS(1918), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1918), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1918), - [anon_sym_BQUOTE] = ACTIONS(1918), - [anon_sym_LT_LPAREN] = ACTIONS(1918), - [anon_sym_GT_LPAREN] = ACTIONS(1918), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1918), - [sym_word] = ACTIONS(1918), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_LF] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), - }, - [852] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(2877), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [853] = { - [sym__concat] = ACTIONS(2064), - [sym_variable_name] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_SEMI_SEMI] = 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(2066), - [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(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2066), - [sym_word] = ACTIONS(2066), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_LF] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2066), - }, - [854] = { - [sym__concat] = ACTIONS(2228), - [sym_variable_name] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_SEMI_SEMI] = ACTIONS(2230), - [anon_sym_PIPE_AMP] = ACTIONS(2230), - [anon_sym_AMP_AMP] = ACTIONS(2230), - [anon_sym_PIPE_PIPE] = ACTIONS(2230), - [sym__special_characters] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2230), - [anon_sym_DOLLAR] = ACTIONS(2230), - [sym_raw_string] = ACTIONS(2230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2230), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2230), - [anon_sym_BQUOTE] = ACTIONS(2230), - [anon_sym_LT_LPAREN] = ACTIONS(2230), - [anon_sym_GT_LPAREN] = ACTIONS(2230), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2230), - [sym_word] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_LF] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - }, - [855] = { - [sym__concat] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [anon_sym_PIPE_AMP] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [sym__special_characters] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1792), - [sym_raw_string] = ACTIONS(1792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1792), - [anon_sym_LT_LPAREN] = ACTIONS(1792), - [anon_sym_GT_LPAREN] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1792), - [sym_word] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - }, - [856] = { - [aux_sym_concatenation_repeat1] = STATE(856), - [sym__concat] = ACTIONS(2895), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [anon_sym_PIPE_AMP] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [sym__special_characters] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1792), - [sym_raw_string] = ACTIONS(1792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1792), - [anon_sym_LT_LPAREN] = ACTIONS(1792), - [anon_sym_GT_LPAREN] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1792), - [sym_word] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - }, - [857] = { - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [sym__special_characters] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1823), - [sym_raw_string] = ACTIONS(1823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), - [anon_sym_BQUOTE] = ACTIONS(1823), - [anon_sym_LT_LPAREN] = ACTIONS(1823), - [anon_sym_GT_LPAREN] = ACTIONS(1823), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1823), - [sym_word] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LF] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - }, - [858] = { - [sym_concatenation] = STATE(1429), - [sym_string] = STATE(1428), - [sym_simple_expansion] = STATE(1428), - [sym_string_expansion] = STATE(1428), - [sym_expansion] = STATE(1428), - [sym_command_substitution] = STATE(1428), - [sym_process_substitution] = STATE(1428), - [anon_sym_RBRACE] = ACTIONS(2898), - [sym__special_characters] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(2902), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2904), - }, - [859] = { - [sym__concat] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [anon_sym_PIPE_AMP] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [sym__special_characters] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1868), - [sym_raw_string] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), - [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(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1868), - [sym_word] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - }, - [860] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(2906), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [861] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(2908), - [sym_comment] = ACTIONS(56), - }, - [862] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1433), - [anon_sym_RBRACE] = ACTIONS(2910), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [863] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1435), - [anon_sym_RBRACE] = ACTIONS(2912), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [864] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1436), - [anon_sym_RBRACE] = ACTIONS(2898), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [865] = { - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_SEMI_SEMI] = ACTIONS(1912), - [anon_sym_PIPE_AMP] = ACTIONS(1912), - [anon_sym_AMP_AMP] = ACTIONS(1912), - [anon_sym_PIPE_PIPE] = ACTIONS(1912), - [sym__special_characters] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [anon_sym_DOLLAR] = ACTIONS(1912), - [sym_raw_string] = ACTIONS(1912), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1912), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1912), - [anon_sym_BQUOTE] = ACTIONS(1912), - [anon_sym_LT_LPAREN] = ACTIONS(1912), - [anon_sym_GT_LPAREN] = ACTIONS(1912), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1912), - [sym_word] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_LF] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1912), - }, - [866] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(2914), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [867] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_SEMI_SEMI] = ACTIONS(1918), - [anon_sym_PIPE_AMP] = ACTIONS(1918), - [anon_sym_AMP_AMP] = ACTIONS(1918), - [anon_sym_PIPE_PIPE] = ACTIONS(1918), - [sym__special_characters] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1918), - [anon_sym_DOLLAR] = ACTIONS(1918), - [sym_raw_string] = ACTIONS(1918), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1918), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1918), - [anon_sym_BQUOTE] = ACTIONS(1918), - [anon_sym_LT_LPAREN] = ACTIONS(1918), - [anon_sym_GT_LPAREN] = ACTIONS(1918), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1918), - [sym_word] = ACTIONS(1918), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_LF] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), - }, - [868] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(2898), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [869] = { - [sym__concat] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_SEMI_SEMI] = 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(2066), - [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(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2066), - [sym_word] = ACTIONS(2066), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_LF] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2066), - }, - [870] = { - [sym__concat] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_SEMI_SEMI] = ACTIONS(2230), - [anon_sym_PIPE_AMP] = ACTIONS(2230), - [anon_sym_AMP_AMP] = ACTIONS(2230), - [anon_sym_PIPE_PIPE] = ACTIONS(2230), - [sym__special_characters] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2230), - [anon_sym_DOLLAR] = ACTIONS(2230), - [sym_raw_string] = ACTIONS(2230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2230), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2230), - [anon_sym_BQUOTE] = ACTIONS(2230), - [anon_sym_LT_LPAREN] = ACTIONS(2230), - [anon_sym_GT_LPAREN] = ACTIONS(2230), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2230), - [sym_word] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_LF] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - }, - [871] = { - [sym_file_descriptor] = ACTIONS(1790), - [sym__concat] = ACTIONS(1790), - [sym_variable_name] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(1790), - [anon_sym_AMP_GT] = ACTIONS(2816), - [anon_sym_AMP_GT_GT] = ACTIONS(1790), - [anon_sym_LT_AMP] = ACTIONS(1790), - [anon_sym_GT_AMP] = ACTIONS(1790), - [sym__special_characters] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_LT_LPAREN] = ACTIONS(1790), - [anon_sym_GT_LPAREN] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2816), - }, - [872] = { - [aux_sym_concatenation_repeat1] = STATE(872), - [sym_file_descriptor] = ACTIONS(1790), - [sym__concat] = ACTIONS(2916), - [sym_variable_name] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(1790), - [anon_sym_AMP_GT] = ACTIONS(2816), - [anon_sym_AMP_GT_GT] = ACTIONS(1790), - [anon_sym_LT_AMP] = ACTIONS(1790), - [anon_sym_GT_AMP] = ACTIONS(1790), - [sym__special_characters] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_LT_LPAREN] = ACTIONS(1790), - [anon_sym_GT_LPAREN] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2816), - }, - [873] = { - [sym_file_descriptor] = ACTIONS(1821), - [sym__concat] = ACTIONS(1821), - [sym_variable_name] = ACTIONS(1821), - [anon_sym_LT] = ACTIONS(2821), - [anon_sym_GT] = ACTIONS(2821), - [anon_sym_GT_GT] = ACTIONS(1821), - [anon_sym_AMP_GT] = ACTIONS(2821), - [anon_sym_AMP_GT_GT] = ACTIONS(1821), - [anon_sym_LT_AMP] = ACTIONS(1821), - [anon_sym_GT_AMP] = ACTIONS(1821), - [sym__special_characters] = ACTIONS(2821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [anon_sym_DOLLAR] = ACTIONS(2821), - [sym_raw_string] = ACTIONS(1821), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1821), - [anon_sym_BQUOTE] = ACTIONS(1821), - [anon_sym_LT_LPAREN] = ACTIONS(1821), - [anon_sym_GT_LPAREN] = ACTIONS(1821), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2821), - }, - [874] = { - [sym_concatenation] = STATE(1441), - [sym_string] = STATE(1440), - [sym_simple_expansion] = STATE(1440), - [sym_string_expansion] = STATE(1440), - [sym_expansion] = STATE(1440), - [sym_command_substitution] = STATE(1440), - [sym_process_substitution] = STATE(1440), - [anon_sym_RBRACE] = ACTIONS(2919), - [sym__special_characters] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(2923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2925), - }, - [875] = { - [sym_file_descriptor] = ACTIONS(1866), - [sym__concat] = ACTIONS(1866), - [sym_variable_name] = ACTIONS(1866), - [anon_sym_LT] = ACTIONS(2831), - [anon_sym_GT] = ACTIONS(2831), - [anon_sym_GT_GT] = ACTIONS(1866), - [anon_sym_AMP_GT] = ACTIONS(2831), - [anon_sym_AMP_GT_GT] = ACTIONS(1866), - [anon_sym_LT_AMP] = ACTIONS(1866), - [anon_sym_GT_AMP] = ACTIONS(1866), - [sym__special_characters] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(2831), - [sym_raw_string] = ACTIONS(1866), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1866), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1866), - [anon_sym_BQUOTE] = ACTIONS(1866), - [anon_sym_LT_LPAREN] = ACTIONS(1866), - [anon_sym_GT_LPAREN] = ACTIONS(1866), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2831), - }, - [876] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(2927), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [877] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(2929), - [sym_comment] = ACTIONS(56), - }, - [878] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1445), - [anon_sym_RBRACE] = ACTIONS(2931), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [879] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1447), - [anon_sym_RBRACE] = ACTIONS(2933), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [880] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1448), - [anon_sym_RBRACE] = ACTIONS(2919), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [881] = { - [sym_file_descriptor] = ACTIONS(1910), - [sym__concat] = ACTIONS(1910), - [sym_variable_name] = ACTIONS(1910), - [anon_sym_LT] = ACTIONS(2841), - [anon_sym_GT] = ACTIONS(2841), - [anon_sym_GT_GT] = ACTIONS(1910), - [anon_sym_AMP_GT] = ACTIONS(2841), - [anon_sym_AMP_GT_GT] = ACTIONS(1910), - [anon_sym_LT_AMP] = ACTIONS(1910), - [anon_sym_GT_AMP] = ACTIONS(1910), - [sym__special_characters] = ACTIONS(2841), - [anon_sym_DQUOTE] = ACTIONS(1910), - [anon_sym_DOLLAR] = ACTIONS(2841), - [sym_raw_string] = ACTIONS(1910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1910), - [anon_sym_BQUOTE] = ACTIONS(1910), - [anon_sym_LT_LPAREN] = ACTIONS(1910), - [anon_sym_GT_LPAREN] = ACTIONS(1910), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2841), - }, - [882] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(2935), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [883] = { - [sym_file_descriptor] = ACTIONS(1916), - [sym__concat] = ACTIONS(1916), - [sym_variable_name] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(2845), - [anon_sym_GT] = ACTIONS(2845), - [anon_sym_GT_GT] = ACTIONS(1916), - [anon_sym_AMP_GT] = ACTIONS(2845), - [anon_sym_AMP_GT_GT] = ACTIONS(1916), - [anon_sym_LT_AMP] = ACTIONS(1916), - [anon_sym_GT_AMP] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(2845), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(2845), - [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(56), - [sym_word] = ACTIONS(2845), - }, - [884] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(2919), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [885] = { - [sym_file_descriptor] = ACTIONS(2064), - [sym__concat] = ACTIONS(2064), - [sym_variable_name] = ACTIONS(2064), - [anon_sym_LT] = ACTIONS(2847), - [anon_sym_GT] = ACTIONS(2847), - [anon_sym_GT_GT] = ACTIONS(2064), - [anon_sym_AMP_GT] = ACTIONS(2847), - [anon_sym_AMP_GT_GT] = ACTIONS(2064), - [anon_sym_LT_AMP] = ACTIONS(2064), - [anon_sym_GT_AMP] = ACTIONS(2064), - [sym__special_characters] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2847), - [sym_raw_string] = ACTIONS(2064), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2064), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2064), - [anon_sym_BQUOTE] = ACTIONS(2064), - [anon_sym_LT_LPAREN] = ACTIONS(2064), - [anon_sym_GT_LPAREN] = ACTIONS(2064), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2847), - }, - [886] = { - [sym_file_descriptor] = ACTIONS(2228), - [sym__concat] = ACTIONS(2228), - [sym_variable_name] = ACTIONS(2228), - [anon_sym_LT] = ACTIONS(2849), - [anon_sym_GT] = ACTIONS(2849), - [anon_sym_GT_GT] = ACTIONS(2228), - [anon_sym_AMP_GT] = ACTIONS(2849), - [anon_sym_AMP_GT_GT] = ACTIONS(2228), - [anon_sym_LT_AMP] = ACTIONS(2228), - [anon_sym_GT_AMP] = ACTIONS(2228), - [sym__special_characters] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2228), - [anon_sym_DOLLAR] = ACTIONS(2849), - [sym_raw_string] = ACTIONS(2228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2228), - [anon_sym_BQUOTE] = ACTIONS(2228), - [anon_sym_LT_LPAREN] = ACTIONS(2228), - [anon_sym_GT_LPAREN] = ACTIONS(2228), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2849), - }, - [887] = { - [anon_sym_DQUOTE] = ACTIONS(2937), - [anon_sym_DOLLAR] = ACTIONS(2937), - [sym__string_content] = ACTIONS(2939), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2937), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2937), - [anon_sym_BQUOTE] = ACTIONS(2937), - [sym_comment] = ACTIONS(178), - }, - [888] = { - [sym_concatenation] = STATE(1453), - [sym_string] = STATE(1452), - [sym_simple_expansion] = STATE(1452), - [sym_string_expansion] = STATE(1452), - [sym_expansion] = STATE(1452), - [sym_command_substitution] = STATE(1452), - [sym_process_substitution] = STATE(1452), - [anon_sym_RBRACE] = ACTIONS(2941), - [sym__special_characters] = ACTIONS(2943), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(2945), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2947), - }, - [889] = { - [sym__concat] = ACTIONS(1866), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1868), - [sym__string_content] = ACTIONS(2831), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1868), - [anon_sym_BQUOTE] = ACTIONS(1868), - [sym_comment] = ACTIONS(178), - }, - [890] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(2949), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [891] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(2951), - [sym_comment] = ACTIONS(56), - }, - [892] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1457), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [893] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1459), - [anon_sym_RBRACE] = ACTIONS(2955), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [894] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1460), - [anon_sym_RBRACE] = ACTIONS(2941), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [895] = { - [sym__concat] = ACTIONS(1910), - [anon_sym_DQUOTE] = ACTIONS(1912), - [anon_sym_DOLLAR] = ACTIONS(1912), - [sym__string_content] = ACTIONS(2841), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1912), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1912), - [anon_sym_BQUOTE] = ACTIONS(1912), - [sym_comment] = ACTIONS(178), - }, - [896] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(2957), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [897] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_DQUOTE] = ACTIONS(1918), - [anon_sym_DOLLAR] = ACTIONS(1918), - [sym__string_content] = ACTIONS(2845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1918), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1918), - [anon_sym_BQUOTE] = ACTIONS(1918), - [sym_comment] = ACTIONS(178), - }, - [898] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(2941), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [899] = { - [sym__concat] = ACTIONS(2064), - [anon_sym_DQUOTE] = ACTIONS(2066), - [anon_sym_DOLLAR] = ACTIONS(2066), - [sym__string_content] = ACTIONS(2847), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2066), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2066), - [anon_sym_BQUOTE] = ACTIONS(2066), - [sym_comment] = ACTIONS(178), - }, - [900] = { - [aux_sym_concatenation_repeat1] = STATE(613), - [sym__concat] = ACTIONS(2959), - [anon_sym_RBRACK] = ACTIONS(2961), - [sym_comment] = ACTIONS(56), - }, - [901] = { - [aux_sym_concatenation_repeat1] = STATE(613), - [sym__concat] = ACTIONS(2963), - [anon_sym_RBRACK] = ACTIONS(2965), - [sym_comment] = ACTIONS(56), - }, - [902] = { - [sym__concat] = ACTIONS(2967), - [anon_sym_RBRACK] = ACTIONS(2965), - [sym_comment] = ACTIONS(56), - }, - [903] = { - [sym_file_descriptor] = ACTIONS(2969), - [sym__concat] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_SEMI_SEMI] = ACTIONS(2971), - [anon_sym_PIPE_AMP] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_PIPE_PIPE] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(2971), - [anon_sym_GT_GT] = ACTIONS(2971), - [anon_sym_AMP_GT] = ACTIONS(2971), - [anon_sym_AMP_GT_GT] = ACTIONS(2971), - [anon_sym_LT_AMP] = ACTIONS(2971), - [anon_sym_GT_AMP] = ACTIONS(2971), - [anon_sym_LT_LT] = ACTIONS(2971), - [anon_sym_LT_LT_DASH] = ACTIONS(2971), - [anon_sym_LT_LT_LT] = ACTIONS(2971), - [sym__special_characters] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2971), - [sym_raw_string] = ACTIONS(2971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2971), - [anon_sym_BQUOTE] = ACTIONS(2971), - [anon_sym_LT_LPAREN] = ACTIONS(2971), - [anon_sym_GT_LPAREN] = ACTIONS(2971), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - }, - [904] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(2975), - [sym_comment] = ACTIONS(56), - }, - [905] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(1471), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [906] = { - [sym_string] = STATE(1474), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(2979), - [anon_sym_POUND] = ACTIONS(2979), - [anon_sym_DASH] = ACTIONS(2979), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_AT] = ACTIONS(2979), - [anon_sym_QMARK] = ACTIONS(2979), - [anon_sym_0] = ACTIONS(2983), - [anon_sym__] = ACTIONS(2983), - }, - [907] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(2985), - [sym_comment] = ACTIONS(56), - }, - [908] = { - [sym_subscript] = STATE(1480), - [sym_variable_name] = ACTIONS(2987), - [anon_sym_DOLLAR] = ACTIONS(2989), - [anon_sym_POUND] = ACTIONS(2991), - [anon_sym_DASH] = ACTIONS(2989), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2989), - [anon_sym_AT] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(2989), - [anon_sym_0] = ACTIONS(2995), - [anon_sym__] = ACTIONS(2995), - }, - [909] = { - [sym_for_statement] = STATE(1481), - [sym_while_statement] = STATE(1481), - [sym_if_statement] = STATE(1481), - [sym_case_statement] = STATE(1481), - [sym_function_definition] = STATE(1481), - [sym_subshell] = STATE(1481), - [sym_pipeline] = STATE(1481), - [sym_list] = STATE(1481), - [sym_bracket_command] = STATE(1481), - [sym_command] = STATE(1481), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1482), - [sym_declaration_command] = STATE(1481), - [sym_unset_command] = STATE(1481), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [910] = { - [sym_for_statement] = STATE(1483), - [sym_while_statement] = STATE(1483), - [sym_if_statement] = STATE(1483), - [sym_case_statement] = STATE(1483), - [sym_function_definition] = STATE(1483), - [sym_subshell] = STATE(1483), - [sym_pipeline] = STATE(1483), - [sym_list] = STATE(1483), - [sym_bracket_command] = STATE(1483), - [sym_command] = STATE(1483), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(1484), - [sym_declaration_command] = STATE(1483), - [sym_unset_command] = STATE(1483), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), - }, - [911] = { - [sym_for_statement] = STATE(1485), - [sym_while_statement] = STATE(1485), - [sym_if_statement] = STATE(1485), - [sym_case_statement] = STATE(1485), - [sym_function_definition] = STATE(1485), - [sym_subshell] = STATE(1485), - [sym_pipeline] = STATE(1485), - [sym_list] = STATE(1485), - [sym_bracket_command] = STATE(1485), - [sym_command] = STATE(1485), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1486), - [sym_declaration_command] = STATE(1485), - [sym_unset_command] = STATE(1485), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [912] = { - [anon_sym_RBRACE] = ACTIONS(2985), - [sym_comment] = ACTIONS(56), - }, - [913] = { - [sym_string] = STATE(1487), - [sym_simple_expansion] = STATE(1487), - [sym_string_expansion] = STATE(1487), - [sym_expansion] = STATE(1487), - [sym_command_substitution] = STATE(1487), - [sym_process_substitution] = STATE(1487), - [sym__special_characters] = ACTIONS(2997), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(2999), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2997), - }, - [914] = { - [aux_sym_concatenation_repeat1] = STATE(1488), - [sym__concat] = ACTIONS(1876), - [anon_sym_RBRACE] = ACTIONS(760), - [anon_sym_EQ] = ACTIONS(1501), - [sym__special_characters] = ACTIONS(762), - [anon_sym_DQUOTE] = ACTIONS(760), - [anon_sym_DOLLAR] = ACTIONS(1501), - [sym_raw_string] = ACTIONS(760), - [anon_sym_POUND] = ACTIONS(760), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(760), - [anon_sym_COLON] = ACTIONS(1501), - [anon_sym_COLON_QMARK] = ACTIONS(1501), - [anon_sym_COLON_DASH] = ACTIONS(1501), - [anon_sym_PERCENT] = ACTIONS(1501), - [anon_sym_SLASH] = ACTIONS(1501), - [anon_sym_DASH] = ACTIONS(1501), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(760), - [anon_sym_BQUOTE] = ACTIONS(760), - [anon_sym_LT_LPAREN] = ACTIONS(760), - [anon_sym_GT_LPAREN] = ACTIONS(760), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(762), - }, - [915] = { - [sym__concat] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(764), - [anon_sym_EQ] = ACTIONS(1503), - [sym__special_characters] = ACTIONS(766), - [anon_sym_DQUOTE] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(1503), - [sym_raw_string] = ACTIONS(764), - [anon_sym_POUND] = ACTIONS(764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(764), - [anon_sym_COLON] = ACTIONS(1503), - [anon_sym_COLON_QMARK] = ACTIONS(1503), - [anon_sym_COLON_DASH] = ACTIONS(1503), - [anon_sym_PERCENT] = ACTIONS(1503), - [anon_sym_SLASH] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(764), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_LT_LPAREN] = ACTIONS(764), - [anon_sym_GT_LPAREN] = ACTIONS(764), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(766), - }, - [916] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(3001), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [917] = { - [sym__concat] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(796), - [anon_sym_EQ] = ACTIONS(1507), - [sym__special_characters] = ACTIONS(798), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(1507), - [sym_raw_string] = ACTIONS(796), - [anon_sym_POUND] = ACTIONS(796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [anon_sym_COLON] = ACTIONS(1507), - [anon_sym_COLON_QMARK] = ACTIONS(1507), - [anon_sym_COLON_DASH] = ACTIONS(1507), - [anon_sym_PERCENT] = ACTIONS(1507), - [anon_sym_SLASH] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [anon_sym_LT_LPAREN] = ACTIONS(796), - [anon_sym_GT_LPAREN] = ACTIONS(796), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(798), - }, - [918] = { - [sym__concat] = ACTIONS(800), - [anon_sym_RBRACE] = ACTIONS(800), - [anon_sym_EQ] = ACTIONS(1509), - [sym__special_characters] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR] = ACTIONS(1509), - [sym_raw_string] = ACTIONS(800), - [anon_sym_POUND] = ACTIONS(800), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(1509), - [anon_sym_COLON_QMARK] = ACTIONS(1509), - [anon_sym_COLON_DASH] = ACTIONS(1509), - [anon_sym_PERCENT] = ACTIONS(1509), - [anon_sym_SLASH] = ACTIONS(1509), - [anon_sym_DASH] = ACTIONS(1509), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(800), - [anon_sym_BQUOTE] = ACTIONS(800), - [anon_sym_LT_LPAREN] = ACTIONS(800), - [anon_sym_GT_LPAREN] = ACTIONS(800), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(802), - }, - [919] = { - [sym__concat] = ACTIONS(804), - [anon_sym_RBRACE] = ACTIONS(804), - [anon_sym_EQ] = ACTIONS(1511), - [sym__special_characters] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(804), - [anon_sym_DOLLAR] = ACTIONS(1511), - [sym_raw_string] = ACTIONS(804), - [anon_sym_POUND] = ACTIONS(804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(804), - [anon_sym_COLON] = ACTIONS(1511), - [anon_sym_COLON_QMARK] = ACTIONS(1511), - [anon_sym_COLON_DASH] = ACTIONS(1511), - [anon_sym_PERCENT] = ACTIONS(1511), - [anon_sym_SLASH] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(804), - [anon_sym_BQUOTE] = ACTIONS(804), - [anon_sym_LT_LPAREN] = ACTIONS(804), - [anon_sym_GT_LPAREN] = ACTIONS(804), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(806), - }, - [920] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(3003), - [sym_comment] = ACTIONS(56), - }, - [921] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1492), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [922] = { - [sym_subscript] = STATE(1496), - [sym_variable_name] = ACTIONS(3007), - [anon_sym_DOLLAR] = ACTIONS(3009), - [anon_sym_DASH] = ACTIONS(3009), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3011), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_AT] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3009), - [anon_sym_0] = ACTIONS(3013), - [anon_sym__] = ACTIONS(3013), - }, - [923] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1498), - [anon_sym_RBRACE] = ACTIONS(3015), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [924] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1500), - [anon_sym_RBRACE] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [925] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3019), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [926] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3019), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [927] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(3019), - [sym_comment] = ACTIONS(56), - }, - [928] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(3019), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [929] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3021), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [930] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3021), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [931] = { - [sym_file_descriptor] = ACTIONS(3023), - [sym__concat] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3025), - [anon_sym_SEMI_SEMI] = ACTIONS(3025), - [anon_sym_PIPE_AMP] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(3025), - [anon_sym_GT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_AMP_GT] = ACTIONS(3025), - [anon_sym_AMP_GT_GT] = ACTIONS(3025), - [anon_sym_LT_AMP] = ACTIONS(3025), - [anon_sym_GT_AMP] = ACTIONS(3025), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_LT_LT_DASH] = ACTIONS(3025), - [anon_sym_LT_LT_LT] = ACTIONS(3025), - [sym__special_characters] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_DOLLAR] = ACTIONS(3025), - [sym_raw_string] = ACTIONS(3025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3025), - [anon_sym_LT_LPAREN] = ACTIONS(3025), - [anon_sym_GT_LPAREN] = ACTIONS(3025), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3025), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_LF] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3025), - }, - [932] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(3027), - [anon_sym_EQ] = ACTIONS(3029), - [sym__special_characters] = ACTIONS(3032), - [anon_sym_DQUOTE] = ACTIONS(3035), - [anon_sym_DOLLAR] = ACTIONS(3038), - [sym_raw_string] = ACTIONS(3041), - [anon_sym_POUND] = ACTIONS(3044), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3047), - [anon_sym_COLON] = ACTIONS(3029), - [anon_sym_COLON_QMARK] = ACTIONS(3029), - [anon_sym_COLON_DASH] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_SLASH] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3050), - [anon_sym_BQUOTE] = ACTIONS(3053), - [anon_sym_LT_LPAREN] = ACTIONS(3056), - [anon_sym_GT_LPAREN] = ACTIONS(3056), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3059), - }, - [933] = { - [sym_concatenation] = STATE(1505), - [sym_string] = STATE(1504), - [sym_simple_expansion] = STATE(1504), - [sym_string_expansion] = STATE(1504), - [sym_expansion] = STATE(1504), - [sym_command_substitution] = STATE(1504), - [sym_process_substitution] = STATE(1504), - [anon_sym_RBRACE] = ACTIONS(2985), - [sym__special_characters] = ACTIONS(3062), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(3064), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3066), - }, - [934] = { - [sym_file_descriptor] = ACTIONS(3068), - [sym__concat] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_SEMI_SEMI] = ACTIONS(3070), - [anon_sym_PIPE_AMP] = ACTIONS(3070), - [anon_sym_AMP_AMP] = ACTIONS(3070), - [anon_sym_PIPE_PIPE] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_GT] = ACTIONS(3070), - [anon_sym_GT_GT] = ACTIONS(3070), - [anon_sym_AMP_GT] = ACTIONS(3070), - [anon_sym_AMP_GT_GT] = ACTIONS(3070), - [anon_sym_LT_AMP] = ACTIONS(3070), - [anon_sym_GT_AMP] = ACTIONS(3070), - [anon_sym_LT_LT] = ACTIONS(3070), - [anon_sym_LT_LT_DASH] = ACTIONS(3070), - [anon_sym_LT_LT_LT] = ACTIONS(3070), - [sym__special_characters] = ACTIONS(3070), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3070), - [sym_raw_string] = ACTIONS(3070), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3070), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3070), - [anon_sym_BQUOTE] = ACTIONS(3070), - [anon_sym_LT_LPAREN] = ACTIONS(3070), - [anon_sym_GT_LPAREN] = ACTIONS(3070), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3070), - [anon_sym_SEMI] = ACTIONS(3070), - [anon_sym_LF] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3070), - }, - [935] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [936] = { - [sym_file_descriptor] = ACTIONS(3074), - [sym__concat] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(3076), - [anon_sym_SEMI_SEMI] = ACTIONS(3076), - [anon_sym_PIPE_AMP] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3076), - [anon_sym_GT] = ACTIONS(3076), - [anon_sym_GT_GT] = ACTIONS(3076), - [anon_sym_AMP_GT] = ACTIONS(3076), - [anon_sym_AMP_GT_GT] = ACTIONS(3076), - [anon_sym_LT_AMP] = ACTIONS(3076), - [anon_sym_GT_AMP] = ACTIONS(3076), - [anon_sym_LT_LT] = ACTIONS(3076), - [anon_sym_LT_LT_DASH] = ACTIONS(3076), - [anon_sym_LT_LT_LT] = ACTIONS(3076), - [sym__special_characters] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR] = ACTIONS(3076), - [sym_raw_string] = ACTIONS(3076), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3076), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3076), - [anon_sym_BQUOTE] = ACTIONS(3076), - [anon_sym_LT_LPAREN] = ACTIONS(3076), - [anon_sym_GT_LPAREN] = ACTIONS(3076), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3076), - [anon_sym_SEMI] = ACTIONS(3076), - [anon_sym_LF] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3076), - }, - [937] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(3078), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [938] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(2985), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [939] = { - [sym_file_descriptor] = ACTIONS(3080), - [sym__concat] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(3082), - [anon_sym_SEMI_SEMI] = ACTIONS(3082), - [anon_sym_PIPE_AMP] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3082), - [anon_sym_GT_GT] = ACTIONS(3082), - [anon_sym_AMP_GT] = ACTIONS(3082), - [anon_sym_AMP_GT_GT] = ACTIONS(3082), - [anon_sym_LT_AMP] = ACTIONS(3082), - [anon_sym_GT_AMP] = ACTIONS(3082), - [anon_sym_LT_LT] = ACTIONS(3082), - [anon_sym_LT_LT_DASH] = ACTIONS(3082), - [anon_sym_LT_LT_LT] = ACTIONS(3082), - [sym__special_characters] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_DOLLAR] = ACTIONS(3082), - [sym_raw_string] = ACTIONS(3082), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3082), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3082), - [anon_sym_BQUOTE] = ACTIONS(3082), - [anon_sym_LT_LPAREN] = ACTIONS(3082), - [anon_sym_GT_LPAREN] = ACTIONS(3082), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3082), - [anon_sym_LF] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3082), - }, - [940] = { - [sym_file_descriptor] = ACTIONS(1235), - [sym_variable_name] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(3084), - [anon_sym_RPAREN] = ACTIONS(1235), - [anon_sym_PIPE_AMP] = ACTIONS(1235), - [anon_sym_AMP_AMP] = ACTIONS(1235), - [anon_sym_PIPE_PIPE] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(3084), - [anon_sym_GT] = ACTIONS(3084), - [anon_sym_GT_GT] = ACTIONS(1235), - [anon_sym_AMP_GT] = ACTIONS(3084), - [anon_sym_AMP_GT_GT] = ACTIONS(1235), - [anon_sym_LT_AMP] = ACTIONS(1235), - [anon_sym_GT_AMP] = ACTIONS(1235), - [sym__special_characters] = ACTIONS(3084), - [anon_sym_DQUOTE] = ACTIONS(1235), - [anon_sym_DOLLAR] = ACTIONS(3084), - [sym_raw_string] = ACTIONS(1235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), - [anon_sym_BQUOTE] = ACTIONS(1235), - [anon_sym_LT_LPAREN] = ACTIONS(1235), - [anon_sym_GT_LPAREN] = ACTIONS(1235), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3084), - }, - [941] = { - [sym_concatenation] = STATE(642), - [sym_string] = STATE(637), - [sym_simple_expansion] = STATE(637), - [sym_string_expansion] = STATE(637), - [sym_expansion] = STATE(637), - [sym_command_substitution] = STATE(637), - [sym_process_substitution] = STATE(637), - [aux_sym_for_statement_repeat1] = STATE(1509), - [anon_sym_RPAREN] = ACTIONS(3086), - [sym__special_characters] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1245), - [sym_raw_string] = ACTIONS(1247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1249), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), - [anon_sym_BQUOTE] = ACTIONS(1253), - [anon_sym_LT_LPAREN] = ACTIONS(1255), - [anon_sym_GT_LPAREN] = ACTIONS(1255), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1257), - }, - [942] = { - [aux_sym_concatenation_repeat1] = STATE(1511), - [sym_file_descriptor] = ACTIONS(1259), - [sym__concat] = ACTIONS(3088), - [sym_variable_name] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_RPAREN] = ACTIONS(1259), - [anon_sym_PIPE_AMP] = ACTIONS(1259), - [anon_sym_AMP_AMP] = ACTIONS(1259), - [anon_sym_PIPE_PIPE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(3090), - [anon_sym_GT] = ACTIONS(3090), - [anon_sym_GT_GT] = ACTIONS(1259), - [anon_sym_AMP_GT] = ACTIONS(3090), - [anon_sym_AMP_GT_GT] = ACTIONS(1259), - [anon_sym_LT_AMP] = ACTIONS(1259), - [anon_sym_GT_AMP] = ACTIONS(1259), - [sym__special_characters] = ACTIONS(3090), - [anon_sym_DQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(3090), - [sym_raw_string] = ACTIONS(1259), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1259), - [anon_sym_BQUOTE] = ACTIONS(1259), - [anon_sym_LT_LPAREN] = ACTIONS(1259), - [anon_sym_GT_LPAREN] = ACTIONS(1259), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3090), - }, - [943] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(1513), - [anon_sym_DQUOTE] = ACTIONS(3092), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [944] = { - [sym_string] = STATE(1516), - [anon_sym_DQUOTE] = ACTIONS(1926), - [anon_sym_DOLLAR] = ACTIONS(3094), - [anon_sym_POUND] = ACTIONS(3094), - [anon_sym_DASH] = ACTIONS(3094), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3096), - [anon_sym_STAR] = ACTIONS(3094), - [anon_sym_AT] = ACTIONS(3094), - [anon_sym_QMARK] = ACTIONS(3094), - [anon_sym_0] = ACTIONS(3098), - [anon_sym__] = ACTIONS(3098), - }, - [945] = { - [aux_sym_concatenation_repeat1] = STATE(1511), - [sym_file_descriptor] = ACTIONS(1235), - [sym__concat] = ACTIONS(3088), - [sym_variable_name] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(3084), - [anon_sym_RPAREN] = ACTIONS(1235), - [anon_sym_PIPE_AMP] = ACTIONS(1235), - [anon_sym_AMP_AMP] = ACTIONS(1235), - [anon_sym_PIPE_PIPE] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(3084), - [anon_sym_GT] = ACTIONS(3084), - [anon_sym_GT_GT] = ACTIONS(1235), - [anon_sym_AMP_GT] = ACTIONS(3084), - [anon_sym_AMP_GT_GT] = ACTIONS(1235), - [anon_sym_LT_AMP] = ACTIONS(1235), - [anon_sym_GT_AMP] = ACTIONS(1235), - [sym__special_characters] = ACTIONS(3084), - [anon_sym_DQUOTE] = ACTIONS(1235), - [anon_sym_DOLLAR] = ACTIONS(3084), - [sym_raw_string] = ACTIONS(1235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), - [anon_sym_BQUOTE] = ACTIONS(1235), - [anon_sym_LT_LPAREN] = ACTIONS(1235), - [anon_sym_GT_LPAREN] = ACTIONS(1235), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3084), - }, - [946] = { - [sym_subscript] = STATE(1521), - [sym_variable_name] = ACTIONS(3100), - [anon_sym_DOLLAR] = ACTIONS(3102), - [anon_sym_POUND] = ACTIONS(3104), - [anon_sym_DASH] = ACTIONS(3102), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3106), - [anon_sym_STAR] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3102), - [anon_sym_QMARK] = ACTIONS(3102), - [anon_sym_0] = ACTIONS(3108), - [anon_sym__] = ACTIONS(3108), - }, - [947] = { - [sym_for_statement] = STATE(1522), - [sym_while_statement] = STATE(1522), - [sym_if_statement] = STATE(1522), - [sym_case_statement] = STATE(1522), - [sym_function_definition] = STATE(1522), - [sym_subshell] = STATE(1522), - [sym_pipeline] = STATE(1522), - [sym_list] = STATE(1522), - [sym_bracket_command] = STATE(1522), - [sym_command] = STATE(1522), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1523), - [sym_declaration_command] = STATE(1522), - [sym_unset_command] = STATE(1522), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [948] = { - [sym_for_statement] = STATE(1524), - [sym_while_statement] = STATE(1524), - [sym_if_statement] = STATE(1524), - [sym_case_statement] = STATE(1524), - [sym_function_definition] = STATE(1524), - [sym_subshell] = STATE(1524), - [sym_pipeline] = STATE(1524), - [sym_list] = STATE(1524), - [sym_bracket_command] = STATE(1524), - [sym_command] = STATE(1524), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(1525), - [sym_declaration_command] = STATE(1524), - [sym_unset_command] = STATE(1524), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), - }, - [949] = { - [sym_for_statement] = STATE(1526), - [sym_while_statement] = STATE(1526), - [sym_if_statement] = STATE(1526), - [sym_case_statement] = STATE(1526), - [sym_function_definition] = STATE(1526), - [sym_subshell] = STATE(1526), - [sym_pipeline] = STATE(1526), - [sym_list] = STATE(1526), - [sym_bracket_command] = STATE(1526), - [sym_command] = STATE(1526), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1527), - [sym_declaration_command] = STATE(1526), - [sym_unset_command] = STATE(1526), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [950] = { - [sym_concatenation] = STATE(670), - [sym_string] = STATE(665), - [sym_simple_expansion] = STATE(665), - [sym_string_expansion] = STATE(665), - [sym_expansion] = STATE(665), - [sym_command_substitution] = STATE(665), - [sym_process_substitution] = STATE(665), - [aux_sym_for_statement_repeat1] = STATE(1528), + [sym__special_characters] = ACTIONS(2722), + [anon_sym_DQUOTE] = ACTIONS(2724), + [anon_sym_DOLLAR] = ACTIONS(2726), + [sym_raw_string] = ACTIONS(2728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2732), + [anon_sym_BQUOTE] = ACTIONS(2734), + [anon_sym_LT_LPAREN] = ACTIONS(2736), + [anon_sym_GT_LPAREN] = ACTIONS(2736), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2738), + }, + [737] = { + [anon_sym_PIPE] = ACTIONS(2740), + [anon_sym_RPAREN] = ACTIONS(2740), + [anon_sym_SEMI_SEMI] = ACTIONS(2740), + [anon_sym_PIPE_AMP] = ACTIONS(2740), + [anon_sym_AMP_AMP] = ACTIONS(2740), + [anon_sym_PIPE_PIPE] = ACTIONS(2740), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2740), + [anon_sym_LF] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(2740), + }, + [738] = { + [aux_sym_concatenation_repeat1] = STATE(1374), + [sym_file_descriptor] = ACTIONS(1279), + [sym__concat] = ACTIONS(2742), + [sym_variable_name] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_RPAREN] = ACTIONS(1283), + [anon_sym_SEMI_SEMI] = ACTIONS(1283), + [anon_sym_PIPE_AMP] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1283), + [anon_sym_PIPE_PIPE] = ACTIONS(1283), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_GT_GT] = ACTIONS(1283), + [anon_sym_AMP_GT] = ACTIONS(1283), + [anon_sym_AMP_GT_GT] = ACTIONS(1283), + [anon_sym_LT_AMP] = ACTIONS(1283), + [anon_sym_GT_AMP] = ACTIONS(1283), [sym__special_characters] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1287), - [sym_raw_string] = ACTIONS(1289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LT_LPAREN] = ACTIONS(1297), - [anon_sym_GT_LPAREN] = ACTIONS(1297), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1299), + [anon_sym_DQUOTE] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1283), + [sym_raw_string] = ACTIONS(1283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1283), + [anon_sym_BQUOTE] = ACTIONS(1283), + [anon_sym_LT_LPAREN] = ACTIONS(1283), + [anon_sym_GT_LPAREN] = ACTIONS(1283), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1283), + [anon_sym_LF] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), }, - [951] = { - [sym__terminated_statement] = STATE(673), - [sym_for_statement] = STATE(674), - [sym_while_statement] = STATE(674), - [sym_if_statement] = STATE(674), - [sym_case_statement] = STATE(674), - [sym_function_definition] = STATE(674), - [sym_subshell] = STATE(674), - [sym_pipeline] = STATE(674), - [sym_list] = STATE(674), - [sym_bracket_command] = STATE(674), - [sym_command] = STATE(674), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(675), - [sym_declaration_command] = STATE(674), - [sym_unset_command] = STATE(674), - [sym_subscript] = STATE(29), + [739] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(1376), + [anon_sym_DQUOTE] = ACTIONS(2744), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [740] = { + [sym_string] = STATE(1379), + [anon_sym_DQUOTE] = ACTIONS(1383), + [anon_sym_DOLLAR] = ACTIONS(2746), + [anon_sym_POUND] = ACTIONS(2746), + [anon_sym_DASH] = ACTIONS(2746), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2748), + [anon_sym_STAR] = ACTIONS(2746), + [anon_sym_AT] = ACTIONS(2746), + [anon_sym_QMARK] = ACTIONS(2746), + [anon_sym_0] = ACTIONS(2750), + [anon_sym__] = ACTIONS(2750), + }, + [741] = { + [aux_sym_concatenation_repeat1] = STATE(1374), + [sym_file_descriptor] = ACTIONS(1255), + [sym__concat] = ACTIONS(2742), + [sym_variable_name] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_RPAREN] = ACTIONS(1257), + [anon_sym_SEMI_SEMI] = ACTIONS(1257), + [anon_sym_PIPE_AMP] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_LT] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1257), + [anon_sym_GT_GT] = ACTIONS(1257), + [anon_sym_AMP_GT] = ACTIONS(1257), + [anon_sym_AMP_GT_GT] = ACTIONS(1257), + [anon_sym_LT_AMP] = ACTIONS(1257), + [anon_sym_GT_AMP] = ACTIONS(1257), + [sym__special_characters] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [anon_sym_DOLLAR] = ACTIONS(1257), + [sym_raw_string] = ACTIONS(1257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1257), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1257), + [anon_sym_BQUOTE] = ACTIONS(1257), + [anon_sym_LT_LPAREN] = ACTIONS(1257), + [anon_sym_GT_LPAREN] = ACTIONS(1257), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_LF] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + }, + [742] = { + [sym_subscript] = STATE(1384), + [sym_variable_name] = ACTIONS(2752), + [anon_sym_DOLLAR] = ACTIONS(2754), + [anon_sym_POUND] = ACTIONS(2756), + [anon_sym_DASH] = ACTIONS(2754), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2758), + [anon_sym_STAR] = ACTIONS(2754), + [anon_sym_AT] = ACTIONS(2754), + [anon_sym_QMARK] = ACTIONS(2754), + [anon_sym_0] = ACTIONS(2760), + [anon_sym__] = ACTIONS(2760), + }, + [743] = { + [sym_for_statement] = STATE(1385), + [sym_while_statement] = STATE(1385), + [sym_if_statement] = STATE(1385), + [sym_case_statement] = STATE(1385), + [sym_function_definition] = STATE(1385), + [sym_subshell] = STATE(1385), + [sym_pipeline] = STATE(1385), + [sym_list] = STATE(1385), + [sym_command] = STATE(1385), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1385), + [sym_variable_assignment] = STATE(1386), + [sym_declaration_command] = STATE(1385), + [sym_unset_command] = STATE(1385), + [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1530), - [aux_sym_command_repeat1] = STATE(33), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(3110), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -33208,91 +29377,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [sym_word] = ACTIONS(300), }, - [952] = { - [sym_file_redirect] = STATE(527), - [sym_heredoc_redirect] = STATE(527), - [sym_herestring_redirect] = STATE(527), - [aux_sym_while_statement_repeat1] = STATE(1531), - [sym_file_descriptor] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(3112), - [anon_sym_RPAREN] = ACTIONS(3114), - [anon_sym_PIPE_AMP] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_PIPE_PIPE] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_GT_GT] = ACTIONS(952), - [anon_sym_AMP_GT] = ACTIONS(950), - [anon_sym_AMP_GT_GT] = ACTIONS(952), - [anon_sym_LT_AMP] = ACTIONS(952), - [anon_sym_GT_AMP] = ACTIONS(952), - [anon_sym_LT_LT] = ACTIONS(954), - [anon_sym_LT_LT_DASH] = ACTIONS(956), - [anon_sym_LT_LT_LT] = ACTIONS(958), - [sym_comment] = ACTIONS(56), - }, - [953] = { - [sym__terminated_statement] = STATE(681), - [sym_for_statement] = STATE(682), - [sym_while_statement] = STATE(682), - [sym_if_statement] = STATE(682), - [sym_elif_clause] = STATE(683), - [sym_else_clause] = STATE(1533), - [sym_case_statement] = STATE(682), - [sym_function_definition] = STATE(682), - [sym_subshell] = STATE(682), - [sym_pipeline] = STATE(682), - [sym_list] = STATE(682), - [sym_bracket_command] = STATE(682), - [sym_command] = STATE(682), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(685), - [sym_declaration_command] = STATE(682), - [sym_unset_command] = STATE(682), - [sym_subscript] = STATE(29), + [744] = { + [sym_for_statement] = STATE(1387), + [sym_while_statement] = STATE(1387), + [sym_if_statement] = STATE(1387), + [sym_case_statement] = STATE(1387), + [sym_function_definition] = STATE(1387), + [sym_subshell] = STATE(1387), + [sym_pipeline] = STATE(1387), + [sym_list] = STATE(1387), + [sym_command] = STATE(1387), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(1387), + [sym_variable_assignment] = STATE(1388), + [sym_declaration_command] = STATE(1387), + [sym_unset_command] = STATE(1387), + [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1534), - [aux_sym_if_statement_repeat1] = STATE(1535), - [aux_sym_command_repeat1] = STATE(33), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(3116), - [anon_sym_elif] = ACTIONS(1307), - [anon_sym_else] = ACTIONS(1309), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -33300,6450 +29438,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [954] = { - [anon_sym_SEMI_SEMI] = ACTIONS(3118), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_LF] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3118), - }, - [955] = { - [anon_sym_in] = ACTIONS(3120), - [sym_comment] = ACTIONS(56), - }, - [956] = { - [anon_sym_SEMI_SEMI] = ACTIONS(3122), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_LF] = ACTIONS(3122), - [anon_sym_AMP] = ACTIONS(3122), - }, - [957] = { - [anon_sym_in] = ACTIONS(3124), - [sym_comment] = ACTIONS(56), - }, - [958] = { - [anon_sym_RPAREN] = ACTIONS(3126), - [sym_comment] = ACTIONS(56), - }, - [959] = { - [sym__terminated_statement] = STATE(710), - [sym_for_statement] = STATE(711), - [sym_while_statement] = STATE(711), - [sym_if_statement] = STATE(711), - [sym_case_statement] = STATE(711), - [sym_function_definition] = STATE(711), - [sym_subshell] = STATE(711), - [sym_pipeline] = STATE(711), - [sym_list] = STATE(711), - [sym_bracket_command] = STATE(711), - [sym_command] = STATE(711), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(712), - [sym_declaration_command] = STATE(711), - [sym_unset_command] = STATE(711), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1542), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_RBRACE] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [960] = { - [sym_file_redirect] = STATE(1545), - [sym_file_descriptor] = ACTIONS(3130), - [anon_sym_PIPE] = ACTIONS(3132), - [anon_sym_RPAREN] = ACTIONS(3134), - [anon_sym_PIPE_AMP] = ACTIONS(3134), - [anon_sym_AMP_AMP] = ACTIONS(3134), - [anon_sym_PIPE_PIPE] = ACTIONS(3134), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_GT_GT] = ACTIONS(3138), - [anon_sym_AMP_GT] = ACTIONS(3136), - [anon_sym_AMP_GT_GT] = ACTIONS(3138), - [anon_sym_LT_AMP] = ACTIONS(3138), - [anon_sym_GT_AMP] = ACTIONS(3138), - [sym_comment] = ACTIONS(56), - }, - [961] = { - [anon_sym_PIPE] = ACTIONS(3140), - [anon_sym_RPAREN] = ACTIONS(3142), - [anon_sym_PIPE_AMP] = ACTIONS(3142), - [anon_sym_AMP_AMP] = ACTIONS(3142), - [anon_sym_PIPE_PIPE] = ACTIONS(3142), - [anon_sym_BQUOTE] = ACTIONS(3142), - [sym_comment] = ACTIONS(56), - }, - [962] = { - [sym_file_descriptor] = ACTIONS(1058), - [sym_variable_name] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(3144), - [anon_sym_function] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym_declare] = ACTIONS(1060), - [anon_sym_typeset] = ACTIONS(1060), - [anon_sym_export] = ACTIONS(1060), - [anon_sym_readonly] = ACTIONS(1060), - [anon_sym_local] = ACTIONS(1060), - [anon_sym_unset] = ACTIONS(1060), - [anon_sym_unsetenv] = ACTIONS(1060), - [anon_sym_LT] = ACTIONS(1060), - [anon_sym_GT] = ACTIONS(1060), - [anon_sym_GT_GT] = ACTIONS(1058), - [anon_sym_AMP_GT] = ACTIONS(1060), - [anon_sym_AMP_GT_GT] = ACTIONS(1058), - [anon_sym_LT_AMP] = ACTIONS(1058), - [anon_sym_GT_AMP] = ACTIONS(1058), - [sym__special_characters] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1058), - [anon_sym_DOLLAR] = ACTIONS(1060), - [sym_raw_string] = ACTIONS(1058), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1058), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1058), - [anon_sym_BQUOTE] = ACTIONS(1058), - [anon_sym_LT_LPAREN] = ACTIONS(1058), - [anon_sym_GT_LPAREN] = ACTIONS(1058), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1062), - }, - [963] = { - [anon_sym_PIPE] = ACTIONS(532), - [anon_sym_RPAREN] = ACTIONS(3146), - [anon_sym_SEMI_SEMI] = ACTIONS(3148), - [anon_sym_PIPE_AMP] = ACTIONS(532), - [anon_sym_AMP_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(538), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3148), - [anon_sym_LF] = ACTIONS(3148), - [anon_sym_AMP] = ACTIONS(3148), - }, - [964] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(532), - [anon_sym_RPAREN] = ACTIONS(3146), - [anon_sym_SEMI_SEMI] = ACTIONS(3148), - [anon_sym_PIPE_AMP] = ACTIONS(532), - [anon_sym_AMP_AMP] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_AMP_GT] = ACTIONS(370), - [anon_sym_AMP_GT_GT] = ACTIONS(370), - [anon_sym_LT_AMP] = ACTIONS(370), - [anon_sym_GT_AMP] = ACTIONS(370), - [sym__special_characters] = ACTIONS(370), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_DOLLAR] = ACTIONS(370), - [sym_raw_string] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(370), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(370), - [anon_sym_BQUOTE] = ACTIONS(370), - [anon_sym_LT_LPAREN] = ACTIONS(370), - [anon_sym_GT_LPAREN] = ACTIONS(370), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(370), - [anon_sym_SEMI] = ACTIONS(3148), - [anon_sym_LF] = ACTIONS(3148), - [anon_sym_AMP] = ACTIONS(3148), - }, - [965] = { - [anon_sym_PIPE] = ACTIONS(3150), - [anon_sym_RPAREN] = ACTIONS(3152), - [anon_sym_PIPE_AMP] = ACTIONS(3152), - [anon_sym_AMP_AMP] = ACTIONS(3152), - [anon_sym_PIPE_PIPE] = ACTIONS(3152), - [anon_sym_BQUOTE] = ACTIONS(3152), - [sym_comment] = ACTIONS(56), - }, - [966] = { - [sym_concatenation] = STATE(1548), - [sym_string] = STATE(1551), - [sym_array] = STATE(1548), - [sym_simple_expansion] = STATE(1551), - [sym_string_expansion] = STATE(1551), - [sym_expansion] = STATE(1551), - [sym_command_substitution] = STATE(1551), - [sym_process_substitution] = STATE(1551), - [sym__empty_value] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3156), - [sym__special_characters] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(868), - [anon_sym_DOLLAR] = ACTIONS(870), - [sym_raw_string] = ACTIONS(3160), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(878), - [anon_sym_LT_LPAREN] = ACTIONS(880), - [anon_sym_GT_LPAREN] = ACTIONS(880), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3162), - }, - [967] = { - [sym_variable_name] = ACTIONS(428), - [anon_sym_PIPE] = ACTIONS(1942), - [anon_sym_RPAREN] = ACTIONS(428), - [anon_sym_PIPE_AMP] = ACTIONS(428), - [anon_sym_AMP_AMP] = ACTIONS(428), - [anon_sym_PIPE_PIPE] = ACTIONS(428), - [sym__special_characters] = ACTIONS(1942), - [anon_sym_DQUOTE] = ACTIONS(428), - [anon_sym_DOLLAR] = ACTIONS(1942), - [sym_raw_string] = ACTIONS(428), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(428), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(428), - [anon_sym_BQUOTE] = ACTIONS(428), - [anon_sym_LT_LPAREN] = ACTIONS(428), - [anon_sym_GT_LPAREN] = ACTIONS(428), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1942), - [sym_word] = ACTIONS(430), - }, - [968] = { - [sym_string] = STATE(1552), - [sym_simple_expansion] = STATE(1552), - [sym_string_expansion] = STATE(1552), - [sym_expansion] = STATE(1552), - [sym_command_substitution] = STATE(1552), - [sym_process_substitution] = STATE(1552), - [sym__special_characters] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(868), - [anon_sym_DOLLAR] = ACTIONS(870), - [sym_raw_string] = ACTIONS(3166), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(876), - [anon_sym_BQUOTE] = ACTIONS(878), - [anon_sym_LT_LPAREN] = ACTIONS(880), - [anon_sym_GT_LPAREN] = ACTIONS(880), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3164), - }, - [969] = { - [aux_sym_concatenation_repeat1] = STATE(1553), - [sym__concat] = ACTIONS(1970), - [sym_variable_name] = ACTIONS(760), - [anon_sym_PIPE] = ACTIONS(1501), - [anon_sym_RPAREN] = ACTIONS(760), - [anon_sym_PIPE_AMP] = ACTIONS(760), - [anon_sym_AMP_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(760), - [sym__special_characters] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(760), - [anon_sym_DOLLAR] = ACTIONS(1501), - [sym_raw_string] = ACTIONS(760), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(760), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(760), - [anon_sym_BQUOTE] = ACTIONS(760), - [anon_sym_LT_LPAREN] = ACTIONS(760), - [anon_sym_GT_LPAREN] = ACTIONS(760), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1501), - [sym_word] = ACTIONS(762), - }, - [970] = { - [sym__concat] = ACTIONS(764), - [sym_variable_name] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_PIPE_AMP] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(764), - [sym__special_characters] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(1503), - [sym_raw_string] = ACTIONS(764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(764), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(764), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_LT_LPAREN] = ACTIONS(764), - [anon_sym_GT_LPAREN] = ACTIONS(764), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1503), - [sym_word] = ACTIONS(766), - }, - [971] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(3168), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [972] = { - [sym__concat] = ACTIONS(796), - [sym_variable_name] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_RPAREN] = ACTIONS(796), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [sym__special_characters] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(1507), - [sym_raw_string] = ACTIONS(796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [anon_sym_LT_LPAREN] = ACTIONS(796), - [anon_sym_GT_LPAREN] = ACTIONS(796), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1507), - [sym_word] = ACTIONS(798), - }, - [973] = { - [sym__concat] = ACTIONS(800), - [sym_variable_name] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_RPAREN] = ACTIONS(800), - [anon_sym_PIPE_AMP] = ACTIONS(800), - [anon_sym_AMP_AMP] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(800), - [sym__special_characters] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR] = ACTIONS(1509), - [sym_raw_string] = ACTIONS(800), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(800), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(800), - [anon_sym_BQUOTE] = ACTIONS(800), - [anon_sym_LT_LPAREN] = ACTIONS(800), - [anon_sym_GT_LPAREN] = ACTIONS(800), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1509), - [sym_word] = ACTIONS(802), - }, - [974] = { - [sym__concat] = ACTIONS(804), - [sym_variable_name] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_RPAREN] = ACTIONS(804), - [anon_sym_PIPE_AMP] = ACTIONS(804), - [anon_sym_AMP_AMP] = ACTIONS(804), - [anon_sym_PIPE_PIPE] = ACTIONS(804), - [sym__special_characters] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(804), - [anon_sym_DOLLAR] = ACTIONS(1511), - [sym_raw_string] = ACTIONS(804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(804), - [anon_sym_BQUOTE] = ACTIONS(804), - [anon_sym_LT_LPAREN] = ACTIONS(804), - [anon_sym_GT_LPAREN] = ACTIONS(804), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1511), - [sym_word] = ACTIONS(806), - }, - [975] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(3170), - [sym_comment] = ACTIONS(56), - }, - [976] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1557), - [anon_sym_RBRACE] = ACTIONS(3172), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [977] = { - [sym_subscript] = STATE(1561), - [sym_variable_name] = ACTIONS(3174), - [anon_sym_DOLLAR] = ACTIONS(3176), - [anon_sym_DASH] = ACTIONS(3176), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3178), - [anon_sym_STAR] = ACTIONS(3176), - [anon_sym_AT] = ACTIONS(3176), - [anon_sym_QMARK] = ACTIONS(3176), - [anon_sym_0] = ACTIONS(3180), - [anon_sym__] = ACTIONS(3180), - }, - [978] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1563), - [anon_sym_RBRACE] = ACTIONS(3182), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [979] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1565), - [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [980] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3186), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [981] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3186), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [982] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(3186), - [sym_comment] = ACTIONS(56), - }, - [983] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(3186), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [984] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3188), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [985] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3188), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [986] = { - [sym_variable_assignment] = STATE(485), - [sym_subscript] = STATE(486), - [sym_concatenation] = STATE(485), - [sym_string] = STATE(479), - [sym_simple_expansion] = STATE(479), - [sym_string_expansion] = STATE(479), - [sym_expansion] = STATE(479), - [sym_command_substitution] = STATE(479), - [sym_process_substitution] = STATE(479), - [aux_sym_declaration_command_repeat1] = STATE(986), - [sym_variable_name] = ACTIONS(3190), - [anon_sym_PIPE] = ACTIONS(3193), - [anon_sym_RPAREN] = ACTIONS(3195), - [anon_sym_PIPE_AMP] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [sym__special_characters] = ACTIONS(3197), - [anon_sym_DQUOTE] = ACTIONS(3200), - [anon_sym_DOLLAR] = ACTIONS(3203), - [sym_raw_string] = ACTIONS(3206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3209), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3212), - [anon_sym_BQUOTE] = ACTIONS(3215), - [anon_sym_LT_LPAREN] = ACTIONS(3218), - [anon_sym_GT_LPAREN] = ACTIONS(3218), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3221), - [sym_word] = ACTIONS(3224), - }, - [987] = { - [sym_string] = STATE(1568), - [sym_simple_expansion] = STATE(1568), - [sym_string_expansion] = STATE(1568), - [sym_expansion] = STATE(1568), - [sym_command_substitution] = STATE(1568), - [sym_process_substitution] = STATE(1568), - [sym__special_characters] = ACTIONS(3227), - [anon_sym_DQUOTE] = ACTIONS(892), - [anon_sym_DOLLAR] = ACTIONS(894), - [sym_raw_string] = ACTIONS(3229), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(898), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(900), - [anon_sym_BQUOTE] = ACTIONS(902), - [anon_sym_LT_LPAREN] = ACTIONS(904), - [anon_sym_GT_LPAREN] = ACTIONS(904), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3227), - }, - [988] = { - [aux_sym_concatenation_repeat1] = STATE(1569), - [sym__concat] = ACTIONS(2000), - [anon_sym_PIPE] = ACTIONS(1501), - [anon_sym_RPAREN] = ACTIONS(760), - [anon_sym_PIPE_AMP] = ACTIONS(760), - [anon_sym_AMP_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(760), - [sym__special_characters] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(760), - [anon_sym_DOLLAR] = ACTIONS(1501), - [sym_raw_string] = ACTIONS(760), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(760), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(760), - [anon_sym_BQUOTE] = ACTIONS(760), - [anon_sym_LT_LPAREN] = ACTIONS(760), - [anon_sym_GT_LPAREN] = ACTIONS(760), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1501), - [sym_word] = ACTIONS(762), - }, - [989] = { - [sym__concat] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_PIPE_AMP] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(764), - [sym__special_characters] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(1503), - [sym_raw_string] = ACTIONS(764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(764), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(764), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_LT_LPAREN] = ACTIONS(764), - [anon_sym_GT_LPAREN] = ACTIONS(764), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1503), - [sym_word] = ACTIONS(766), - }, - [990] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [991] = { - [sym__concat] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_RPAREN] = ACTIONS(796), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [sym__special_characters] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(1507), - [sym_raw_string] = ACTIONS(796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [anon_sym_LT_LPAREN] = ACTIONS(796), - [anon_sym_GT_LPAREN] = ACTIONS(796), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1507), - [sym_word] = ACTIONS(798), - }, - [992] = { - [sym__concat] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_RPAREN] = ACTIONS(800), - [anon_sym_PIPE_AMP] = ACTIONS(800), - [anon_sym_AMP_AMP] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(800), - [sym__special_characters] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR] = ACTIONS(1509), - [sym_raw_string] = ACTIONS(800), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(800), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(800), - [anon_sym_BQUOTE] = ACTIONS(800), - [anon_sym_LT_LPAREN] = ACTIONS(800), - [anon_sym_GT_LPAREN] = ACTIONS(800), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1509), - [sym_word] = ACTIONS(802), - }, - [993] = { - [sym__concat] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_RPAREN] = ACTIONS(804), - [anon_sym_PIPE_AMP] = ACTIONS(804), - [anon_sym_AMP_AMP] = ACTIONS(804), - [anon_sym_PIPE_PIPE] = ACTIONS(804), - [sym__special_characters] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(804), - [anon_sym_DOLLAR] = ACTIONS(1511), - [sym_raw_string] = ACTIONS(804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(804), - [anon_sym_BQUOTE] = ACTIONS(804), - [anon_sym_LT_LPAREN] = ACTIONS(804), - [anon_sym_GT_LPAREN] = ACTIONS(804), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1511), - [sym_word] = ACTIONS(806), - }, - [994] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(3233), - [sym_comment] = ACTIONS(56), - }, - [995] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1573), - [anon_sym_RBRACE] = ACTIONS(3235), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [996] = { - [sym_subscript] = STATE(1577), - [sym_variable_name] = ACTIONS(3237), - [anon_sym_DOLLAR] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3241), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_AT] = ACTIONS(3239), - [anon_sym_QMARK] = ACTIONS(3239), - [anon_sym_0] = ACTIONS(3243), - [anon_sym__] = ACTIONS(3243), - }, - [997] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1579), - [anon_sym_RBRACE] = ACTIONS(3245), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [998] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1581), - [anon_sym_RBRACE] = ACTIONS(3247), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [999] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3249), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [1000] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3249), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1001] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(3249), - [sym_comment] = ACTIONS(56), - }, - [1002] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(3249), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1003] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3251), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [1004] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3251), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1005] = { - [sym_concatenation] = STATE(497), - [sym_string] = STATE(491), - [sym_simple_expansion] = STATE(491), - [sym_string_expansion] = STATE(491), - [sym_expansion] = STATE(491), - [sym_command_substitution] = STATE(491), - [sym_process_substitution] = STATE(491), - [aux_sym_unset_command_repeat1] = STATE(1005), - [anon_sym_PIPE] = ACTIONS(3253), - [anon_sym_RPAREN] = ACTIONS(3255), - [anon_sym_PIPE_AMP] = ACTIONS(3255), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_PIPE_PIPE] = ACTIONS(3255), - [sym__special_characters] = ACTIONS(3257), - [anon_sym_DQUOTE] = ACTIONS(3260), - [anon_sym_DOLLAR] = ACTIONS(3263), - [sym_raw_string] = ACTIONS(3266), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3269), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3272), - [anon_sym_BQUOTE] = ACTIONS(3275), - [anon_sym_LT_LPAREN] = ACTIONS(3278), - [anon_sym_GT_LPAREN] = ACTIONS(3278), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3281), - [sym_word] = ACTIONS(3284), - }, - [1006] = { - [sym_file_descriptor] = ACTIONS(1790), - [sym__concat] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_RPAREN] = ACTIONS(1790), - [anon_sym_PIPE_AMP] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(1790), - [anon_sym_PIPE_PIPE] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(1790), - [anon_sym_AMP_GT] = ACTIONS(2816), - [anon_sym_AMP_GT_GT] = ACTIONS(1790), - [anon_sym_LT_AMP] = ACTIONS(1790), - [anon_sym_GT_AMP] = ACTIONS(1790), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_LT_LT_DASH] = ACTIONS(1790), - [anon_sym_LT_LT_LT] = ACTIONS(1790), - [sym__special_characters] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_LT_LPAREN] = ACTIONS(1790), - [anon_sym_GT_LPAREN] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2816), - }, - [1007] = { - [aux_sym_concatenation_repeat1] = STATE(1007), - [sym_file_descriptor] = ACTIONS(1790), - [sym__concat] = ACTIONS(3287), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_RPAREN] = ACTIONS(1790), - [anon_sym_PIPE_AMP] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(1790), - [anon_sym_PIPE_PIPE] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(1790), - [anon_sym_AMP_GT] = ACTIONS(2816), - [anon_sym_AMP_GT_GT] = ACTIONS(1790), - [anon_sym_LT_AMP] = ACTIONS(1790), - [anon_sym_GT_AMP] = ACTIONS(1790), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_LT_LT_DASH] = ACTIONS(1790), - [anon_sym_LT_LT_LT] = ACTIONS(1790), - [sym__special_characters] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_LT_LPAREN] = ACTIONS(1790), - [anon_sym_GT_LPAREN] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2816), - }, - [1008] = { - [sym_file_descriptor] = ACTIONS(1821), - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(2821), - [anon_sym_RPAREN] = ACTIONS(1821), - [anon_sym_PIPE_AMP] = ACTIONS(1821), - [anon_sym_AMP_AMP] = ACTIONS(1821), - [anon_sym_PIPE_PIPE] = ACTIONS(1821), - [anon_sym_LT] = ACTIONS(2821), - [anon_sym_GT] = ACTIONS(2821), - [anon_sym_GT_GT] = ACTIONS(1821), - [anon_sym_AMP_GT] = ACTIONS(2821), - [anon_sym_AMP_GT_GT] = ACTIONS(1821), - [anon_sym_LT_AMP] = ACTIONS(1821), - [anon_sym_GT_AMP] = ACTIONS(1821), - [anon_sym_LT_LT] = ACTIONS(2821), - [anon_sym_LT_LT_DASH] = ACTIONS(1821), - [anon_sym_LT_LT_LT] = ACTIONS(1821), - [sym__special_characters] = ACTIONS(2821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [anon_sym_DOLLAR] = ACTIONS(2821), - [sym_raw_string] = ACTIONS(1821), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1821), - [anon_sym_BQUOTE] = ACTIONS(1821), - [anon_sym_LT_LPAREN] = ACTIONS(1821), - [anon_sym_GT_LPAREN] = ACTIONS(1821), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2821), - }, - [1009] = { - [sym_concatenation] = STATE(1587), - [sym_string] = STATE(1586), - [sym_simple_expansion] = STATE(1586), - [sym_string_expansion] = STATE(1586), - [sym_expansion] = STATE(1586), - [sym_command_substitution] = STATE(1586), - [sym_process_substitution] = STATE(1586), - [anon_sym_RBRACE] = ACTIONS(3290), - [sym__special_characters] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(3294), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3296), - }, - [1010] = { - [sym_file_descriptor] = ACTIONS(1866), - [sym__concat] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_PIPE_AMP] = ACTIONS(1866), - [anon_sym_AMP_AMP] = ACTIONS(1866), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_LT] = ACTIONS(2831), - [anon_sym_GT] = ACTIONS(2831), - [anon_sym_GT_GT] = ACTIONS(1866), - [anon_sym_AMP_GT] = ACTIONS(2831), - [anon_sym_AMP_GT_GT] = ACTIONS(1866), - [anon_sym_LT_AMP] = ACTIONS(1866), - [anon_sym_GT_AMP] = ACTIONS(1866), - [anon_sym_LT_LT] = ACTIONS(2831), - [anon_sym_LT_LT_DASH] = ACTIONS(1866), - [anon_sym_LT_LT_LT] = ACTIONS(1866), - [sym__special_characters] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(2831), - [sym_raw_string] = ACTIONS(1866), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1866), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1866), - [anon_sym_BQUOTE] = ACTIONS(1866), - [anon_sym_LT_LPAREN] = ACTIONS(1866), - [anon_sym_GT_LPAREN] = ACTIONS(1866), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2831), - }, - [1011] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1012] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(3300), - [sym_comment] = ACTIONS(56), - }, - [1013] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1591), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1014] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1593), - [anon_sym_RBRACE] = ACTIONS(3304), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1015] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1594), - [anon_sym_RBRACE] = ACTIONS(3290), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1016] = { - [sym_file_descriptor] = ACTIONS(1910), - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(2841), - [anon_sym_RPAREN] = ACTIONS(1910), - [anon_sym_PIPE_AMP] = ACTIONS(1910), - [anon_sym_AMP_AMP] = ACTIONS(1910), - [anon_sym_PIPE_PIPE] = ACTIONS(1910), - [anon_sym_LT] = ACTIONS(2841), - [anon_sym_GT] = ACTIONS(2841), - [anon_sym_GT_GT] = ACTIONS(1910), - [anon_sym_AMP_GT] = ACTIONS(2841), - [anon_sym_AMP_GT_GT] = ACTIONS(1910), - [anon_sym_LT_AMP] = ACTIONS(1910), - [anon_sym_GT_AMP] = ACTIONS(1910), - [anon_sym_LT_LT] = ACTIONS(2841), - [anon_sym_LT_LT_DASH] = ACTIONS(1910), - [anon_sym_LT_LT_LT] = ACTIONS(1910), - [sym__special_characters] = ACTIONS(2841), - [anon_sym_DQUOTE] = ACTIONS(1910), - [anon_sym_DOLLAR] = ACTIONS(2841), - [sym_raw_string] = ACTIONS(1910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1910), - [anon_sym_BQUOTE] = ACTIONS(1910), - [anon_sym_LT_LPAREN] = ACTIONS(1910), - [anon_sym_GT_LPAREN] = ACTIONS(1910), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2841), - }, - [1017] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(3306), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1018] = { - [sym_file_descriptor] = ACTIONS(1916), - [sym__concat] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(2845), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(2845), - [anon_sym_GT] = ACTIONS(2845), - [anon_sym_GT_GT] = ACTIONS(1916), - [anon_sym_AMP_GT] = ACTIONS(2845), - [anon_sym_AMP_GT_GT] = ACTIONS(1916), - [anon_sym_LT_AMP] = ACTIONS(1916), - [anon_sym_GT_AMP] = ACTIONS(1916), - [anon_sym_LT_LT] = ACTIONS(2845), - [anon_sym_LT_LT_DASH] = ACTIONS(1916), - [anon_sym_LT_LT_LT] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(2845), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(2845), - [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(56), - [sym_word] = ACTIONS(2845), - }, - [1019] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(3290), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1020] = { - [sym_file_descriptor] = ACTIONS(2064), - [sym__concat] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2847), - [anon_sym_RPAREN] = ACTIONS(2064), - [anon_sym_PIPE_AMP] = ACTIONS(2064), - [anon_sym_AMP_AMP] = ACTIONS(2064), - [anon_sym_PIPE_PIPE] = ACTIONS(2064), - [anon_sym_LT] = ACTIONS(2847), - [anon_sym_GT] = ACTIONS(2847), - [anon_sym_GT_GT] = ACTIONS(2064), - [anon_sym_AMP_GT] = ACTIONS(2847), - [anon_sym_AMP_GT_GT] = ACTIONS(2064), - [anon_sym_LT_AMP] = ACTIONS(2064), - [anon_sym_GT_AMP] = ACTIONS(2064), - [anon_sym_LT_LT] = ACTIONS(2847), - [anon_sym_LT_LT_DASH] = ACTIONS(2064), - [anon_sym_LT_LT_LT] = ACTIONS(2064), - [sym__special_characters] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2847), - [sym_raw_string] = ACTIONS(2064), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2064), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2064), - [anon_sym_BQUOTE] = ACTIONS(2064), - [anon_sym_LT_LPAREN] = ACTIONS(2064), - [anon_sym_GT_LPAREN] = ACTIONS(2064), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2847), - }, - [1021] = { - [sym_file_descriptor] = ACTIONS(2228), - [sym__concat] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_RPAREN] = ACTIONS(2228), - [anon_sym_PIPE_AMP] = ACTIONS(2228), - [anon_sym_AMP_AMP] = ACTIONS(2228), - [anon_sym_PIPE_PIPE] = ACTIONS(2228), - [anon_sym_LT] = ACTIONS(2849), - [anon_sym_GT] = ACTIONS(2849), - [anon_sym_GT_GT] = ACTIONS(2228), - [anon_sym_AMP_GT] = ACTIONS(2849), - [anon_sym_AMP_GT_GT] = ACTIONS(2228), - [anon_sym_LT_AMP] = ACTIONS(2228), - [anon_sym_GT_AMP] = ACTIONS(2228), - [anon_sym_LT_LT] = ACTIONS(2849), - [anon_sym_LT_LT_DASH] = ACTIONS(2228), - [anon_sym_LT_LT_LT] = ACTIONS(2228), - [sym__special_characters] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2228), - [anon_sym_DOLLAR] = ACTIONS(2849), - [sym_raw_string] = ACTIONS(2228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2228), - [anon_sym_BQUOTE] = ACTIONS(2228), - [anon_sym_LT_LPAREN] = ACTIONS(2228), - [anon_sym_GT_LPAREN] = ACTIONS(2228), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2849), - }, - [1022] = { - [sym_compound_statement] = STATE(1596), - [anon_sym_LBRACE] = ACTIONS(1960), - [sym_comment] = ACTIONS(56), - }, - [1023] = { - [anon_sym_PIPE] = ACTIONS(3308), - [anon_sym_RPAREN] = ACTIONS(3310), - [anon_sym_PIPE_AMP] = ACTIONS(3310), - [anon_sym_AMP_AMP] = ACTIONS(3310), - [anon_sym_PIPE_PIPE] = ACTIONS(3310), - [anon_sym_BQUOTE] = ACTIONS(3310), - [sym_comment] = ACTIONS(56), - }, - [1024] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(3308), - [anon_sym_RPAREN] = ACTIONS(3310), - [anon_sym_PIPE_AMP] = ACTIONS(3310), - [anon_sym_AMP_AMP] = ACTIONS(3310), - [anon_sym_PIPE_PIPE] = ACTIONS(3310), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1025] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3312), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [sym_comment] = ACTIONS(56), - }, - [1026] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3312), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1027] = { - [sym_concatenation] = STATE(1599), - [sym_string] = STATE(1598), - [sym_simple_expansion] = STATE(1598), - [sym_string_expansion] = STATE(1598), - [sym_expansion] = STATE(1598), - [sym_command_substitution] = STATE(1598), - [sym_process_substitution] = STATE(1598), - [sym__special_characters] = ACTIONS(3314), - [anon_sym_DQUOTE] = ACTIONS(2074), - [anon_sym_DOLLAR] = ACTIONS(2076), - [sym_raw_string] = ACTIONS(3316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2082), - [anon_sym_BQUOTE] = ACTIONS(2084), - [anon_sym_LT_LPAREN] = ACTIONS(2086), - [anon_sym_GT_LPAREN] = ACTIONS(2086), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3318), - }, - [1028] = { - [aux_sym_concatenation_repeat1] = STATE(1601), - [sym_file_descriptor] = ACTIONS(728), - [sym__concat] = ACTIONS(3320), - [anon_sym_PIPE] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(728), - [anon_sym_PIPE_AMP] = ACTIONS(728), - [anon_sym_AMP_AMP] = ACTIONS(728), - [anon_sym_PIPE_PIPE] = ACTIONS(728), - [anon_sym_LT] = ACTIONS(732), - [anon_sym_GT] = ACTIONS(732), - [anon_sym_GT_GT] = ACTIONS(728), - [anon_sym_AMP_GT] = ACTIONS(732), - [anon_sym_AMP_GT_GT] = ACTIONS(728), - [anon_sym_LT_AMP] = ACTIONS(728), - [anon_sym_GT_AMP] = ACTIONS(728), - [anon_sym_LT_LT] = ACTIONS(732), - [anon_sym_LT_LT_DASH] = ACTIONS(728), - [anon_sym_LT_LT_LT] = ACTIONS(728), - [sym_comment] = ACTIONS(56), - }, - [1029] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(1603), - [anon_sym_DQUOTE] = ACTIONS(3322), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [1030] = { - [sym_string] = STATE(1606), - [anon_sym_DQUOTE] = ACTIONS(2074), - [anon_sym_DOLLAR] = ACTIONS(3324), - [anon_sym_POUND] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3326), - [anon_sym_STAR] = ACTIONS(3324), - [anon_sym_AT] = ACTIONS(3324), - [anon_sym_QMARK] = ACTIONS(3324), - [anon_sym_0] = ACTIONS(3328), - [anon_sym__] = ACTIONS(3328), - }, - [1031] = { - [aux_sym_concatenation_repeat1] = STATE(1601), - [sym_file_descriptor] = ACTIONS(742), - [sym__concat] = ACTIONS(3320), - [anon_sym_PIPE] = ACTIONS(744), - [anon_sym_RPAREN] = ACTIONS(742), - [anon_sym_PIPE_AMP] = ACTIONS(742), - [anon_sym_AMP_AMP] = ACTIONS(742), - [anon_sym_PIPE_PIPE] = ACTIONS(742), - [anon_sym_LT] = ACTIONS(744), - [anon_sym_GT] = ACTIONS(744), - [anon_sym_GT_GT] = ACTIONS(742), - [anon_sym_AMP_GT] = ACTIONS(744), - [anon_sym_AMP_GT_GT] = ACTIONS(742), - [anon_sym_LT_AMP] = ACTIONS(742), - [anon_sym_GT_AMP] = ACTIONS(742), - [anon_sym_LT_LT] = ACTIONS(744), - [anon_sym_LT_LT_DASH] = ACTIONS(742), - [anon_sym_LT_LT_LT] = ACTIONS(742), - [sym_comment] = ACTIONS(56), - }, - [1032] = { - [sym_subscript] = STATE(1611), - [sym_variable_name] = ACTIONS(3330), - [anon_sym_DOLLAR] = ACTIONS(3332), - [anon_sym_POUND] = ACTIONS(3334), - [anon_sym_DASH] = ACTIONS(3332), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3336), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_AT] = ACTIONS(3332), - [anon_sym_QMARK] = ACTIONS(3332), - [anon_sym_0] = ACTIONS(3338), - [anon_sym__] = ACTIONS(3338), - }, - [1033] = { - [sym_for_statement] = STATE(1612), - [sym_while_statement] = STATE(1612), - [sym_if_statement] = STATE(1612), - [sym_case_statement] = STATE(1612), - [sym_function_definition] = STATE(1612), - [sym_subshell] = STATE(1612), - [sym_pipeline] = STATE(1612), - [sym_list] = STATE(1612), - [sym_bracket_command] = STATE(1612), - [sym_command] = STATE(1612), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1613), - [sym_declaration_command] = STATE(1612), - [sym_unset_command] = STATE(1612), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [1034] = { - [sym_for_statement] = STATE(1614), - [sym_while_statement] = STATE(1614), - [sym_if_statement] = STATE(1614), - [sym_case_statement] = STATE(1614), - [sym_function_definition] = STATE(1614), - [sym_subshell] = STATE(1614), - [sym_pipeline] = STATE(1614), - [sym_list] = STATE(1614), - [sym_bracket_command] = STATE(1614), - [sym_command] = STATE(1614), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(1615), - [sym_declaration_command] = STATE(1614), - [sym_unset_command] = STATE(1614), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), - }, - [1035] = { - [sym_for_statement] = STATE(1616), - [sym_while_statement] = STATE(1616), - [sym_if_statement] = STATE(1616), - [sym_case_statement] = STATE(1616), - [sym_function_definition] = STATE(1616), - [sym_subshell] = STATE(1616), - [sym_pipeline] = STATE(1616), - [sym_list] = STATE(1616), - [sym_bracket_command] = STATE(1616), - [sym_command] = STATE(1616), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1617), - [sym_declaration_command] = STATE(1616), - [sym_unset_command] = STATE(1616), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [1036] = { - [sym_file_descriptor] = ACTIONS(742), - [anon_sym_PIPE] = ACTIONS(744), - [anon_sym_RPAREN] = ACTIONS(742), - [anon_sym_PIPE_AMP] = ACTIONS(742), - [anon_sym_AMP_AMP] = ACTIONS(742), - [anon_sym_PIPE_PIPE] = ACTIONS(742), - [anon_sym_LT] = ACTIONS(744), - [anon_sym_GT] = ACTIONS(744), - [anon_sym_GT_GT] = ACTIONS(742), - [anon_sym_AMP_GT] = ACTIONS(744), - [anon_sym_AMP_GT_GT] = ACTIONS(742), - [anon_sym_LT_AMP] = ACTIONS(742), - [anon_sym_GT_AMP] = ACTIONS(742), - [anon_sym_LT_LT] = ACTIONS(744), - [anon_sym_LT_LT_DASH] = ACTIONS(742), - [anon_sym_LT_LT_LT] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [sym_comment] = ACTIONS(56), - }, - [1037] = { - [sym_file_descriptor] = ACTIONS(2266), - [anon_sym_PIPE] = ACTIONS(3340), - [anon_sym_RPAREN] = ACTIONS(2266), - [anon_sym_PIPE_AMP] = ACTIONS(2266), - [anon_sym_AMP_AMP] = ACTIONS(2266), - [anon_sym_PIPE_PIPE] = ACTIONS(2266), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_GT] = ACTIONS(3340), - [anon_sym_GT_GT] = ACTIONS(2266), - [anon_sym_AMP_GT] = ACTIONS(3340), - [anon_sym_AMP_GT_GT] = ACTIONS(2266), - [anon_sym_LT_AMP] = ACTIONS(2266), - [anon_sym_GT_AMP] = ACTIONS(2266), - [anon_sym_LT_LT] = ACTIONS(3340), - [anon_sym_LT_LT_DASH] = ACTIONS(2266), - [anon_sym_LT_LT_LT] = ACTIONS(2266), - [anon_sym_BQUOTE] = ACTIONS(2266), - [sym_comment] = ACTIONS(56), - }, - [1038] = { - [sym_simple_expansion] = STATE(1154), - [sym_expansion] = STATE(1154), - [aux_sym_heredoc_repeat1] = STATE(1619), - [sym__heredoc_middle] = ACTIONS(2270), - [sym__heredoc_end] = ACTIONS(3342), - [anon_sym_DOLLAR] = ACTIONS(2274), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2276), - [sym_comment] = ACTIONS(56), - }, - [1039] = { - [sym_file_descriptor] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(3344), - [anon_sym_RPAREN] = ACTIONS(2278), - [anon_sym_PIPE_AMP] = ACTIONS(2278), - [anon_sym_AMP_AMP] = ACTIONS(2278), - [anon_sym_PIPE_PIPE] = ACTIONS(2278), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_GT] = ACTIONS(3344), - [anon_sym_GT_GT] = ACTIONS(2278), - [anon_sym_AMP_GT] = ACTIONS(3344), - [anon_sym_AMP_GT_GT] = ACTIONS(2278), - [anon_sym_LT_AMP] = ACTIONS(2278), - [anon_sym_GT_AMP] = ACTIONS(2278), - [anon_sym_LT_LT] = ACTIONS(3344), - [anon_sym_LT_LT_DASH] = ACTIONS(2278), - [anon_sym_LT_LT_LT] = ACTIONS(2278), - [anon_sym_BQUOTE] = ACTIONS(2278), - [sym_comment] = ACTIONS(56), - }, - [1040] = { - [aux_sym_concatenation_repeat1] = STATE(1601), - [sym_file_descriptor] = ACTIONS(2282), - [sym__concat] = ACTIONS(3320), - [anon_sym_PIPE] = ACTIONS(3346), - [anon_sym_RPAREN] = ACTIONS(2282), - [anon_sym_PIPE_AMP] = ACTIONS(2282), - [anon_sym_AMP_AMP] = ACTIONS(2282), - [anon_sym_PIPE_PIPE] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(3346), - [anon_sym_GT] = ACTIONS(3346), - [anon_sym_GT_GT] = ACTIONS(2282), - [anon_sym_AMP_GT] = ACTIONS(3346), - [anon_sym_AMP_GT_GT] = ACTIONS(2282), - [anon_sym_LT_AMP] = ACTIONS(2282), - [anon_sym_GT_AMP] = ACTIONS(2282), - [anon_sym_LT_LT] = ACTIONS(3346), - [anon_sym_LT_LT_DASH] = ACTIONS(2282), - [anon_sym_LT_LT_LT] = ACTIONS(2282), - [sym_comment] = ACTIONS(56), - }, - [1041] = { - [aux_sym_concatenation_repeat1] = STATE(1601), - [sym_file_descriptor] = ACTIONS(2286), - [sym__concat] = ACTIONS(3320), - [anon_sym_PIPE] = ACTIONS(3348), - [anon_sym_RPAREN] = ACTIONS(2286), - [anon_sym_PIPE_AMP] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_GT_GT] = ACTIONS(2286), - [anon_sym_AMP_GT] = ACTIONS(3348), - [anon_sym_AMP_GT_GT] = ACTIONS(2286), - [anon_sym_LT_AMP] = ACTIONS(2286), - [anon_sym_GT_AMP] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(3348), - [anon_sym_LT_LT_DASH] = ACTIONS(2286), - [anon_sym_LT_LT_LT] = ACTIONS(2286), - [sym_comment] = ACTIONS(56), - }, - [1042] = { - [sym_file_descriptor] = ACTIONS(2286), - [anon_sym_PIPE] = ACTIONS(3348), - [anon_sym_RPAREN] = ACTIONS(2286), - [anon_sym_PIPE_AMP] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_GT_GT] = ACTIONS(2286), - [anon_sym_AMP_GT] = ACTIONS(3348), - [anon_sym_AMP_GT_GT] = ACTIONS(2286), - [anon_sym_LT_AMP] = ACTIONS(2286), - [anon_sym_GT_AMP] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(3348), - [anon_sym_LT_LT_DASH] = ACTIONS(2286), - [anon_sym_LT_LT_LT] = ACTIONS(2286), - [anon_sym_BQUOTE] = ACTIONS(2286), - [sym_comment] = ACTIONS(56), - }, - [1043] = { - [sym_concatenation] = STATE(528), - [sym_string] = STATE(526), - [sym_simple_expansion] = STATE(526), - [sym_string_expansion] = STATE(526), - [sym_expansion] = STATE(526), - [sym_command_substitution] = STATE(526), - [sym_process_substitution] = STATE(526), - [aux_sym_for_statement_repeat1] = STATE(1043), - [sym_file_descriptor] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(3350), - [anon_sym_RPAREN] = ACTIONS(2290), - [anon_sym_PIPE_AMP] = ACTIONS(2290), - [anon_sym_AMP_AMP] = ACTIONS(2290), - [anon_sym_PIPE_PIPE] = ACTIONS(2290), - [anon_sym_LT] = ACTIONS(3350), - [anon_sym_GT] = ACTIONS(3350), - [anon_sym_GT_GT] = ACTIONS(2290), - [anon_sym_AMP_GT] = ACTIONS(3350), - [anon_sym_AMP_GT_GT] = ACTIONS(2290), - [anon_sym_LT_AMP] = ACTIONS(2290), - [anon_sym_GT_AMP] = ACTIONS(2290), - [anon_sym_LT_LT] = ACTIONS(3350), - [anon_sym_LT_LT_DASH] = ACTIONS(2290), - [anon_sym_LT_LT_LT] = ACTIONS(2290), - [sym__special_characters] = ACTIONS(3352), - [anon_sym_DQUOTE] = ACTIONS(3355), - [anon_sym_DOLLAR] = ACTIONS(3358), - [sym_raw_string] = ACTIONS(3361), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3364), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3367), - [anon_sym_BQUOTE] = ACTIONS(3370), - [anon_sym_LT_LPAREN] = ACTIONS(3373), - [anon_sym_GT_LPAREN] = ACTIONS(3373), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3376), - }, - [1044] = { - [sym_file_redirect] = STATE(527), - [sym_heredoc_redirect] = STATE(527), - [sym_herestring_redirect] = STATE(527), - [aux_sym_while_statement_repeat1] = STATE(1045), - [sym_file_descriptor] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_RPAREN] = ACTIONS(3381), - [anon_sym_PIPE_AMP] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_PIPE_PIPE] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_GT_GT] = ACTIONS(952), - [anon_sym_AMP_GT] = ACTIONS(950), - [anon_sym_AMP_GT_GT] = ACTIONS(952), - [anon_sym_LT_AMP] = ACTIONS(952), - [anon_sym_GT_AMP] = ACTIONS(952), - [anon_sym_LT_LT] = ACTIONS(954), - [anon_sym_LT_LT_DASH] = ACTIONS(956), - [anon_sym_LT_LT_LT] = ACTIONS(958), - [sym_comment] = ACTIONS(56), - }, - [1045] = { - [sym_file_redirect] = STATE(527), - [sym_heredoc_redirect] = STATE(527), - [sym_herestring_redirect] = STATE(527), - [aux_sym_while_statement_repeat1] = STATE(1045), - [sym_file_descriptor] = ACTIONS(3383), - [anon_sym_PIPE] = ACTIONS(3386), - [anon_sym_RPAREN] = ACTIONS(3388), - [anon_sym_PIPE_AMP] = ACTIONS(3388), - [anon_sym_AMP_AMP] = ACTIONS(3388), - [anon_sym_PIPE_PIPE] = ACTIONS(3388), - [anon_sym_LT] = ACTIONS(3390), - [anon_sym_GT] = ACTIONS(3390), - [anon_sym_GT_GT] = ACTIONS(3393), - [anon_sym_AMP_GT] = ACTIONS(3390), - [anon_sym_AMP_GT_GT] = ACTIONS(3393), - [anon_sym_LT_AMP] = ACTIONS(3393), - [anon_sym_GT_AMP] = ACTIONS(3393), - [anon_sym_LT_LT] = ACTIONS(3396), - [anon_sym_LT_LT_DASH] = ACTIONS(3399), - [anon_sym_LT_LT_LT] = ACTIONS(3402), - [sym_comment] = ACTIONS(56), - }, - [1046] = { - [sym_file_redirect] = STATE(527), - [sym_heredoc_redirect] = STATE(527), - [sym_herestring_redirect] = STATE(527), - [sym_concatenation] = STATE(528), - [sym_string] = STATE(526), - [sym_simple_expansion] = STATE(526), - [sym_string_expansion] = STATE(526), - [sym_expansion] = STATE(526), - [sym_command_substitution] = STATE(526), - [sym_process_substitution] = STATE(526), - [aux_sym_for_statement_repeat1] = STATE(1043), - [aux_sym_while_statement_repeat1] = STATE(1620), - [sym_file_descriptor] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_RPAREN] = ACTIONS(3381), - [anon_sym_PIPE_AMP] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_PIPE_PIPE] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_GT_GT] = ACTIONS(952), - [anon_sym_AMP_GT] = ACTIONS(950), - [anon_sym_AMP_GT_GT] = ACTIONS(952), - [anon_sym_LT_AMP] = ACTIONS(952), - [anon_sym_GT_AMP] = ACTIONS(952), - [anon_sym_LT_LT] = ACTIONS(954), - [anon_sym_LT_LT_DASH] = ACTIONS(956), - [anon_sym_LT_LT_LT] = ACTIONS(958), - [sym__special_characters] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(962), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(964), - }, - [1047] = { - [aux_sym_concatenation_repeat1] = STATE(1622), - [sym_file_descriptor] = ACTIONS(1259), - [sym__concat] = ACTIONS(3405), - [sym_variable_name] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_PIPE_AMP] = ACTIONS(1259), - [anon_sym_AMP_AMP] = ACTIONS(1259), - [anon_sym_PIPE_PIPE] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(3090), - [anon_sym_GT] = ACTIONS(3090), - [anon_sym_GT_GT] = ACTIONS(1259), - [anon_sym_AMP_GT] = ACTIONS(3090), - [anon_sym_AMP_GT_GT] = ACTIONS(1259), - [anon_sym_LT_AMP] = ACTIONS(1259), - [anon_sym_GT_AMP] = ACTIONS(1259), - [sym__special_characters] = ACTIONS(3090), - [anon_sym_DQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(3090), - [sym_raw_string] = ACTIONS(1259), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1259), - [anon_sym_BQUOTE] = ACTIONS(1259), - [anon_sym_LT_LPAREN] = ACTIONS(1259), - [anon_sym_GT_LPAREN] = ACTIONS(1259), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3090), - }, - [1048] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(1624), - [anon_sym_DQUOTE] = ACTIONS(3407), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [1049] = { - [sym_string] = STATE(1627), - [anon_sym_DQUOTE] = ACTIONS(2112), - [anon_sym_DOLLAR] = ACTIONS(3409), - [anon_sym_POUND] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3411), - [anon_sym_STAR] = ACTIONS(3409), - [anon_sym_AT] = ACTIONS(3409), - [anon_sym_QMARK] = ACTIONS(3409), - [anon_sym_0] = ACTIONS(3413), - [anon_sym__] = ACTIONS(3413), - }, - [1050] = { - [aux_sym_concatenation_repeat1] = STATE(1622), - [sym_file_descriptor] = ACTIONS(1235), - [sym__concat] = ACTIONS(3405), - [sym_variable_name] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(3084), - [anon_sym_PIPE_AMP] = ACTIONS(1235), - [anon_sym_AMP_AMP] = ACTIONS(1235), - [anon_sym_PIPE_PIPE] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(3084), - [anon_sym_GT] = ACTIONS(3084), - [anon_sym_GT_GT] = ACTIONS(1235), - [anon_sym_AMP_GT] = ACTIONS(3084), - [anon_sym_AMP_GT_GT] = ACTIONS(1235), - [anon_sym_LT_AMP] = ACTIONS(1235), - [anon_sym_GT_AMP] = ACTIONS(1235), - [sym__special_characters] = ACTIONS(3084), - [anon_sym_DQUOTE] = ACTIONS(1235), - [anon_sym_DOLLAR] = ACTIONS(3084), - [sym_raw_string] = ACTIONS(1235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), - [anon_sym_BQUOTE] = ACTIONS(1235), - [anon_sym_LT_LPAREN] = ACTIONS(1235), - [anon_sym_GT_LPAREN] = ACTIONS(1235), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3084), - }, - [1051] = { - [sym_subscript] = STATE(1632), - [sym_variable_name] = ACTIONS(3415), - [anon_sym_DOLLAR] = ACTIONS(3417), - [anon_sym_POUND] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3417), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3421), - [anon_sym_STAR] = ACTIONS(3417), - [anon_sym_AT] = ACTIONS(3417), - [anon_sym_QMARK] = ACTIONS(3417), - [anon_sym_0] = ACTIONS(3423), - [anon_sym__] = ACTIONS(3423), - }, - [1052] = { - [sym_for_statement] = STATE(1633), - [sym_while_statement] = STATE(1633), - [sym_if_statement] = STATE(1633), - [sym_case_statement] = STATE(1633), - [sym_function_definition] = STATE(1633), - [sym_subshell] = STATE(1633), - [sym_pipeline] = STATE(1633), - [sym_list] = STATE(1633), - [sym_bracket_command] = STATE(1633), - [sym_command] = STATE(1633), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1634), - [sym_declaration_command] = STATE(1633), - [sym_unset_command] = STATE(1633), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [1053] = { - [sym_for_statement] = STATE(1635), - [sym_while_statement] = STATE(1635), - [sym_if_statement] = STATE(1635), - [sym_case_statement] = STATE(1635), - [sym_function_definition] = STATE(1635), - [sym_subshell] = STATE(1635), - [sym_pipeline] = STATE(1635), - [sym_list] = STATE(1635), - [sym_bracket_command] = STATE(1635), - [sym_command] = STATE(1635), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(1636), - [sym_declaration_command] = STATE(1635), - [sym_unset_command] = STATE(1635), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), - }, - [1054] = { - [sym_for_statement] = STATE(1637), - [sym_while_statement] = STATE(1637), - [sym_if_statement] = STATE(1637), - [sym_case_statement] = STATE(1637), - [sym_function_definition] = STATE(1637), - [sym_subshell] = STATE(1637), - [sym_pipeline] = STATE(1637), - [sym_list] = STATE(1637), - [sym_bracket_command] = STATE(1637), - [sym_command] = STATE(1637), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1638), - [sym_declaration_command] = STATE(1637), - [sym_unset_command] = STATE(1637), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [1055] = { - [sym_file_redirect] = STATE(527), - [sym_heredoc_redirect] = STATE(527), - [sym_herestring_redirect] = STATE(527), - [aux_sym_while_statement_repeat1] = STATE(1639), - [sym_file_descriptor] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(3112), - [anon_sym_PIPE_AMP] = ACTIONS(3114), - [anon_sym_AMP_AMP] = ACTIONS(3114), - [anon_sym_PIPE_PIPE] = ACTIONS(3114), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_GT] = ACTIONS(1038), - [anon_sym_GT_GT] = ACTIONS(1040), - [anon_sym_AMP_GT] = ACTIONS(1038), - [anon_sym_AMP_GT_GT] = ACTIONS(1040), - [anon_sym_LT_AMP] = ACTIONS(1040), - [anon_sym_GT_AMP] = ACTIONS(1040), - [anon_sym_LT_LT] = ACTIONS(954), - [anon_sym_LT_LT_DASH] = ACTIONS(956), - [anon_sym_LT_LT_LT] = ACTIONS(1042), - [anon_sym_BQUOTE] = ACTIONS(3114), - [sym_comment] = ACTIONS(56), - }, - [1056] = { - [anon_sym_RPAREN] = ACTIONS(3425), - [sym_comment] = ACTIONS(56), - }, - [1057] = { - [sym_file_redirect] = STATE(1545), - [sym_file_descriptor] = ACTIONS(3427), - [anon_sym_PIPE] = ACTIONS(3132), - [anon_sym_PIPE_AMP] = ACTIONS(3134), - [anon_sym_AMP_AMP] = ACTIONS(3134), - [anon_sym_PIPE_PIPE] = ACTIONS(3134), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_GT] = ACTIONS(3429), - [anon_sym_GT_GT] = ACTIONS(3431), - [anon_sym_AMP_GT] = ACTIONS(3429), - [anon_sym_AMP_GT_GT] = ACTIONS(3431), - [anon_sym_LT_AMP] = ACTIONS(3431), - [anon_sym_GT_AMP] = ACTIONS(3431), - [anon_sym_BQUOTE] = ACTIONS(3134), - [sym_comment] = ACTIONS(56), - }, - [1058] = { - [sym_concatenation] = STATE(1548), - [sym_string] = STATE(1644), - [sym_array] = STATE(1548), - [sym_simple_expansion] = STATE(1644), - [sym_string_expansion] = STATE(1644), - [sym_expansion] = STATE(1644), - [sym_command_substitution] = STATE(1644), - [sym_process_substitution] = STATE(1644), - [sym__empty_value] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3156), - [sym__special_characters] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(980), - [sym_raw_string] = ACTIONS(3435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(984), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(986), - [anon_sym_BQUOTE] = ACTIONS(3437), - [anon_sym_LT_LPAREN] = ACTIONS(988), - [anon_sym_GT_LPAREN] = ACTIONS(988), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3439), - }, - [1059] = { - [sym_string] = STATE(1645), - [sym_simple_expansion] = STATE(1645), - [sym_string_expansion] = STATE(1645), - [sym_expansion] = STATE(1645), - [sym_command_substitution] = STATE(1645), - [sym_process_substitution] = STATE(1645), - [sym__special_characters] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(980), - [sym_raw_string] = ACTIONS(3443), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(984), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(986), - [anon_sym_BQUOTE] = ACTIONS(3437), - [anon_sym_LT_LPAREN] = ACTIONS(988), - [anon_sym_GT_LPAREN] = ACTIONS(988), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3441), - }, - [1060] = { - [aux_sym_concatenation_repeat1] = STATE(1646), - [sym__concat] = ACTIONS(2132), - [sym_variable_name] = ACTIONS(760), - [anon_sym_PIPE] = ACTIONS(1501), - [anon_sym_PIPE_AMP] = ACTIONS(760), - [anon_sym_AMP_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(760), - [sym__special_characters] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(760), - [anon_sym_DOLLAR] = ACTIONS(1501), - [sym_raw_string] = ACTIONS(760), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(760), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(760), - [anon_sym_BQUOTE] = ACTIONS(760), - [anon_sym_LT_LPAREN] = ACTIONS(760), - [anon_sym_GT_LPAREN] = ACTIONS(760), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1501), - [sym_word] = ACTIONS(762), - }, - [1061] = { - [sym__concat] = ACTIONS(764), - [sym_variable_name] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_PIPE_AMP] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(764), - [sym__special_characters] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(1503), - [sym_raw_string] = ACTIONS(764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(764), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(764), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_LT_LPAREN] = ACTIONS(764), - [anon_sym_GT_LPAREN] = ACTIONS(764), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1503), - [sym_word] = ACTIONS(766), - }, - [1062] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(3445), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [1063] = { - [sym__concat] = ACTIONS(796), - [sym_variable_name] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [sym__special_characters] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(1507), - [sym_raw_string] = ACTIONS(796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [anon_sym_LT_LPAREN] = ACTIONS(796), - [anon_sym_GT_LPAREN] = ACTIONS(796), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1507), - [sym_word] = ACTIONS(798), - }, - [1064] = { - [sym__concat] = ACTIONS(800), - [sym_variable_name] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_PIPE_AMP] = ACTIONS(800), - [anon_sym_AMP_AMP] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(800), - [sym__special_characters] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR] = ACTIONS(1509), - [sym_raw_string] = ACTIONS(800), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(800), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(800), - [anon_sym_BQUOTE] = ACTIONS(800), - [anon_sym_LT_LPAREN] = ACTIONS(800), - [anon_sym_GT_LPAREN] = ACTIONS(800), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1509), - [sym_word] = ACTIONS(802), - }, - [1065] = { - [sym__concat] = ACTIONS(804), - [sym_variable_name] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_PIPE_AMP] = ACTIONS(804), - [anon_sym_AMP_AMP] = ACTIONS(804), - [anon_sym_PIPE_PIPE] = ACTIONS(804), - [sym__special_characters] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(804), - [anon_sym_DOLLAR] = ACTIONS(1511), - [sym_raw_string] = ACTIONS(804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(804), - [anon_sym_BQUOTE] = ACTIONS(804), - [anon_sym_LT_LPAREN] = ACTIONS(804), - [anon_sym_GT_LPAREN] = ACTIONS(804), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1511), - [sym_word] = ACTIONS(806), - }, - [1066] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(3447), - [sym_comment] = ACTIONS(56), - }, - [1067] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1650), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1068] = { - [sym_subscript] = STATE(1654), - [sym_variable_name] = ACTIONS(3451), - [anon_sym_DOLLAR] = ACTIONS(3453), - [anon_sym_DASH] = ACTIONS(3453), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3455), - [anon_sym_STAR] = ACTIONS(3453), - [anon_sym_AT] = ACTIONS(3453), - [anon_sym_QMARK] = ACTIONS(3453), - [anon_sym_0] = ACTIONS(3457), - [anon_sym__] = ACTIONS(3457), - }, - [1069] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1656), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1070] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1658), - [anon_sym_RBRACE] = ACTIONS(3461), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1071] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3463), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [1072] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3463), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1073] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(3463), - [sym_comment] = ACTIONS(56), - }, - [1074] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(3463), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1075] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3465), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [1076] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3465), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1077] = { - [sym_variable_assignment] = STATE(485), - [sym_subscript] = STATE(544), - [sym_concatenation] = STATE(485), - [sym_string] = STATE(539), - [sym_simple_expansion] = STATE(539), - [sym_string_expansion] = STATE(539), - [sym_expansion] = STATE(539), - [sym_command_substitution] = STATE(539), - [sym_process_substitution] = STATE(539), - [aux_sym_declaration_command_repeat1] = STATE(1077), - [sym_variable_name] = ACTIONS(3467), - [anon_sym_PIPE] = ACTIONS(3193), - [anon_sym_PIPE_AMP] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [sym__special_characters] = ACTIONS(3470), - [anon_sym_DQUOTE] = ACTIONS(3473), - [anon_sym_DOLLAR] = ACTIONS(3476), - [sym_raw_string] = ACTIONS(3479), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3482), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3485), - [anon_sym_BQUOTE] = ACTIONS(3488), - [anon_sym_LT_LPAREN] = ACTIONS(3491), - [anon_sym_GT_LPAREN] = ACTIONS(3491), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3221), - [sym_word] = ACTIONS(3494), - }, - [1078] = { - [sym_string] = STATE(1661), - [sym_simple_expansion] = STATE(1661), - [sym_string_expansion] = STATE(1661), - [sym_expansion] = STATE(1661), - [sym_command_substitution] = STATE(1661), - [sym_process_substitution] = STATE(1661), - [sym__special_characters] = ACTIONS(3497), - [anon_sym_DQUOTE] = ACTIONS(994), - [anon_sym_DOLLAR] = ACTIONS(996), - [sym_raw_string] = ACTIONS(3499), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1000), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1002), - [anon_sym_BQUOTE] = ACTIONS(3501), - [anon_sym_LT_LPAREN] = ACTIONS(1004), - [anon_sym_GT_LPAREN] = ACTIONS(1004), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3497), - }, - [1079] = { - [aux_sym_concatenation_repeat1] = STATE(1662), - [sym__concat] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(1501), - [anon_sym_PIPE_AMP] = ACTIONS(760), - [anon_sym_AMP_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(760), - [sym__special_characters] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(760), - [anon_sym_DOLLAR] = ACTIONS(1501), - [sym_raw_string] = ACTIONS(760), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(760), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(760), - [anon_sym_BQUOTE] = ACTIONS(760), - [anon_sym_LT_LPAREN] = ACTIONS(760), - [anon_sym_GT_LPAREN] = ACTIONS(760), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1501), - [sym_word] = ACTIONS(762), - }, - [1080] = { - [sym__concat] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_PIPE_AMP] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(764), - [sym__special_characters] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(1503), - [sym_raw_string] = ACTIONS(764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(764), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(764), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_LT_LPAREN] = ACTIONS(764), - [anon_sym_GT_LPAREN] = ACTIONS(764), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1503), - [sym_word] = ACTIONS(766), - }, - [1081] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(3503), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [1082] = { - [sym__concat] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [sym__special_characters] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(1507), - [sym_raw_string] = ACTIONS(796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [anon_sym_LT_LPAREN] = ACTIONS(796), - [anon_sym_GT_LPAREN] = ACTIONS(796), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1507), - [sym_word] = ACTIONS(798), - }, - [1083] = { - [sym__concat] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_PIPE_AMP] = ACTIONS(800), - [anon_sym_AMP_AMP] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(800), - [sym__special_characters] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR] = ACTIONS(1509), - [sym_raw_string] = ACTIONS(800), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(800), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(800), - [anon_sym_BQUOTE] = ACTIONS(800), - [anon_sym_LT_LPAREN] = ACTIONS(800), - [anon_sym_GT_LPAREN] = ACTIONS(800), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1509), - [sym_word] = ACTIONS(802), - }, - [1084] = { - [sym__concat] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_PIPE_AMP] = ACTIONS(804), - [anon_sym_AMP_AMP] = ACTIONS(804), - [anon_sym_PIPE_PIPE] = ACTIONS(804), - [sym__special_characters] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(804), - [anon_sym_DOLLAR] = ACTIONS(1511), - [sym_raw_string] = ACTIONS(804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(804), - [anon_sym_BQUOTE] = ACTIONS(804), - [anon_sym_LT_LPAREN] = ACTIONS(804), - [anon_sym_GT_LPAREN] = ACTIONS(804), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1511), - [sym_word] = ACTIONS(806), - }, - [1085] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(3505), - [sym_comment] = ACTIONS(56), - }, - [1086] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1666), - [anon_sym_RBRACE] = ACTIONS(3507), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1087] = { - [sym_subscript] = STATE(1670), - [sym_variable_name] = ACTIONS(3509), - [anon_sym_DOLLAR] = ACTIONS(3511), - [anon_sym_DASH] = ACTIONS(3511), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3513), - [anon_sym_STAR] = ACTIONS(3511), - [anon_sym_AT] = ACTIONS(3511), - [anon_sym_QMARK] = ACTIONS(3511), - [anon_sym_0] = ACTIONS(3515), - [anon_sym__] = ACTIONS(3515), - }, - [1088] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1672), - [anon_sym_RBRACE] = ACTIONS(3517), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1089] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1674), - [anon_sym_RBRACE] = ACTIONS(3519), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1090] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3521), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [1091] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3521), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1092] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(3521), - [sym_comment] = ACTIONS(56), - }, - [1093] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(3521), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1094] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3523), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [1095] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3523), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1096] = { - [sym_concatenation] = STATE(497), - [sym_string] = STATE(549), - [sym_simple_expansion] = STATE(549), - [sym_string_expansion] = STATE(549), - [sym_expansion] = STATE(549), - [sym_command_substitution] = STATE(549), - [sym_process_substitution] = STATE(549), - [aux_sym_unset_command_repeat1] = STATE(1096), - [anon_sym_PIPE] = ACTIONS(3253), - [anon_sym_PIPE_AMP] = ACTIONS(3255), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_PIPE_PIPE] = ACTIONS(3255), - [sym__special_characters] = ACTIONS(3525), - [anon_sym_DQUOTE] = ACTIONS(3528), - [anon_sym_DOLLAR] = ACTIONS(3531), - [sym_raw_string] = ACTIONS(3534), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3537), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3540), - [anon_sym_BQUOTE] = ACTIONS(3543), - [anon_sym_LT_LPAREN] = ACTIONS(3546), - [anon_sym_GT_LPAREN] = ACTIONS(3546), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3281), - [sym_word] = ACTIONS(3549), - }, - [1097] = { - [sym_file_descriptor] = ACTIONS(1790), - [sym__concat] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_PIPE_AMP] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(1790), - [anon_sym_PIPE_PIPE] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(1790), - [anon_sym_AMP_GT] = ACTIONS(2816), - [anon_sym_AMP_GT_GT] = ACTIONS(1790), - [anon_sym_LT_AMP] = ACTIONS(1790), - [anon_sym_GT_AMP] = ACTIONS(1790), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_LT_LT_DASH] = ACTIONS(1790), - [anon_sym_LT_LT_LT] = ACTIONS(1790), - [sym__special_characters] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_LT_LPAREN] = ACTIONS(1790), - [anon_sym_GT_LPAREN] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2816), - }, - [1098] = { - [aux_sym_concatenation_repeat1] = STATE(1098), - [sym_file_descriptor] = ACTIONS(1790), - [sym__concat] = ACTIONS(3552), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_PIPE_AMP] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(1790), - [anon_sym_PIPE_PIPE] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(1790), - [anon_sym_AMP_GT] = ACTIONS(2816), - [anon_sym_AMP_GT_GT] = ACTIONS(1790), - [anon_sym_LT_AMP] = ACTIONS(1790), - [anon_sym_GT_AMP] = ACTIONS(1790), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_LT_LT_DASH] = ACTIONS(1790), - [anon_sym_LT_LT_LT] = ACTIONS(1790), - [sym__special_characters] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_LT_LPAREN] = ACTIONS(1790), - [anon_sym_GT_LPAREN] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2816), - }, - [1099] = { - [sym_file_descriptor] = ACTIONS(1821), - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(2821), - [anon_sym_PIPE_AMP] = ACTIONS(1821), - [anon_sym_AMP_AMP] = ACTIONS(1821), - [anon_sym_PIPE_PIPE] = ACTIONS(1821), - [anon_sym_LT] = ACTIONS(2821), - [anon_sym_GT] = ACTIONS(2821), - [anon_sym_GT_GT] = ACTIONS(1821), - [anon_sym_AMP_GT] = ACTIONS(2821), - [anon_sym_AMP_GT_GT] = ACTIONS(1821), - [anon_sym_LT_AMP] = ACTIONS(1821), - [anon_sym_GT_AMP] = ACTIONS(1821), - [anon_sym_LT_LT] = ACTIONS(2821), - [anon_sym_LT_LT_DASH] = ACTIONS(1821), - [anon_sym_LT_LT_LT] = ACTIONS(1821), - [sym__special_characters] = ACTIONS(2821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [anon_sym_DOLLAR] = ACTIONS(2821), - [sym_raw_string] = ACTIONS(1821), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1821), - [anon_sym_BQUOTE] = ACTIONS(1821), - [anon_sym_LT_LPAREN] = ACTIONS(1821), - [anon_sym_GT_LPAREN] = ACTIONS(1821), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2821), - }, - [1100] = { - [sym_concatenation] = STATE(1680), - [sym_string] = STATE(1679), - [sym_simple_expansion] = STATE(1679), - [sym_string_expansion] = STATE(1679), - [sym_expansion] = STATE(1679), - [sym_command_substitution] = STATE(1679), - [sym_process_substitution] = STATE(1679), - [anon_sym_RBRACE] = ACTIONS(3555), - [sym__special_characters] = ACTIONS(3557), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(3559), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3561), - }, - [1101] = { - [sym_file_descriptor] = ACTIONS(1866), - [sym__concat] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_PIPE_AMP] = ACTIONS(1866), - [anon_sym_AMP_AMP] = ACTIONS(1866), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_LT] = ACTIONS(2831), - [anon_sym_GT] = ACTIONS(2831), - [anon_sym_GT_GT] = ACTIONS(1866), - [anon_sym_AMP_GT] = ACTIONS(2831), - [anon_sym_AMP_GT_GT] = ACTIONS(1866), - [anon_sym_LT_AMP] = ACTIONS(1866), - [anon_sym_GT_AMP] = ACTIONS(1866), - [anon_sym_LT_LT] = ACTIONS(2831), - [anon_sym_LT_LT_DASH] = ACTIONS(1866), - [anon_sym_LT_LT_LT] = ACTIONS(1866), - [sym__special_characters] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(2831), - [sym_raw_string] = ACTIONS(1866), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1866), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1866), - [anon_sym_BQUOTE] = ACTIONS(1866), - [anon_sym_LT_LPAREN] = ACTIONS(1866), - [anon_sym_GT_LPAREN] = ACTIONS(1866), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2831), - }, - [1102] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(3563), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1103] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(3565), - [sym_comment] = ACTIONS(56), - }, - [1104] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1684), - [anon_sym_RBRACE] = ACTIONS(3567), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1105] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1686), - [anon_sym_RBRACE] = ACTIONS(3569), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1106] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1687), - [anon_sym_RBRACE] = ACTIONS(3555), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1107] = { - [sym_file_descriptor] = ACTIONS(1910), - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(2841), - [anon_sym_PIPE_AMP] = ACTIONS(1910), - [anon_sym_AMP_AMP] = ACTIONS(1910), - [anon_sym_PIPE_PIPE] = ACTIONS(1910), - [anon_sym_LT] = ACTIONS(2841), - [anon_sym_GT] = ACTIONS(2841), - [anon_sym_GT_GT] = ACTIONS(1910), - [anon_sym_AMP_GT] = ACTIONS(2841), - [anon_sym_AMP_GT_GT] = ACTIONS(1910), - [anon_sym_LT_AMP] = ACTIONS(1910), - [anon_sym_GT_AMP] = ACTIONS(1910), - [anon_sym_LT_LT] = ACTIONS(2841), - [anon_sym_LT_LT_DASH] = ACTIONS(1910), - [anon_sym_LT_LT_LT] = ACTIONS(1910), - [sym__special_characters] = ACTIONS(2841), - [anon_sym_DQUOTE] = ACTIONS(1910), - [anon_sym_DOLLAR] = ACTIONS(2841), - [sym_raw_string] = ACTIONS(1910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1910), - [anon_sym_BQUOTE] = ACTIONS(1910), - [anon_sym_LT_LPAREN] = ACTIONS(1910), - [anon_sym_GT_LPAREN] = ACTIONS(1910), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2841), - }, - [1108] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(3571), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1109] = { - [sym_file_descriptor] = ACTIONS(1916), - [sym__concat] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(2845), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(2845), - [anon_sym_GT] = ACTIONS(2845), - [anon_sym_GT_GT] = ACTIONS(1916), - [anon_sym_AMP_GT] = ACTIONS(2845), - [anon_sym_AMP_GT_GT] = ACTIONS(1916), - [anon_sym_LT_AMP] = ACTIONS(1916), - [anon_sym_GT_AMP] = ACTIONS(1916), - [anon_sym_LT_LT] = ACTIONS(2845), - [anon_sym_LT_LT_DASH] = ACTIONS(1916), - [anon_sym_LT_LT_LT] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(2845), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(2845), - [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(56), - [sym_word] = ACTIONS(2845), - }, - [1110] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(3555), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1111] = { - [sym_file_descriptor] = ACTIONS(2064), - [sym__concat] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2847), - [anon_sym_PIPE_AMP] = ACTIONS(2064), - [anon_sym_AMP_AMP] = ACTIONS(2064), - [anon_sym_PIPE_PIPE] = ACTIONS(2064), - [anon_sym_LT] = ACTIONS(2847), - [anon_sym_GT] = ACTIONS(2847), - [anon_sym_GT_GT] = ACTIONS(2064), - [anon_sym_AMP_GT] = ACTIONS(2847), - [anon_sym_AMP_GT_GT] = ACTIONS(2064), - [anon_sym_LT_AMP] = ACTIONS(2064), - [anon_sym_GT_AMP] = ACTIONS(2064), - [anon_sym_LT_LT] = ACTIONS(2847), - [anon_sym_LT_LT_DASH] = ACTIONS(2064), - [anon_sym_LT_LT_LT] = ACTIONS(2064), - [sym__special_characters] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2847), - [sym_raw_string] = ACTIONS(2064), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2064), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2064), - [anon_sym_BQUOTE] = ACTIONS(2064), - [anon_sym_LT_LPAREN] = ACTIONS(2064), - [anon_sym_GT_LPAREN] = ACTIONS(2064), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2847), - }, - [1112] = { - [sym_file_descriptor] = ACTIONS(2228), - [sym__concat] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_PIPE_AMP] = ACTIONS(2228), - [anon_sym_AMP_AMP] = ACTIONS(2228), - [anon_sym_PIPE_PIPE] = ACTIONS(2228), - [anon_sym_LT] = ACTIONS(2849), - [anon_sym_GT] = ACTIONS(2849), - [anon_sym_GT_GT] = ACTIONS(2228), - [anon_sym_AMP_GT] = ACTIONS(2849), - [anon_sym_AMP_GT_GT] = ACTIONS(2228), - [anon_sym_LT_AMP] = ACTIONS(2228), - [anon_sym_GT_AMP] = ACTIONS(2228), - [anon_sym_LT_LT] = ACTIONS(2849), - [anon_sym_LT_LT_DASH] = ACTIONS(2228), - [anon_sym_LT_LT_LT] = ACTIONS(2228), - [sym__special_characters] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2228), - [anon_sym_DOLLAR] = ACTIONS(2849), - [sym_raw_string] = ACTIONS(2228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2228), - [anon_sym_BQUOTE] = ACTIONS(2228), - [anon_sym_LT_LPAREN] = ACTIONS(2228), - [anon_sym_GT_LPAREN] = ACTIONS(2228), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2849), - }, - [1113] = { - [sym_compound_statement] = STATE(1689), - [anon_sym_LBRACE] = ACTIONS(1960), - [sym_comment] = ACTIONS(56), - }, - [1114] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(3308), - [anon_sym_PIPE_AMP] = ACTIONS(3310), - [anon_sym_AMP_AMP] = ACTIONS(3310), - [anon_sym_PIPE_PIPE] = ACTIONS(3310), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(3310), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1115] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_BQUOTE] = ACTIONS(3312), - [sym_comment] = ACTIONS(56), - }, - [1116] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(3312), - [anon_sym_PIPE_PIPE] = ACTIONS(3312), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1117] = { - [sym_concatenation] = STATE(1599), - [sym_string] = STATE(1691), - [sym_simple_expansion] = STATE(1691), - [sym_string_expansion] = STATE(1691), - [sym_expansion] = STATE(1691), - [sym_command_substitution] = STATE(1691), - [sym_process_substitution] = STATE(1691), - [sym__special_characters] = ACTIONS(3573), - [anon_sym_DQUOTE] = ACTIONS(2206), - [anon_sym_DOLLAR] = ACTIONS(2208), - [sym_raw_string] = ACTIONS(3575), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2212), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2214), - [anon_sym_BQUOTE] = ACTIONS(2216), - [anon_sym_LT_LPAREN] = ACTIONS(2218), - [anon_sym_GT_LPAREN] = ACTIONS(2218), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3577), - }, - [1118] = { - [aux_sym_concatenation_repeat1] = STATE(1693), - [sym_file_descriptor] = ACTIONS(728), - [sym__concat] = ACTIONS(3579), - [anon_sym_PIPE] = ACTIONS(732), - [anon_sym_PIPE_AMP] = ACTIONS(728), - [anon_sym_AMP_AMP] = ACTIONS(728), - [anon_sym_PIPE_PIPE] = ACTIONS(728), - [anon_sym_LT] = ACTIONS(732), - [anon_sym_GT] = ACTIONS(732), - [anon_sym_GT_GT] = ACTIONS(728), - [anon_sym_AMP_GT] = ACTIONS(732), - [anon_sym_AMP_GT_GT] = ACTIONS(728), - [anon_sym_LT_AMP] = ACTIONS(728), - [anon_sym_GT_AMP] = ACTIONS(728), - [anon_sym_LT_LT] = ACTIONS(732), - [anon_sym_LT_LT_DASH] = ACTIONS(728), - [anon_sym_LT_LT_LT] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(728), - [sym_comment] = ACTIONS(56), - }, - [1119] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(1695), - [anon_sym_DQUOTE] = ACTIONS(3581), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [1120] = { - [sym_string] = STATE(1698), - [anon_sym_DQUOTE] = ACTIONS(2206), - [anon_sym_DOLLAR] = ACTIONS(3583), - [anon_sym_POUND] = ACTIONS(3583), - [anon_sym_DASH] = ACTIONS(3583), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3585), - [anon_sym_STAR] = ACTIONS(3583), - [anon_sym_AT] = ACTIONS(3583), - [anon_sym_QMARK] = ACTIONS(3583), - [anon_sym_0] = ACTIONS(3587), - [anon_sym__] = ACTIONS(3587), - }, - [1121] = { - [aux_sym_concatenation_repeat1] = STATE(1693), - [sym_file_descriptor] = ACTIONS(742), - [sym__concat] = ACTIONS(3579), - [anon_sym_PIPE] = ACTIONS(744), - [anon_sym_PIPE_AMP] = ACTIONS(742), - [anon_sym_AMP_AMP] = ACTIONS(742), - [anon_sym_PIPE_PIPE] = ACTIONS(742), - [anon_sym_LT] = ACTIONS(744), - [anon_sym_GT] = ACTIONS(744), - [anon_sym_GT_GT] = ACTIONS(742), - [anon_sym_AMP_GT] = ACTIONS(744), - [anon_sym_AMP_GT_GT] = ACTIONS(742), - [anon_sym_LT_AMP] = ACTIONS(742), - [anon_sym_GT_AMP] = ACTIONS(742), - [anon_sym_LT_LT] = ACTIONS(744), - [anon_sym_LT_LT_DASH] = ACTIONS(742), - [anon_sym_LT_LT_LT] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [sym_comment] = ACTIONS(56), - }, - [1122] = { - [sym_subscript] = STATE(1703), - [sym_variable_name] = ACTIONS(3589), - [anon_sym_DOLLAR] = ACTIONS(3591), - [anon_sym_POUND] = ACTIONS(3593), - [anon_sym_DASH] = ACTIONS(3591), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3595), - [anon_sym_STAR] = ACTIONS(3591), - [anon_sym_AT] = ACTIONS(3591), - [anon_sym_QMARK] = ACTIONS(3591), - [anon_sym_0] = ACTIONS(3597), - [anon_sym__] = ACTIONS(3597), - }, - [1123] = { - [sym_for_statement] = STATE(1704), - [sym_while_statement] = STATE(1704), - [sym_if_statement] = STATE(1704), - [sym_case_statement] = STATE(1704), - [sym_function_definition] = STATE(1704), - [sym_subshell] = STATE(1704), - [sym_pipeline] = STATE(1704), - [sym_list] = STATE(1704), - [sym_bracket_command] = STATE(1704), - [sym_command] = STATE(1704), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1705), - [sym_declaration_command] = STATE(1704), - [sym_unset_command] = STATE(1704), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [1124] = { - [sym_for_statement] = STATE(1706), - [sym_while_statement] = STATE(1706), - [sym_if_statement] = STATE(1706), - [sym_case_statement] = STATE(1706), - [sym_function_definition] = STATE(1706), - [sym_subshell] = STATE(1706), - [sym_pipeline] = STATE(1706), - [sym_list] = STATE(1706), - [sym_bracket_command] = STATE(1706), - [sym_command] = STATE(1706), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(1707), - [sym_declaration_command] = STATE(1706), - [sym_unset_command] = STATE(1706), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), - }, - [1125] = { - [sym_for_statement] = STATE(1708), - [sym_while_statement] = STATE(1708), - [sym_if_statement] = STATE(1708), - [sym_case_statement] = STATE(1708), - [sym_function_definition] = STATE(1708), - [sym_subshell] = STATE(1708), - [sym_pipeline] = STATE(1708), - [sym_list] = STATE(1708), - [sym_bracket_command] = STATE(1708), - [sym_command] = STATE(1708), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1709), - [sym_declaration_command] = STATE(1708), - [sym_unset_command] = STATE(1708), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [1126] = { - [aux_sym_concatenation_repeat1] = STATE(1693), - [sym_file_descriptor] = ACTIONS(2282), - [sym__concat] = ACTIONS(3579), - [anon_sym_PIPE] = ACTIONS(3346), - [anon_sym_PIPE_AMP] = ACTIONS(2282), - [anon_sym_AMP_AMP] = ACTIONS(2282), - [anon_sym_PIPE_PIPE] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(3346), - [anon_sym_GT] = ACTIONS(3346), - [anon_sym_GT_GT] = ACTIONS(2282), - [anon_sym_AMP_GT] = ACTIONS(3346), - [anon_sym_AMP_GT_GT] = ACTIONS(2282), - [anon_sym_LT_AMP] = ACTIONS(2282), - [anon_sym_GT_AMP] = ACTIONS(2282), - [anon_sym_LT_LT] = ACTIONS(3346), - [anon_sym_LT_LT_DASH] = ACTIONS(2282), - [anon_sym_LT_LT_LT] = ACTIONS(2282), - [anon_sym_BQUOTE] = ACTIONS(2282), - [sym_comment] = ACTIONS(56), - }, - [1127] = { - [aux_sym_concatenation_repeat1] = STATE(1693), - [sym_file_descriptor] = ACTIONS(2286), - [sym__concat] = ACTIONS(3579), - [anon_sym_PIPE] = ACTIONS(3348), - [anon_sym_PIPE_AMP] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(3348), - [anon_sym_GT] = ACTIONS(3348), - [anon_sym_GT_GT] = ACTIONS(2286), - [anon_sym_AMP_GT] = ACTIONS(3348), - [anon_sym_AMP_GT_GT] = ACTIONS(2286), - [anon_sym_LT_AMP] = ACTIONS(2286), - [anon_sym_GT_AMP] = ACTIONS(2286), - [anon_sym_LT_LT] = ACTIONS(3348), - [anon_sym_LT_LT_DASH] = ACTIONS(2286), - [anon_sym_LT_LT_LT] = ACTIONS(2286), - [anon_sym_BQUOTE] = ACTIONS(2286), - [sym_comment] = ACTIONS(56), - }, - [1128] = { - [sym_concatenation] = STATE(528), - [sym_string] = STATE(580), - [sym_simple_expansion] = STATE(580), - [sym_string_expansion] = STATE(580), - [sym_expansion] = STATE(580), - [sym_command_substitution] = STATE(580), - [sym_process_substitution] = STATE(580), - [aux_sym_for_statement_repeat1] = STATE(1128), - [sym_file_descriptor] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(3350), - [anon_sym_PIPE_AMP] = ACTIONS(2290), - [anon_sym_AMP_AMP] = ACTIONS(2290), - [anon_sym_PIPE_PIPE] = ACTIONS(2290), - [anon_sym_LT] = ACTIONS(3350), - [anon_sym_GT] = ACTIONS(3350), - [anon_sym_GT_GT] = ACTIONS(2290), - [anon_sym_AMP_GT] = ACTIONS(3350), - [anon_sym_AMP_GT_GT] = ACTIONS(2290), - [anon_sym_LT_AMP] = ACTIONS(2290), - [anon_sym_GT_AMP] = ACTIONS(2290), - [anon_sym_LT_LT] = ACTIONS(3350), - [anon_sym_LT_LT_DASH] = ACTIONS(2290), - [anon_sym_LT_LT_LT] = ACTIONS(2290), - [sym__special_characters] = ACTIONS(3599), - [anon_sym_DQUOTE] = ACTIONS(3602), - [anon_sym_DOLLAR] = ACTIONS(3605), - [sym_raw_string] = ACTIONS(3608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3611), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3614), - [anon_sym_BQUOTE] = ACTIONS(3617), - [anon_sym_LT_LPAREN] = ACTIONS(3620), - [anon_sym_GT_LPAREN] = ACTIONS(3620), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3623), - }, - [1129] = { - [sym_file_redirect] = STATE(527), - [sym_heredoc_redirect] = STATE(527), - [sym_herestring_redirect] = STATE(527), - [aux_sym_while_statement_repeat1] = STATE(1130), - [sym_file_descriptor] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_PIPE_AMP] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_PIPE_PIPE] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_GT] = ACTIONS(1038), - [anon_sym_GT_GT] = ACTIONS(1040), - [anon_sym_AMP_GT] = ACTIONS(1038), - [anon_sym_AMP_GT_GT] = ACTIONS(1040), - [anon_sym_LT_AMP] = ACTIONS(1040), - [anon_sym_GT_AMP] = ACTIONS(1040), - [anon_sym_LT_LT] = ACTIONS(954), - [anon_sym_LT_LT_DASH] = ACTIONS(956), - [anon_sym_LT_LT_LT] = ACTIONS(1042), - [anon_sym_BQUOTE] = ACTIONS(3381), - [sym_comment] = ACTIONS(56), - }, - [1130] = { - [sym_file_redirect] = STATE(527), - [sym_heredoc_redirect] = STATE(527), - [sym_herestring_redirect] = STATE(527), - [aux_sym_while_statement_repeat1] = STATE(1130), - [sym_file_descriptor] = ACTIONS(3626), - [anon_sym_PIPE] = ACTIONS(3386), - [anon_sym_PIPE_AMP] = ACTIONS(3388), - [anon_sym_AMP_AMP] = ACTIONS(3388), - [anon_sym_PIPE_PIPE] = ACTIONS(3388), - [anon_sym_LT] = ACTIONS(3629), - [anon_sym_GT] = ACTIONS(3629), - [anon_sym_GT_GT] = ACTIONS(3632), - [anon_sym_AMP_GT] = ACTIONS(3629), - [anon_sym_AMP_GT_GT] = ACTIONS(3632), - [anon_sym_LT_AMP] = ACTIONS(3632), - [anon_sym_GT_AMP] = ACTIONS(3632), - [anon_sym_LT_LT] = ACTIONS(3396), - [anon_sym_LT_LT_DASH] = ACTIONS(3399), - [anon_sym_LT_LT_LT] = ACTIONS(3635), - [anon_sym_BQUOTE] = ACTIONS(3388), - [sym_comment] = ACTIONS(56), - }, - [1131] = { - [sym_file_redirect] = STATE(527), - [sym_heredoc_redirect] = STATE(527), - [sym_herestring_redirect] = STATE(527), - [sym_concatenation] = STATE(528), - [sym_string] = STATE(580), - [sym_simple_expansion] = STATE(580), - [sym_string_expansion] = STATE(580), - [sym_expansion] = STATE(580), - [sym_command_substitution] = STATE(580), - [sym_process_substitution] = STATE(580), - [aux_sym_for_statement_repeat1] = STATE(1128), - [aux_sym_while_statement_repeat1] = STATE(1710), - [sym_file_descriptor] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_PIPE_AMP] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_PIPE_PIPE] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_GT] = ACTIONS(1038), - [anon_sym_GT_GT] = ACTIONS(1040), - [anon_sym_AMP_GT] = ACTIONS(1038), - [anon_sym_AMP_GT_GT] = ACTIONS(1040), - [anon_sym_LT_AMP] = ACTIONS(1040), - [anon_sym_GT_AMP] = ACTIONS(1040), - [anon_sym_LT_LT] = ACTIONS(954), - [anon_sym_LT_LT_DASH] = ACTIONS(956), - [anon_sym_LT_LT_LT] = ACTIONS(1042), - [sym__special_characters] = ACTIONS(1044), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(1046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(3381), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1048), - }, - [1132] = { - [sym_file_redirect] = STATE(1711), - [sym_file_descriptor] = ACTIONS(1349), - [anon_sym_PIPE] = ACTIONS(2575), - [anon_sym_SEMI_SEMI] = ACTIONS(2575), - [anon_sym_PIPE_AMP] = ACTIONS(2575), - [anon_sym_AMP_AMP] = ACTIONS(2575), - [anon_sym_PIPE_PIPE] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(1353), - [anon_sym_GT] = ACTIONS(1353), - [anon_sym_GT_GT] = ACTIONS(1353), - [anon_sym_AMP_GT] = ACTIONS(1353), - [anon_sym_AMP_GT_GT] = ACTIONS(1353), - [anon_sym_LT_AMP] = ACTIONS(1353), - [anon_sym_GT_AMP] = ACTIONS(1353), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_LF] = ACTIONS(2575), - [anon_sym_AMP] = ACTIONS(2575), - }, - [1133] = { - [aux_sym_concatenation_repeat1] = STATE(1137), - [sym_file_descriptor] = ACTIONS(1199), - [sym__concat] = ACTIONS(2242), - [anon_sym_PIPE] = ACTIONS(3638), - [anon_sym_SEMI_SEMI] = ACTIONS(3638), - [anon_sym_PIPE_AMP] = ACTIONS(3638), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_PIPE_PIPE] = ACTIONS(3638), - [anon_sym_LT] = ACTIONS(3638), - [anon_sym_GT] = ACTIONS(3638), - [anon_sym_GT_GT] = ACTIONS(3638), - [anon_sym_AMP_GT] = ACTIONS(3638), - [anon_sym_AMP_GT_GT] = ACTIONS(3638), - [anon_sym_LT_AMP] = ACTIONS(3638), - [anon_sym_GT_AMP] = ACTIONS(3638), - [anon_sym_LT_LT] = ACTIONS(3638), - [anon_sym_LT_LT_DASH] = ACTIONS(3638), - [anon_sym_LT_LT_LT] = ACTIONS(3638), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym_LF] = ACTIONS(3638), - [anon_sym_AMP] = ACTIONS(3638), - }, - [1134] = { - [aux_sym_concatenation_repeat1] = STATE(1137), - [sym_file_descriptor] = ACTIONS(1203), - [sym__concat] = ACTIONS(2242), - [anon_sym_PIPE] = ACTIONS(3640), - [anon_sym_SEMI_SEMI] = ACTIONS(3640), - [anon_sym_PIPE_AMP] = ACTIONS(3640), - [anon_sym_AMP_AMP] = ACTIONS(3640), - [anon_sym_PIPE_PIPE] = ACTIONS(3640), - [anon_sym_LT] = ACTIONS(3640), - [anon_sym_GT] = ACTIONS(3640), - [anon_sym_GT_GT] = ACTIONS(3640), - [anon_sym_AMP_GT] = ACTIONS(3640), - [anon_sym_AMP_GT_GT] = ACTIONS(3640), - [anon_sym_LT_AMP] = ACTIONS(3640), - [anon_sym_GT_AMP] = ACTIONS(3640), - [anon_sym_LT_LT] = ACTIONS(3640), - [anon_sym_LT_LT_DASH] = ACTIONS(3640), - [anon_sym_LT_LT_LT] = ACTIONS(3640), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3640), - [anon_sym_LF] = ACTIONS(3640), - [anon_sym_AMP] = ACTIONS(3640), - }, - [1135] = { - [sym_file_descriptor] = ACTIONS(1203), - [anon_sym_PIPE] = ACTIONS(3640), - [anon_sym_RPAREN] = ACTIONS(3640), - [anon_sym_SEMI_SEMI] = ACTIONS(3640), - [anon_sym_PIPE_AMP] = ACTIONS(3640), - [anon_sym_AMP_AMP] = ACTIONS(3640), - [anon_sym_PIPE_PIPE] = ACTIONS(3640), - [anon_sym_LT] = ACTIONS(3640), - [anon_sym_GT] = ACTIONS(3640), - [anon_sym_GT_GT] = ACTIONS(3640), - [anon_sym_AMP_GT] = ACTIONS(3640), - [anon_sym_AMP_GT_GT] = ACTIONS(3640), - [anon_sym_LT_AMP] = ACTIONS(3640), - [anon_sym_GT_AMP] = ACTIONS(3640), - [anon_sym_LT_LT] = ACTIONS(3640), - [anon_sym_LT_LT_DASH] = ACTIONS(3640), - [anon_sym_LT_LT_LT] = ACTIONS(3640), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3640), - [anon_sym_LF] = ACTIONS(3640), - [anon_sym_AMP] = ACTIONS(3640), - }, - [1136] = { - [sym_string] = STATE(1712), - [sym_simple_expansion] = STATE(1712), - [sym_string_expansion] = STATE(1712), - [sym_expansion] = STATE(1712), - [sym_command_substitution] = STATE(1712), - [sym_process_substitution] = STATE(1712), - [sym__special_characters] = ACTIONS(3642), - [anon_sym_DQUOTE] = ACTIONS(1070), - [anon_sym_DOLLAR] = ACTIONS(1072), - [sym_raw_string] = ACTIONS(3644), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1076), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1078), - [anon_sym_BQUOTE] = ACTIONS(1080), - [anon_sym_LT_LPAREN] = ACTIONS(1082), - [anon_sym_GT_LPAREN] = ACTIONS(1082), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3642), - }, - [1137] = { - [aux_sym_concatenation_repeat1] = STATE(1713), - [sym_file_descriptor] = ACTIONS(760), - [sym__concat] = ACTIONS(2242), - [anon_sym_PIPE] = ACTIONS(762), - [anon_sym_SEMI_SEMI] = ACTIONS(762), - [anon_sym_PIPE_AMP] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(762), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_LT] = ACTIONS(762), - [anon_sym_GT] = ACTIONS(762), - [anon_sym_GT_GT] = ACTIONS(762), - [anon_sym_AMP_GT] = ACTIONS(762), - [anon_sym_AMP_GT_GT] = ACTIONS(762), - [anon_sym_LT_AMP] = ACTIONS(762), - [anon_sym_GT_AMP] = ACTIONS(762), - [anon_sym_LT_LT] = ACTIONS(762), - [anon_sym_LT_LT_DASH] = ACTIONS(762), - [anon_sym_LT_LT_LT] = ACTIONS(762), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(762), - [anon_sym_LF] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(762), - }, - [1138] = { - [sym_file_descriptor] = ACTIONS(764), - [sym__concat] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_SEMI_SEMI] = ACTIONS(766), - [anon_sym_PIPE_AMP] = ACTIONS(766), - [anon_sym_AMP_AMP] = ACTIONS(766), - [anon_sym_PIPE_PIPE] = ACTIONS(766), - [anon_sym_LT] = ACTIONS(766), - [anon_sym_GT] = ACTIONS(766), - [anon_sym_GT_GT] = ACTIONS(766), - [anon_sym_AMP_GT] = ACTIONS(766), - [anon_sym_AMP_GT_GT] = ACTIONS(766), - [anon_sym_LT_AMP] = ACTIONS(766), - [anon_sym_GT_AMP] = ACTIONS(766), - [anon_sym_LT_LT] = ACTIONS(766), - [anon_sym_LT_LT_DASH] = ACTIONS(766), - [anon_sym_LT_LT_LT] = ACTIONS(766), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(766), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(766), - }, - [1139] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(3646), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [1140] = { - [sym_file_descriptor] = ACTIONS(796), - [sym__concat] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(798), - [anon_sym_SEMI_SEMI] = ACTIONS(798), - [anon_sym_PIPE_AMP] = ACTIONS(798), - [anon_sym_AMP_AMP] = ACTIONS(798), - [anon_sym_PIPE_PIPE] = ACTIONS(798), - [anon_sym_LT] = ACTIONS(798), - [anon_sym_GT] = ACTIONS(798), - [anon_sym_GT_GT] = ACTIONS(798), - [anon_sym_AMP_GT] = ACTIONS(798), - [anon_sym_AMP_GT_GT] = ACTIONS(798), - [anon_sym_LT_AMP] = ACTIONS(798), - [anon_sym_GT_AMP] = ACTIONS(798), - [anon_sym_LT_LT] = ACTIONS(798), - [anon_sym_LT_LT_DASH] = ACTIONS(798), - [anon_sym_LT_LT_LT] = ACTIONS(798), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(798), - [anon_sym_LF] = ACTIONS(798), - [anon_sym_AMP] = ACTIONS(798), - }, - [1141] = { - [sym_file_descriptor] = ACTIONS(800), - [sym__concat] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(802), - [anon_sym_SEMI_SEMI] = ACTIONS(802), - [anon_sym_PIPE_AMP] = ACTIONS(802), - [anon_sym_AMP_AMP] = ACTIONS(802), - [anon_sym_PIPE_PIPE] = ACTIONS(802), - [anon_sym_LT] = ACTIONS(802), - [anon_sym_GT] = ACTIONS(802), - [anon_sym_GT_GT] = ACTIONS(802), - [anon_sym_AMP_GT] = ACTIONS(802), - [anon_sym_AMP_GT_GT] = ACTIONS(802), - [anon_sym_LT_AMP] = ACTIONS(802), - [anon_sym_GT_AMP] = ACTIONS(802), - [anon_sym_LT_LT] = ACTIONS(802), - [anon_sym_LT_LT_DASH] = ACTIONS(802), - [anon_sym_LT_LT_LT] = ACTIONS(802), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(802), - [anon_sym_LF] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(802), - }, - [1142] = { - [sym_file_descriptor] = ACTIONS(804), - [sym__concat] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(806), - [anon_sym_SEMI_SEMI] = ACTIONS(806), - [anon_sym_PIPE_AMP] = ACTIONS(806), - [anon_sym_AMP_AMP] = ACTIONS(806), - [anon_sym_PIPE_PIPE] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(806), - [anon_sym_GT] = ACTIONS(806), - [anon_sym_GT_GT] = ACTIONS(806), - [anon_sym_AMP_GT] = ACTIONS(806), - [anon_sym_AMP_GT_GT] = ACTIONS(806), - [anon_sym_LT_AMP] = ACTIONS(806), - [anon_sym_GT_AMP] = ACTIONS(806), - [anon_sym_LT_LT] = ACTIONS(806), - [anon_sym_LT_LT_DASH] = ACTIONS(806), - [anon_sym_LT_LT_LT] = ACTIONS(806), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(806), - }, - [1143] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(3648), - [sym_comment] = ACTIONS(56), - }, - [1144] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1717), - [anon_sym_RBRACE] = ACTIONS(3650), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1145] = { - [sym_subscript] = STATE(1721), - [sym_variable_name] = ACTIONS(3652), - [anon_sym_DOLLAR] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3654), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3656), - [anon_sym_STAR] = ACTIONS(3654), - [anon_sym_AT] = ACTIONS(3654), - [anon_sym_QMARK] = ACTIONS(3654), - [anon_sym_0] = ACTIONS(3658), - [anon_sym__] = ACTIONS(3658), - }, - [1146] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1723), - [anon_sym_RBRACE] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1147] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1725), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1148] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3664), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [1149] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3664), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1150] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(3664), - [sym_comment] = ACTIONS(56), - }, - [1151] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(3664), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1152] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3666), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [1153] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3666), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1154] = { - [sym__heredoc_middle] = ACTIONS(3668), - [sym__heredoc_end] = ACTIONS(3668), - [anon_sym_DOLLAR] = ACTIONS(3670), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3668), - [sym_comment] = ACTIONS(56), - }, - [1155] = { - [sym_file_descriptor] = ACTIONS(3672), - [anon_sym_PIPE] = ACTIONS(3674), - [anon_sym_RPAREN] = ACTIONS(3674), - [anon_sym_SEMI_SEMI] = ACTIONS(3674), - [anon_sym_PIPE_AMP] = ACTIONS(3674), - [anon_sym_AMP_AMP] = ACTIONS(3674), - [anon_sym_PIPE_PIPE] = ACTIONS(3674), - [anon_sym_LT] = ACTIONS(3674), - [anon_sym_GT] = ACTIONS(3674), - [anon_sym_GT_GT] = ACTIONS(3674), - [anon_sym_AMP_GT] = ACTIONS(3674), - [anon_sym_AMP_GT_GT] = ACTIONS(3674), - [anon_sym_LT_AMP] = ACTIONS(3674), - [anon_sym_GT_AMP] = ACTIONS(3674), - [anon_sym_LT_LT] = ACTIONS(3674), - [anon_sym_LT_LT_DASH] = ACTIONS(3674), - [anon_sym_LT_LT_LT] = ACTIONS(3674), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3674), - [anon_sym_LF] = ACTIONS(3674), - [anon_sym_AMP] = ACTIONS(3674), - }, - [1156] = { - [anon_sym_DOLLAR] = ACTIONS(3676), - [anon_sym_POUND] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3678), - [anon_sym_STAR] = ACTIONS(3676), - [anon_sym_AT] = ACTIONS(3676), - [anon_sym_QMARK] = ACTIONS(3676), - [anon_sym_0] = ACTIONS(3680), - [anon_sym__] = ACTIONS(3680), - }, - [1157] = { - [sym_subscript] = STATE(1734), - [sym_variable_name] = ACTIONS(3682), - [anon_sym_DOLLAR] = ACTIONS(3684), - [anon_sym_POUND] = ACTIONS(3686), - [anon_sym_DASH] = ACTIONS(3684), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3688), - [anon_sym_STAR] = ACTIONS(3684), - [anon_sym_AT] = ACTIONS(3684), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_0] = ACTIONS(3690), - [anon_sym__] = ACTIONS(3690), - }, - [1158] = { - [sym_simple_expansion] = STATE(1154), - [sym_expansion] = STATE(1154), - [aux_sym_heredoc_repeat1] = STATE(1736), - [sym__heredoc_middle] = ACTIONS(2270), - [sym__heredoc_end] = ACTIONS(3692), - [anon_sym_DOLLAR] = ACTIONS(2274), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2276), - [sym_comment] = ACTIONS(56), - }, - [1159] = { - [aux_sym_concatenation_repeat1] = STATE(406), - [sym_file_descriptor] = ACTIONS(1259), - [sym__concat] = ACTIONS(730), - [sym_variable_name] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(3090), - [anon_sym_GT] = ACTIONS(3090), - [anon_sym_GT_GT] = ACTIONS(1259), - [anon_sym_AMP_GT] = ACTIONS(3090), - [anon_sym_AMP_GT_GT] = ACTIONS(1259), - [anon_sym_LT_AMP] = ACTIONS(1259), - [anon_sym_GT_AMP] = ACTIONS(1259), - [sym__special_characters] = ACTIONS(3090), - [anon_sym_DQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(3090), - [sym_raw_string] = ACTIONS(1259), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1259), - [anon_sym_BQUOTE] = ACTIONS(1259), - [anon_sym_LT_LPAREN] = ACTIONS(1259), - [anon_sym_GT_LPAREN] = ACTIONS(1259), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3090), - }, - [1160] = { - [aux_sym_concatenation_repeat1] = STATE(406), - [sym_file_descriptor] = ACTIONS(1235), - [sym__concat] = ACTIONS(730), - [sym_variable_name] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(3084), - [anon_sym_GT] = ACTIONS(3084), - [anon_sym_GT_GT] = ACTIONS(1235), - [anon_sym_AMP_GT] = ACTIONS(3084), - [anon_sym_AMP_GT_GT] = ACTIONS(1235), - [anon_sym_LT_AMP] = ACTIONS(1235), - [anon_sym_GT_AMP] = ACTIONS(1235), - [sym__special_characters] = ACTIONS(3084), - [anon_sym_DQUOTE] = ACTIONS(1235), - [anon_sym_DOLLAR] = ACTIONS(3084), - [sym_raw_string] = ACTIONS(1235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), - [anon_sym_BQUOTE] = ACTIONS(1235), - [anon_sym_LT_LPAREN] = ACTIONS(1235), - [anon_sym_GT_LPAREN] = ACTIONS(1235), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3084), - }, - [1161] = { - [sym_file_redirect] = STATE(202), - [sym_heredoc_redirect] = STATE(202), - [sym_herestring_redirect] = STATE(202), - [aux_sym_while_statement_repeat1] = STATE(608), - [sym_file_descriptor] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_SEMI_SEMI] = ACTIONS(3694), - [anon_sym_PIPE_AMP] = ACTIONS(3694), - [anon_sym_AMP_AMP] = ACTIONS(3694), - [anon_sym_PIPE_PIPE] = ACTIONS(3694), - [anon_sym_LT] = ACTIONS(346), - [anon_sym_GT] = ACTIONS(346), - [anon_sym_GT_GT] = ACTIONS(346), - [anon_sym_AMP_GT] = ACTIONS(346), - [anon_sym_AMP_GT_GT] = ACTIONS(346), - [anon_sym_LT_AMP] = ACTIONS(346), - [anon_sym_GT_AMP] = ACTIONS(346), - [anon_sym_LT_LT] = ACTIONS(348), - [anon_sym_LT_LT_DASH] = ACTIONS(348), - [anon_sym_LT_LT_LT] = ACTIONS(350), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3694), - [anon_sym_LF] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3694), - }, - [1162] = { - [sym__concat] = ACTIONS(3696), - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_PLUS_EQ] = ACTIONS(3698), - [sym_comment] = ACTIONS(56), - }, - [1163] = { - [sym__concat] = ACTIONS(1790), - [anon_sym_RBRACK] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - }, - [1164] = { - [anon_sym_EQ] = ACTIONS(3698), - [anon_sym_PLUS_EQ] = ACTIONS(3698), - [sym_comment] = ACTIONS(56), - }, - [1165] = { - [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), - [sym__special_characters] = ACTIONS(2346), - [anon_sym_DQUOTE] = ACTIONS(390), - [anon_sym_DOLLAR] = ACTIONS(392), - [sym_raw_string] = ACTIONS(2344), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(398), - [anon_sym_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2346), - }, - [1166] = { - [aux_sym_concatenation_repeat1] = STATE(1166), - [sym__concat] = ACTIONS(3700), - [anon_sym_RBRACK] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - }, - [1167] = { - [sym__concat] = ACTIONS(1821), - [anon_sym_RBRACK] = ACTIONS(1821), - [sym_comment] = ACTIONS(56), - }, - [1168] = { - [sym__concat] = ACTIONS(3703), - [anon_sym_EQ] = ACTIONS(3705), - [anon_sym_PLUS_EQ] = ACTIONS(3705), - [sym_comment] = ACTIONS(56), - }, - [1169] = { - [anon_sym_EQ] = ACTIONS(3705), - [anon_sym_PLUS_EQ] = ACTIONS(3705), - [sym_comment] = ACTIONS(56), - }, - [1170] = { - [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(3707), - [sym__special_characters] = ACTIONS(3709), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(3711), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3713), - }, - [1171] = { - [sym__concat] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [sym_comment] = ACTIONS(56), - }, - [1172] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(3715), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1173] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(3717), - [sym_comment] = ACTIONS(56), - }, - [1174] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1746), - [anon_sym_RBRACE] = ACTIONS(3719), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1175] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1748), - [anon_sym_RBRACE] = ACTIONS(3721), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1176] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1749), - [anon_sym_RBRACE] = ACTIONS(3707), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1177] = { - [sym__concat] = ACTIONS(1910), - [anon_sym_RBRACK] = ACTIONS(1910), - [sym_comment] = ACTIONS(56), - }, - [1178] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(3723), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1179] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1916), - [sym_comment] = ACTIONS(56), - }, - [1180] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(3707), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1181] = { - [sym__concat] = ACTIONS(2064), - [anon_sym_RBRACK] = ACTIONS(2064), - [sym_comment] = ACTIONS(56), - }, - [1182] = { - [sym__concat] = ACTIONS(2228), - [anon_sym_RBRACK] = ACTIONS(2228), - [sym_comment] = ACTIONS(56), - }, - [1183] = { - [sym_string] = STATE(1751), - [sym_simple_expansion] = STATE(1751), - [sym_string_expansion] = STATE(1751), - [sym_expansion] = STATE(1751), - [sym_command_substitution] = STATE(1751), - [sym_process_substitution] = STATE(1751), - [sym__special_characters] = ACTIONS(3725), - [anon_sym_DQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1245), - [sym_raw_string] = ACTIONS(3727), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1249), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), - [anon_sym_BQUOTE] = ACTIONS(1253), - [anon_sym_LT_LPAREN] = ACTIONS(1255), - [anon_sym_GT_LPAREN] = ACTIONS(1255), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3725), - }, - [1184] = { - [aux_sym_concatenation_repeat1] = STATE(1752), - [sym__concat] = ACTIONS(2386), - [anon_sym_RPAREN] = ACTIONS(760), - [sym__special_characters] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(760), - [anon_sym_DOLLAR] = ACTIONS(1501), - [sym_raw_string] = ACTIONS(760), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(760), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(760), - [anon_sym_BQUOTE] = ACTIONS(760), - [anon_sym_LT_LPAREN] = ACTIONS(760), - [anon_sym_GT_LPAREN] = ACTIONS(760), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1501), - }, - [1185] = { - [sym__concat] = ACTIONS(764), - [anon_sym_RPAREN] = ACTIONS(764), - [sym__special_characters] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(1503), - [sym_raw_string] = ACTIONS(764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(764), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(764), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_LT_LPAREN] = ACTIONS(764), - [anon_sym_GT_LPAREN] = ACTIONS(764), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1503), - }, - [1186] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(3729), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [1187] = { - [sym__concat] = ACTIONS(796), - [anon_sym_RPAREN] = ACTIONS(796), - [sym__special_characters] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(1507), - [sym_raw_string] = ACTIONS(796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [anon_sym_LT_LPAREN] = ACTIONS(796), - [anon_sym_GT_LPAREN] = ACTIONS(796), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1507), - }, - [1188] = { - [sym__concat] = ACTIONS(800), - [anon_sym_RPAREN] = ACTIONS(800), - [sym__special_characters] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR] = ACTIONS(1509), - [sym_raw_string] = ACTIONS(800), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(800), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(800), - [anon_sym_BQUOTE] = ACTIONS(800), - [anon_sym_LT_LPAREN] = ACTIONS(800), - [anon_sym_GT_LPAREN] = ACTIONS(800), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1509), - }, - [1189] = { - [sym__concat] = ACTIONS(804), - [anon_sym_RPAREN] = ACTIONS(804), - [sym__special_characters] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(804), - [anon_sym_DOLLAR] = ACTIONS(1511), - [sym_raw_string] = ACTIONS(804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(804), - [anon_sym_BQUOTE] = ACTIONS(804), - [anon_sym_LT_LPAREN] = ACTIONS(804), - [anon_sym_GT_LPAREN] = ACTIONS(804), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1511), - }, - [1190] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(3731), - [sym_comment] = ACTIONS(56), - }, - [1191] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1756), - [anon_sym_RBRACE] = ACTIONS(3733), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1192] = { - [sym_subscript] = STATE(1760), - [sym_variable_name] = ACTIONS(3735), - [anon_sym_DOLLAR] = ACTIONS(3737), - [anon_sym_DASH] = ACTIONS(3737), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3739), - [anon_sym_STAR] = ACTIONS(3737), - [anon_sym_AT] = ACTIONS(3737), - [anon_sym_QMARK] = ACTIONS(3737), - [anon_sym_0] = ACTIONS(3741), - [anon_sym__] = ACTIONS(3741), - }, - [1193] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1762), - [anon_sym_RBRACE] = ACTIONS(3743), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1194] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1764), - [anon_sym_RBRACE] = ACTIONS(3745), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1195] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3747), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [1196] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3747), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1197] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(3747), - [sym_comment] = ACTIONS(56), - }, - [1198] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(3747), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1199] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3749), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [1200] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3749), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1201] = { - [sym_file_descriptor] = ACTIONS(3751), - [sym_variable_name] = ACTIONS(3751), - [anon_sym_PIPE] = ACTIONS(3753), - [anon_sym_RPAREN] = ACTIONS(3753), - [anon_sym_SEMI_SEMI] = ACTIONS(3753), - [anon_sym_PIPE_AMP] = ACTIONS(3753), - [anon_sym_AMP_AMP] = ACTIONS(3753), - [anon_sym_PIPE_PIPE] = ACTIONS(3753), - [anon_sym_LT] = ACTIONS(3753), - [anon_sym_GT] = ACTIONS(3753), - [anon_sym_GT_GT] = ACTIONS(3753), - [anon_sym_AMP_GT] = ACTIONS(3753), - [anon_sym_AMP_GT_GT] = ACTIONS(3753), - [anon_sym_LT_AMP] = ACTIONS(3753), - [anon_sym_GT_AMP] = ACTIONS(3753), - [sym__special_characters] = ACTIONS(3753), - [anon_sym_DQUOTE] = ACTIONS(3753), - [anon_sym_DOLLAR] = ACTIONS(3753), - [sym_raw_string] = ACTIONS(3753), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3753), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3753), - [anon_sym_BQUOTE] = ACTIONS(3753), - [anon_sym_LT_LPAREN] = ACTIONS(3753), - [anon_sym_GT_LPAREN] = ACTIONS(3753), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3753), - [anon_sym_SEMI] = ACTIONS(3753), - [anon_sym_LF] = ACTIONS(3753), - [anon_sym_AMP] = ACTIONS(3753), - }, - [1202] = { - [sym_concatenation] = STATE(642), - [sym_string] = STATE(637), - [sym_simple_expansion] = STATE(637), - [sym_string_expansion] = STATE(637), - [sym_expansion] = STATE(637), - [sym_command_substitution] = STATE(637), - [sym_process_substitution] = STATE(637), - [aux_sym_for_statement_repeat1] = STATE(1202), - [anon_sym_RPAREN] = ACTIONS(2290), - [sym__special_characters] = ACTIONS(3755), - [anon_sym_DQUOTE] = ACTIONS(3758), - [anon_sym_DOLLAR] = ACTIONS(3761), - [sym_raw_string] = ACTIONS(3764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3767), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3770), - [anon_sym_BQUOTE] = ACTIONS(3773), - [anon_sym_LT_LPAREN] = ACTIONS(3776), - [anon_sym_GT_LPAREN] = ACTIONS(3776), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3779), - }, - [1203] = { - [sym_file_descriptor] = ACTIONS(1790), - [sym__concat] = ACTIONS(1790), - [sym_variable_name] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [anon_sym_PIPE_AMP] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_GT_GT] = ACTIONS(1792), - [anon_sym_AMP_GT] = ACTIONS(1792), - [anon_sym_AMP_GT_GT] = ACTIONS(1792), - [anon_sym_LT_AMP] = ACTIONS(1792), - [anon_sym_GT_AMP] = ACTIONS(1792), - [sym__special_characters] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1792), - [sym_raw_string] = ACTIONS(1792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1792), - [anon_sym_LT_LPAREN] = ACTIONS(1792), - [anon_sym_GT_LPAREN] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - }, - [1204] = { - [aux_sym_concatenation_repeat1] = STATE(1204), - [sym_file_descriptor] = ACTIONS(1790), - [sym__concat] = ACTIONS(3782), - [sym_variable_name] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [anon_sym_PIPE_AMP] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_GT_GT] = ACTIONS(1792), - [anon_sym_AMP_GT] = ACTIONS(1792), - [anon_sym_AMP_GT_GT] = ACTIONS(1792), - [anon_sym_LT_AMP] = ACTIONS(1792), - [anon_sym_GT_AMP] = ACTIONS(1792), - [sym__special_characters] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1792), - [sym_raw_string] = ACTIONS(1792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1792), - [anon_sym_LT_LPAREN] = ACTIONS(1792), - [anon_sym_GT_LPAREN] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - }, - [1205] = { - [sym_file_descriptor] = ACTIONS(1821), - [sym__concat] = ACTIONS(1821), - [sym_variable_name] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_GT_GT] = ACTIONS(1823), - [anon_sym_AMP_GT] = ACTIONS(1823), - [anon_sym_AMP_GT_GT] = ACTIONS(1823), - [anon_sym_LT_AMP] = ACTIONS(1823), - [anon_sym_GT_AMP] = ACTIONS(1823), - [sym__special_characters] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1823), - [sym_raw_string] = ACTIONS(1823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), - [anon_sym_BQUOTE] = ACTIONS(1823), - [anon_sym_LT_LPAREN] = ACTIONS(1823), - [anon_sym_GT_LPAREN] = ACTIONS(1823), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LF] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - }, - [1206] = { - [sym_concatenation] = STATE(1770), - [sym_string] = STATE(1769), - [sym_simple_expansion] = STATE(1769), - [sym_string_expansion] = STATE(1769), - [sym_expansion] = STATE(1769), - [sym_command_substitution] = STATE(1769), - [sym_process_substitution] = STATE(1769), - [anon_sym_RBRACE] = ACTIONS(3785), - [sym__special_characters] = ACTIONS(3787), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(3789), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3791), - }, - [1207] = { - [sym_file_descriptor] = ACTIONS(1866), - [sym__concat] = ACTIONS(1866), - [sym_variable_name] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [anon_sym_PIPE_AMP] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_GT_GT] = ACTIONS(1868), - [anon_sym_AMP_GT] = ACTIONS(1868), - [anon_sym_AMP_GT_GT] = ACTIONS(1868), - [anon_sym_LT_AMP] = ACTIONS(1868), - [anon_sym_GT_AMP] = ACTIONS(1868), - [sym__special_characters] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1868), - [sym_raw_string] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), - [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(178), - [sym_word] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - }, - [1208] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(3793), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1209] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(3795), - [sym_comment] = ACTIONS(56), - }, - [1210] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1774), - [anon_sym_RBRACE] = ACTIONS(3797), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1211] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1776), - [anon_sym_RBRACE] = ACTIONS(3799), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1212] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1777), - [anon_sym_RBRACE] = ACTIONS(3785), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1213] = { - [sym_file_descriptor] = ACTIONS(1910), - [sym__concat] = ACTIONS(1910), - [sym_variable_name] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_SEMI_SEMI] = ACTIONS(1912), - [anon_sym_PIPE_AMP] = ACTIONS(1912), - [anon_sym_AMP_AMP] = ACTIONS(1912), - [anon_sym_PIPE_PIPE] = ACTIONS(1912), - [anon_sym_LT] = ACTIONS(1912), - [anon_sym_GT] = ACTIONS(1912), - [anon_sym_GT_GT] = ACTIONS(1912), - [anon_sym_AMP_GT] = ACTIONS(1912), - [anon_sym_AMP_GT_GT] = ACTIONS(1912), - [anon_sym_LT_AMP] = ACTIONS(1912), - [anon_sym_GT_AMP] = ACTIONS(1912), - [sym__special_characters] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [anon_sym_DOLLAR] = ACTIONS(1912), - [sym_raw_string] = ACTIONS(1912), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1912), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1912), - [anon_sym_BQUOTE] = ACTIONS(1912), - [anon_sym_LT_LPAREN] = ACTIONS(1912), - [anon_sym_GT_LPAREN] = ACTIONS(1912), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_LF] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1912), - }, - [1214] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(3801), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1215] = { - [sym_file_descriptor] = ACTIONS(1916), - [sym__concat] = ACTIONS(1916), - [sym_variable_name] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_SEMI_SEMI] = ACTIONS(1918), - [anon_sym_PIPE_AMP] = ACTIONS(1918), - [anon_sym_AMP_AMP] = ACTIONS(1918), - [anon_sym_PIPE_PIPE] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_GT] = ACTIONS(1918), - [anon_sym_GT_GT] = ACTIONS(1918), - [anon_sym_AMP_GT] = ACTIONS(1918), - [anon_sym_AMP_GT_GT] = ACTIONS(1918), - [anon_sym_LT_AMP] = ACTIONS(1918), - [anon_sym_GT_AMP] = ACTIONS(1918), - [sym__special_characters] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1918), - [anon_sym_DOLLAR] = ACTIONS(1918), - [sym_raw_string] = ACTIONS(1918), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1918), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1918), - [anon_sym_BQUOTE] = ACTIONS(1918), - [anon_sym_LT_LPAREN] = ACTIONS(1918), - [anon_sym_GT_LPAREN] = ACTIONS(1918), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1918), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_LF] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), - }, - [1216] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(3785), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1217] = { - [sym_file_descriptor] = ACTIONS(2064), - [sym__concat] = ACTIONS(2064), - [sym_variable_name] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_SEMI_SEMI] = ACTIONS(2066), - [anon_sym_PIPE_AMP] = ACTIONS(2066), - [anon_sym_AMP_AMP] = ACTIONS(2066), - [anon_sym_PIPE_PIPE] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_GT] = ACTIONS(2066), - [anon_sym_GT_GT] = ACTIONS(2066), - [anon_sym_AMP_GT] = ACTIONS(2066), - [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(2066), - [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(178), - [sym_word] = ACTIONS(2066), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_LF] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2066), - }, - [1218] = { - [sym_file_descriptor] = ACTIONS(2228), - [sym__concat] = ACTIONS(2228), - [sym_variable_name] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_SEMI_SEMI] = ACTIONS(2230), - [anon_sym_PIPE_AMP] = ACTIONS(2230), - [anon_sym_AMP_AMP] = ACTIONS(2230), - [anon_sym_PIPE_PIPE] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_AMP_GT] = ACTIONS(2230), - [anon_sym_AMP_GT_GT] = ACTIONS(2230), - [anon_sym_LT_AMP] = ACTIONS(2230), - [anon_sym_GT_AMP] = ACTIONS(2230), - [sym__special_characters] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2230), - [anon_sym_DOLLAR] = ACTIONS(2230), - [sym_raw_string] = ACTIONS(2230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2230), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2230), - [anon_sym_BQUOTE] = ACTIONS(2230), - [anon_sym_LT_LPAREN] = ACTIONS(2230), - [anon_sym_GT_LPAREN] = ACTIONS(2230), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_LF] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - }, - [1219] = { - [sym_string] = STATE(1779), - [sym_simple_expansion] = STATE(1779), - [sym_string_expansion] = STATE(1779), - [sym_expansion] = STATE(1779), - [sym_command_substitution] = STATE(1779), - [sym_process_substitution] = STATE(1779), - [sym__special_characters] = ACTIONS(3803), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1287), - [sym_raw_string] = ACTIONS(3805), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LT_LPAREN] = ACTIONS(1297), - [anon_sym_GT_LPAREN] = ACTIONS(1297), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3803), - }, - [1220] = { - [aux_sym_concatenation_repeat1] = STATE(1780), - [sym__concat] = ACTIONS(2434), - [anon_sym_SEMI_SEMI] = ACTIONS(762), - [sym__special_characters] = ACTIONS(762), - [anon_sym_DQUOTE] = ACTIONS(762), - [anon_sym_DOLLAR] = ACTIONS(762), - [sym_raw_string] = ACTIONS(762), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(762), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(762), - [anon_sym_BQUOTE] = ACTIONS(762), - [anon_sym_LT_LPAREN] = ACTIONS(762), - [anon_sym_GT_LPAREN] = ACTIONS(762), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(762), - [anon_sym_SEMI] = ACTIONS(762), - [anon_sym_LF] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(762), - }, - [1221] = { - [sym__concat] = ACTIONS(764), - [anon_sym_SEMI_SEMI] = ACTIONS(766), - [sym__special_characters] = ACTIONS(766), - [anon_sym_DQUOTE] = ACTIONS(766), - [anon_sym_DOLLAR] = ACTIONS(766), - [sym_raw_string] = ACTIONS(766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(766), - [anon_sym_BQUOTE] = ACTIONS(766), - [anon_sym_LT_LPAREN] = ACTIONS(766), - [anon_sym_GT_LPAREN] = ACTIONS(766), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(766), - [anon_sym_SEMI] = ACTIONS(766), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(766), - }, - [1222] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(3807), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [1223] = { - [sym__concat] = ACTIONS(796), - [anon_sym_SEMI_SEMI] = ACTIONS(798), - [sym__special_characters] = ACTIONS(798), - [anon_sym_DQUOTE] = ACTIONS(798), - [anon_sym_DOLLAR] = ACTIONS(798), - [sym_raw_string] = ACTIONS(798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(798), - [anon_sym_BQUOTE] = ACTIONS(798), - [anon_sym_LT_LPAREN] = ACTIONS(798), - [anon_sym_GT_LPAREN] = ACTIONS(798), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(798), - [anon_sym_SEMI] = ACTIONS(798), - [anon_sym_LF] = ACTIONS(798), - [anon_sym_AMP] = ACTIONS(798), - }, - [1224] = { - [sym__concat] = ACTIONS(800), - [anon_sym_SEMI_SEMI] = ACTIONS(802), - [sym__special_characters] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(802), - [sym_raw_string] = ACTIONS(802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(802), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(802), - [anon_sym_BQUOTE] = ACTIONS(802), - [anon_sym_LT_LPAREN] = ACTIONS(802), - [anon_sym_GT_LPAREN] = ACTIONS(802), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(802), - [anon_sym_LF] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(802), - }, - [1225] = { - [sym__concat] = ACTIONS(804), - [anon_sym_SEMI_SEMI] = ACTIONS(806), - [sym__special_characters] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(806), - [anon_sym_DOLLAR] = ACTIONS(806), - [sym_raw_string] = ACTIONS(806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(806), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(806), - [anon_sym_BQUOTE] = ACTIONS(806), - [anon_sym_LT_LPAREN] = ACTIONS(806), - [anon_sym_GT_LPAREN] = ACTIONS(806), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(806), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(806), - }, - [1226] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(3809), - [sym_comment] = ACTIONS(56), - }, - [1227] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1784), - [anon_sym_RBRACE] = ACTIONS(3811), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1228] = { - [sym_subscript] = STATE(1788), - [sym_variable_name] = ACTIONS(3813), - [anon_sym_DOLLAR] = ACTIONS(3815), - [anon_sym_DASH] = ACTIONS(3815), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3817), - [anon_sym_STAR] = ACTIONS(3815), - [anon_sym_AT] = ACTIONS(3815), - [anon_sym_QMARK] = ACTIONS(3815), - [anon_sym_0] = ACTIONS(3819), - [anon_sym__] = ACTIONS(3819), - }, - [1229] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1790), - [anon_sym_RBRACE] = ACTIONS(3821), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1230] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1792), - [anon_sym_RBRACE] = ACTIONS(3823), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1231] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3825), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [1232] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3825), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1233] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(3825), - [sym_comment] = ACTIONS(56), - }, - [1234] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(3825), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1235] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3827), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [1236] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3827), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1237] = { - [sym_do_group] = STATE(1796), - [anon_sym_do] = ACTIONS(3829), - [sym_comment] = ACTIONS(56), - }, - [1238] = { - [sym_concatenation] = STATE(670), - [sym_string] = STATE(665), - [sym_simple_expansion] = STATE(665), - [sym_string_expansion] = STATE(665), - [sym_expansion] = STATE(665), - [sym_command_substitution] = STATE(665), - [sym_process_substitution] = STATE(665), - [aux_sym_for_statement_repeat1] = STATE(1238), - [anon_sym_SEMI_SEMI] = ACTIONS(2292), - [sym__special_characters] = ACTIONS(3831), - [anon_sym_DQUOTE] = ACTIONS(3834), - [anon_sym_DOLLAR] = ACTIONS(3837), - [sym_raw_string] = ACTIONS(3840), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3843), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3846), - [anon_sym_BQUOTE] = ACTIONS(3849), - [anon_sym_LT_LPAREN] = ACTIONS(3852), - [anon_sym_GT_LPAREN] = ACTIONS(3852), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3840), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_LF] = ACTIONS(2292), - [anon_sym_AMP] = ACTIONS(2292), - }, - [1239] = { - [sym_file_descriptor] = ACTIONS(1058), - [sym_variable_name] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_done] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_function] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym_declare] = ACTIONS(1060), - [anon_sym_typeset] = ACTIONS(1060), - [anon_sym_export] = ACTIONS(1060), - [anon_sym_readonly] = ACTIONS(1060), - [anon_sym_local] = ACTIONS(1060), - [anon_sym_unset] = ACTIONS(1060), - [anon_sym_unsetenv] = ACTIONS(1060), - [anon_sym_LT] = ACTIONS(1060), - [anon_sym_GT] = ACTIONS(1060), - [anon_sym_GT_GT] = ACTIONS(1058), - [anon_sym_AMP_GT] = ACTIONS(1060), - [anon_sym_AMP_GT_GT] = ACTIONS(1058), - [anon_sym_LT_AMP] = ACTIONS(1058), - [anon_sym_GT_AMP] = ACTIONS(1058), - [sym__special_characters] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1058), - [anon_sym_DOLLAR] = ACTIONS(1060), - [sym_raw_string] = ACTIONS(1058), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1058), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1058), - [anon_sym_BQUOTE] = ACTIONS(1058), - [anon_sym_LT_LPAREN] = ACTIONS(1058), - [anon_sym_GT_LPAREN] = ACTIONS(1058), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1062), - }, - [1240] = { - [sym_file_descriptor] = ACTIONS(3855), - [anon_sym_PIPE] = ACTIONS(3857), - [anon_sym_RPAREN] = ACTIONS(3857), - [anon_sym_SEMI_SEMI] = ACTIONS(3857), - [anon_sym_PIPE_AMP] = ACTIONS(3857), - [anon_sym_AMP_AMP] = ACTIONS(3857), - [anon_sym_PIPE_PIPE] = ACTIONS(3857), - [anon_sym_LT] = ACTIONS(3857), - [anon_sym_GT] = ACTIONS(3857), - [anon_sym_GT_GT] = ACTIONS(3857), - [anon_sym_AMP_GT] = ACTIONS(3857), - [anon_sym_AMP_GT_GT] = ACTIONS(3857), - [anon_sym_LT_AMP] = ACTIONS(3857), - [anon_sym_GT_AMP] = ACTIONS(3857), - [anon_sym_LT_LT] = ACTIONS(3857), - [anon_sym_LT_LT_DASH] = ACTIONS(3857), - [anon_sym_LT_LT_LT] = ACTIONS(3857), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3857), - [anon_sym_LF] = ACTIONS(3857), - [anon_sym_AMP] = ACTIONS(3857), - }, - [1241] = { - [sym__terminated_statement] = STATE(673), - [sym_for_statement] = STATE(674), - [sym_while_statement] = STATE(674), - [sym_if_statement] = STATE(674), - [sym_case_statement] = STATE(674), - [sym_function_definition] = STATE(674), - [sym_subshell] = STATE(674), - [sym_pipeline] = STATE(674), - [sym_list] = STATE(674), - [sym_bracket_command] = STATE(674), - [sym_command] = STATE(674), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(675), - [sym_declaration_command] = STATE(674), - [sym_unset_command] = STATE(674), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1241), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1110), - [sym_variable_name] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1118), - [anon_sym_while] = ACTIONS(1121), - [anon_sym_done] = ACTIONS(3859), - [anon_sym_if] = ACTIONS(1124), - [anon_sym_case] = ACTIONS(1127), - [anon_sym_function] = ACTIONS(1130), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1136), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1139), - [anon_sym_declare] = ACTIONS(1142), - [anon_sym_typeset] = ACTIONS(1142), - [anon_sym_export] = ACTIONS(1142), - [anon_sym_readonly] = ACTIONS(1142), - [anon_sym_local] = ACTIONS(1142), - [anon_sym_unset] = ACTIONS(1145), - [anon_sym_unsetenv] = ACTIONS(1145), - [anon_sym_LT] = ACTIONS(1148), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_GT_GT] = ACTIONS(1151), - [anon_sym_AMP_GT] = ACTIONS(1148), - [anon_sym_AMP_GT_GT] = ACTIONS(1151), - [anon_sym_LT_AMP] = ACTIONS(1151), - [anon_sym_GT_AMP] = ACTIONS(1151), - [sym__special_characters] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1157), - [anon_sym_DOLLAR] = ACTIONS(1160), - [sym_raw_string] = ACTIONS(1163), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1166), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1169), - [anon_sym_BQUOTE] = ACTIONS(1172), - [anon_sym_LT_LPAREN] = ACTIONS(1175), - [anon_sym_GT_LPAREN] = ACTIONS(1175), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1178), - }, - [1242] = { - [anon_sym_then] = ACTIONS(3861), - [sym_comment] = ACTIONS(56), - }, - [1243] = { - [sym_file_descriptor] = ACTIONS(330), - [sym_variable_name] = ACTIONS(330), - [anon_sym_for] = ACTIONS(332), - [anon_sym_while] = ACTIONS(332), - [anon_sym_if] = ACTIONS(332), - [anon_sym_fi] = ACTIONS(332), - [anon_sym_case] = ACTIONS(332), - [anon_sym_function] = ACTIONS(332), - [anon_sym_LPAREN] = ACTIONS(330), - [anon_sym_LBRACK] = ACTIONS(332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(330), - [anon_sym_declare] = ACTIONS(332), - [anon_sym_typeset] = ACTIONS(332), - [anon_sym_export] = ACTIONS(332), - [anon_sym_readonly] = ACTIONS(332), - [anon_sym_local] = ACTIONS(332), - [anon_sym_unset] = ACTIONS(332), - [anon_sym_unsetenv] = ACTIONS(332), - [anon_sym_LT] = ACTIONS(332), - [anon_sym_GT] = ACTIONS(332), - [anon_sym_GT_GT] = ACTIONS(330), - [anon_sym_AMP_GT] = ACTIONS(332), - [anon_sym_AMP_GT_GT] = ACTIONS(330), - [anon_sym_LT_AMP] = ACTIONS(330), - [anon_sym_GT_AMP] = ACTIONS(330), - [sym__special_characters] = ACTIONS(334), - [anon_sym_DQUOTE] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [sym_raw_string] = ACTIONS(330), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(330), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(330), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), [anon_sym_LT_LPAREN] = ACTIONS(330), [anon_sym_GT_LPAREN] = ACTIONS(330), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), + [sym_word] = ACTIONS(332), }, - [1244] = { - [anon_sym_PIPE] = ACTIONS(336), - [anon_sym_SEMI_SEMI] = ACTIONS(3863), - [anon_sym_PIPE_AMP] = ACTIONS(336), - [anon_sym_AMP_AMP] = ACTIONS(340), - [anon_sym_PIPE_PIPE] = ACTIONS(340), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3863), - [anon_sym_LF] = ACTIONS(3863), - [anon_sym_AMP] = ACTIONS(3863), - }, - [1245] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(336), - [anon_sym_SEMI_SEMI] = ACTIONS(3863), - [anon_sym_PIPE_AMP] = ACTIONS(336), - [anon_sym_AMP_AMP] = ACTIONS(340), - [anon_sym_PIPE_PIPE] = ACTIONS(340), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_AMP_GT] = ACTIONS(370), - [anon_sym_AMP_GT_GT] = ACTIONS(370), - [anon_sym_LT_AMP] = ACTIONS(370), - [anon_sym_GT_AMP] = ACTIONS(370), - [sym__special_characters] = ACTIONS(370), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_DOLLAR] = ACTIONS(370), - [sym_raw_string] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(370), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(370), - [anon_sym_BQUOTE] = ACTIONS(370), - [anon_sym_LT_LPAREN] = ACTIONS(370), - [anon_sym_GT_LPAREN] = ACTIONS(370), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(370), - [anon_sym_SEMI] = ACTIONS(3863), - [anon_sym_LF] = ACTIONS(3863), - [anon_sym_AMP] = ACTIONS(3863), - }, - [1246] = { - [sym__terminated_statement] = STATE(1243), - [sym_for_statement] = STATE(1244), - [sym_while_statement] = STATE(1244), - [sym_if_statement] = STATE(1244), - [sym_case_statement] = STATE(1244), - [sym_function_definition] = STATE(1244), - [sym_subshell] = STATE(1244), - [sym_pipeline] = STATE(1244), - [sym_list] = STATE(1244), - [sym_bracket_command] = STATE(1244), - [sym_command] = STATE(1244), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(1245), - [sym_declaration_command] = STATE(1244), - [sym_unset_command] = STATE(1244), - [sym_subscript] = STATE(29), + [745] = { + [sym_for_statement] = STATE(1389), + [sym_while_statement] = STATE(1389), + [sym_if_statement] = STATE(1389), + [sym_case_statement] = STATE(1389), + [sym_function_definition] = STATE(1389), + [sym_subshell] = STATE(1389), + [sym_pipeline] = STATE(1389), + [sym_list] = STATE(1389), + [sym_command] = STATE(1389), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1389), + [sym_variable_assignment] = STATE(1390), + [sym_declaration_command] = STATE(1389), + [sym_unset_command] = STATE(1389), + [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1799), - [aux_sym_command_repeat1] = STATE(33), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(3865), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -39751,13403 +29499,19687 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [sym_word] = ACTIONS(300), }, - [1247] = { - [sym_file_descriptor] = ACTIONS(1058), - [sym_variable_name] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_fi] = ACTIONS(1060), - [anon_sym_elif] = ACTIONS(1060), - [anon_sym_else] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_function] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym_declare] = ACTIONS(1060), - [anon_sym_typeset] = ACTIONS(1060), - [anon_sym_export] = ACTIONS(1060), - [anon_sym_readonly] = ACTIONS(1060), - [anon_sym_local] = ACTIONS(1060), - [anon_sym_unset] = ACTIONS(1060), - [anon_sym_unsetenv] = ACTIONS(1060), - [anon_sym_LT] = ACTIONS(1060), - [anon_sym_GT] = ACTIONS(1060), - [anon_sym_GT_GT] = ACTIONS(1058), - [anon_sym_AMP_GT] = ACTIONS(1060), - [anon_sym_AMP_GT_GT] = ACTIONS(1058), - [anon_sym_LT_AMP] = ACTIONS(1058), - [anon_sym_GT_AMP] = ACTIONS(1058), - [sym__special_characters] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1058), - [anon_sym_DOLLAR] = ACTIONS(1060), - [sym_raw_string] = ACTIONS(1058), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1058), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1058), - [anon_sym_BQUOTE] = ACTIONS(1058), - [anon_sym_LT_LPAREN] = ACTIONS(1058), - [anon_sym_GT_LPAREN] = ACTIONS(1058), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1062), + [746] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(1391), + [sym_file_descriptor] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(1323), + [anon_sym_RPAREN] = ACTIONS(1323), + [anon_sym_SEMI_SEMI] = ACTIONS(1323), + [anon_sym_PIPE_AMP] = ACTIONS(1323), + [anon_sym_AMP_AMP] = ACTIONS(1323), + [anon_sym_PIPE_PIPE] = ACTIONS(1323), + [anon_sym_LT] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_AMP_GT] = ACTIONS(554), + [anon_sym_AMP_GT_GT] = ACTIONS(554), + [anon_sym_LT_AMP] = ACTIONS(554), + [anon_sym_GT_AMP] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(358), + [anon_sym_LT_LT_DASH] = ACTIONS(358), + [anon_sym_LT_LT_LT] = ACTIONS(556), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1323), + [anon_sym_LF] = ACTIONS(1323), + [anon_sym_AMP] = ACTIONS(1323), }, - [1248] = { - [anon_sym_PIPE] = ACTIONS(3867), - [anon_sym_RPAREN] = ACTIONS(3867), - [anon_sym_SEMI_SEMI] = ACTIONS(3867), - [anon_sym_PIPE_AMP] = ACTIONS(3867), - [anon_sym_AMP_AMP] = ACTIONS(3867), - [anon_sym_PIPE_PIPE] = ACTIONS(3867), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3867), - [anon_sym_LF] = ACTIONS(3867), - [anon_sym_AMP] = ACTIONS(3867), - }, - [1249] = { - [anon_sym_fi] = ACTIONS(3869), + [747] = { + [anon_sym_RPAREN] = ACTIONS(2762), [sym_comment] = ACTIONS(56), }, - [1250] = { - [sym__terminated_statement] = STATE(681), - [sym_for_statement] = STATE(682), - [sym_while_statement] = STATE(682), - [sym_if_statement] = STATE(682), - [sym_case_statement] = STATE(682), - [sym_function_definition] = STATE(682), - [sym_subshell] = STATE(682), - [sym_pipeline] = STATE(682), - [sym_list] = STATE(682), - [sym_bracket_command] = STATE(682), - [sym_command] = STATE(682), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(685), - [sym_declaration_command] = STATE(682), - [sym_unset_command] = STATE(682), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1250), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1110), - [sym_variable_name] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1118), - [anon_sym_while] = ACTIONS(1121), - [anon_sym_if] = ACTIONS(1124), - [anon_sym_fi] = ACTIONS(3859), - [anon_sym_elif] = ACTIONS(3859), - [anon_sym_else] = ACTIONS(3859), - [anon_sym_case] = ACTIONS(1127), - [anon_sym_function] = ACTIONS(1130), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1136), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1139), - [anon_sym_declare] = ACTIONS(1142), - [anon_sym_typeset] = ACTIONS(1142), - [anon_sym_export] = ACTIONS(1142), - [anon_sym_readonly] = ACTIONS(1142), - [anon_sym_local] = ACTIONS(1142), - [anon_sym_unset] = ACTIONS(1145), - [anon_sym_unsetenv] = ACTIONS(1145), - [anon_sym_LT] = ACTIONS(1148), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_GT_GT] = ACTIONS(1151), - [anon_sym_AMP_GT] = ACTIONS(1148), - [anon_sym_AMP_GT_GT] = ACTIONS(1151), - [anon_sym_LT_AMP] = ACTIONS(1151), - [anon_sym_GT_AMP] = ACTIONS(1151), - [sym__special_characters] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1157), - [anon_sym_DOLLAR] = ACTIONS(1160), - [sym_raw_string] = ACTIONS(1163), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1166), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1169), - [anon_sym_BQUOTE] = ACTIONS(1172), - [anon_sym_LT_LPAREN] = ACTIONS(1175), - [anon_sym_GT_LPAREN] = ACTIONS(1175), + [748] = { + [sym_file_redirect] = STATE(737), + [sym_file_descriptor] = ACTIONS(2764), + [anon_sym_PIPE] = ACTIONS(1377), + [anon_sym_RPAREN] = ACTIONS(1377), + [anon_sym_SEMI_SEMI] = ACTIONS(1377), + [anon_sym_PIPE_AMP] = ACTIONS(1377), + [anon_sym_AMP_AMP] = ACTIONS(1377), + [anon_sym_PIPE_PIPE] = ACTIONS(1377), + [anon_sym_LT] = ACTIONS(2766), + [anon_sym_GT] = ACTIONS(2766), + [anon_sym_GT_GT] = ACTIONS(2766), + [anon_sym_AMP_GT] = ACTIONS(2766), + [anon_sym_AMP_GT_GT] = ACTIONS(2766), + [anon_sym_LT_AMP] = ACTIONS(2766), + [anon_sym_GT_AMP] = ACTIONS(2766), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1377), + [anon_sym_LF] = ACTIONS(1377), + [anon_sym_AMP] = ACTIONS(1377), + }, + [749] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(1395), + [sym_file_descriptor] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(1577), + [anon_sym_SEMI_SEMI] = ACTIONS(1577), + [anon_sym_PIPE_AMP] = ACTIONS(1577), + [anon_sym_AMP_AMP] = ACTIONS(1577), + [anon_sym_PIPE_PIPE] = ACTIONS(1577), + [anon_sym_LT] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_AMP_GT] = ACTIONS(554), + [anon_sym_AMP_GT_GT] = ACTIONS(554), + [anon_sym_LT_AMP] = ACTIONS(554), + [anon_sym_GT_AMP] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(358), + [anon_sym_LT_LT_DASH] = ACTIONS(358), + [anon_sym_LT_LT_LT] = ACTIONS(556), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1577), + [anon_sym_LF] = ACTIONS(1577), + [anon_sym_AMP] = ACTIONS(1577), + }, + [750] = { + [sym_concatenation] = STATE(869), + [sym_string] = STATE(1397), + [sym_array] = STATE(869), + [sym_simple_expansion] = STATE(1397), + [sym_string_expansion] = STATE(1397), + [sym_expansion] = STATE(1397), + [sym_command_substitution] = STATE(1397), + [sym_process_substitution] = STATE(1397), + [sym__empty_value] = ACTIONS(1671), + [anon_sym_LPAREN] = ACTIONS(1673), + [sym__special_characters] = ACTIONS(2768), + [anon_sym_DQUOTE] = ACTIONS(1409), + [anon_sym_DOLLAR] = ACTIONS(2770), + [sym_raw_string] = ACTIONS(2772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2776), + [anon_sym_BQUOTE] = ACTIONS(2778), + [anon_sym_LT_LPAREN] = ACTIONS(2780), + [anon_sym_GT_LPAREN] = ACTIONS(2780), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1178), + [sym_word] = ACTIONS(2782), }, - [1251] = { - [sym_elif_clause] = STATE(683), - [sym_else_clause] = STATE(1801), - [aux_sym_if_statement_repeat1] = STATE(1252), - [anon_sym_fi] = ACTIONS(3869), - [anon_sym_elif] = ACTIONS(2494), - [anon_sym_else] = ACTIONS(2496), + [751] = { + [sym_string] = STATE(1398), + [sym_simple_expansion] = STATE(1398), + [sym_string_expansion] = STATE(1398), + [sym_expansion] = STATE(1398), + [sym_command_substitution] = STATE(1398), + [sym_process_substitution] = STATE(1398), + [sym__special_characters] = ACTIONS(2784), + [anon_sym_DQUOTE] = ACTIONS(1409), + [anon_sym_DOLLAR] = ACTIONS(2770), + [sym_raw_string] = ACTIONS(2786), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2776), + [anon_sym_BQUOTE] = ACTIONS(2778), + [anon_sym_LT_LPAREN] = ACTIONS(2780), + [anon_sym_GT_LPAREN] = ACTIONS(2780), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2784), }, - [1252] = { - [sym_elif_clause] = STATE(683), - [aux_sym_if_statement_repeat1] = STATE(1252), - [anon_sym_fi] = ACTIONS(3871), - [anon_sym_elif] = ACTIONS(3873), - [anon_sym_else] = ACTIONS(3871), - [sym_comment] = ACTIONS(56), + [752] = { + [aux_sym_concatenation_repeat1] = STATE(1399), + [sym__concat] = ACTIONS(1405), + [sym_variable_name] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(774), + [anon_sym_RPAREN] = ACTIONS(774), + [anon_sym_SEMI_SEMI] = ACTIONS(774), + [anon_sym_PIPE_AMP] = ACTIONS(774), + [anon_sym_AMP_AMP] = ACTIONS(774), + [anon_sym_PIPE_PIPE] = ACTIONS(774), + [sym__special_characters] = ACTIONS(774), + [anon_sym_DQUOTE] = ACTIONS(774), + [anon_sym_DOLLAR] = ACTIONS(774), + [sym_raw_string] = ACTIONS(774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(774), + [anon_sym_BQUOTE] = ACTIONS(774), + [anon_sym_LT_LPAREN] = ACTIONS(774), + [anon_sym_GT_LPAREN] = ACTIONS(774), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(774), + [sym_word] = ACTIONS(774), + [anon_sym_SEMI] = ACTIONS(774), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_AMP] = ACTIONS(774), }, - [1253] = { - [anon_sym_PIPE] = ACTIONS(3876), - [anon_sym_RPAREN] = ACTIONS(3876), - [anon_sym_SEMI_SEMI] = ACTIONS(3876), - [anon_sym_PIPE_AMP] = ACTIONS(3876), - [anon_sym_AMP_AMP] = ACTIONS(3876), - [anon_sym_PIPE_PIPE] = ACTIONS(3876), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3876), - [anon_sym_LF] = ACTIONS(3876), - [anon_sym_AMP] = ACTIONS(3876), + [753] = { + [sym__concat] = ACTIONS(776), + [sym_variable_name] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(778), + [anon_sym_RPAREN] = ACTIONS(778), + [anon_sym_SEMI_SEMI] = ACTIONS(778), + [anon_sym_PIPE_AMP] = ACTIONS(778), + [anon_sym_AMP_AMP] = ACTIONS(778), + [anon_sym_PIPE_PIPE] = ACTIONS(778), + [sym__special_characters] = ACTIONS(778), + [anon_sym_DQUOTE] = ACTIONS(778), + [anon_sym_DOLLAR] = ACTIONS(778), + [sym_raw_string] = ACTIONS(778), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(778), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(778), + [anon_sym_BQUOTE] = ACTIONS(778), + [anon_sym_LT_LPAREN] = ACTIONS(778), + [anon_sym_GT_LPAREN] = ACTIONS(778), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(778), + [sym_word] = ACTIONS(778), + [anon_sym_SEMI] = ACTIONS(778), + [anon_sym_LF] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(778), }, - [1254] = { - [aux_sym_case_item_repeat1] = STATE(1805), - [aux_sym_concatenation_repeat1] = STATE(1806), - [sym__concat] = ACTIONS(3878), - [anon_sym_PIPE] = ACTIONS(3880), - [anon_sym_RPAREN] = ACTIONS(3882), - [sym_comment] = ACTIONS(56), + [754] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(2788), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, - [1255] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(1808), - [anon_sym_DQUOTE] = ACTIONS(3884), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [755] = { + [sym__concat] = ACTIONS(808), + [sym_variable_name] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(810), + [anon_sym_SEMI_SEMI] = ACTIONS(810), + [anon_sym_PIPE_AMP] = ACTIONS(810), + [anon_sym_AMP_AMP] = ACTIONS(810), + [anon_sym_PIPE_PIPE] = ACTIONS(810), + [sym__special_characters] = ACTIONS(810), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_DOLLAR] = ACTIONS(810), + [sym_raw_string] = ACTIONS(810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(810), + [anon_sym_BQUOTE] = ACTIONS(810), + [anon_sym_LT_LPAREN] = ACTIONS(810), + [anon_sym_GT_LPAREN] = ACTIONS(810), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(810), + [sym_word] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(810), + [anon_sym_LF] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(810), }, - [1256] = { - [sym_string] = STATE(1811), - [anon_sym_DQUOTE] = ACTIONS(2502), - [anon_sym_DOLLAR] = ACTIONS(3886), - [anon_sym_POUND] = ACTIONS(3886), - [anon_sym_DASH] = ACTIONS(3886), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3888), - [anon_sym_STAR] = ACTIONS(3886), - [anon_sym_AT] = ACTIONS(3886), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_0] = ACTIONS(3890), - [anon_sym__] = ACTIONS(3890), + [756] = { + [sym__concat] = ACTIONS(812), + [sym_variable_name] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(814), + [anon_sym_RPAREN] = ACTIONS(814), + [anon_sym_SEMI_SEMI] = ACTIONS(814), + [anon_sym_PIPE_AMP] = ACTIONS(814), + [anon_sym_AMP_AMP] = ACTIONS(814), + [anon_sym_PIPE_PIPE] = ACTIONS(814), + [sym__special_characters] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_DOLLAR] = ACTIONS(814), + [sym_raw_string] = ACTIONS(814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(814), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(814), + [anon_sym_BQUOTE] = ACTIONS(814), + [anon_sym_LT_LPAREN] = ACTIONS(814), + [anon_sym_GT_LPAREN] = ACTIONS(814), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(814), + [sym_word] = ACTIONS(814), + [anon_sym_SEMI] = ACTIONS(814), + [anon_sym_LF] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(814), }, - [1257] = { - [aux_sym_case_item_repeat1] = STATE(1813), - [aux_sym_concatenation_repeat1] = STATE(1806), - [sym__concat] = ACTIONS(3878), - [anon_sym_PIPE] = ACTIONS(3880), - [anon_sym_RPAREN] = ACTIONS(3892), - [sym_comment] = ACTIONS(56), - }, - [1258] = { - [sym_subscript] = STATE(1818), - [sym_variable_name] = ACTIONS(3894), - [anon_sym_DOLLAR] = ACTIONS(3896), - [anon_sym_POUND] = ACTIONS(3898), - [anon_sym_DASH] = ACTIONS(3896), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3900), - [anon_sym_STAR] = ACTIONS(3896), - [anon_sym_AT] = ACTIONS(3896), - [anon_sym_QMARK] = ACTIONS(3896), - [anon_sym_0] = ACTIONS(3902), - [anon_sym__] = ACTIONS(3902), - }, - [1259] = { - [sym_for_statement] = STATE(1819), - [sym_while_statement] = STATE(1819), - [sym_if_statement] = STATE(1819), - [sym_case_statement] = STATE(1819), - [sym_function_definition] = STATE(1819), - [sym_subshell] = STATE(1819), - [sym_pipeline] = STATE(1819), - [sym_list] = STATE(1819), - [sym_bracket_command] = STATE(1819), - [sym_command] = STATE(1819), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1820), - [sym_declaration_command] = STATE(1819), - [sym_unset_command] = STATE(1819), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [1260] = { - [sym_for_statement] = STATE(1821), - [sym_while_statement] = STATE(1821), - [sym_if_statement] = STATE(1821), - [sym_case_statement] = STATE(1821), - [sym_function_definition] = STATE(1821), - [sym_subshell] = STATE(1821), - [sym_pipeline] = STATE(1821), - [sym_list] = STATE(1821), - [sym_bracket_command] = STATE(1821), - [sym_command] = STATE(1821), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(1822), - [sym_declaration_command] = STATE(1821), - [sym_unset_command] = STATE(1821), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), - }, - [1261] = { - [sym_for_statement] = STATE(1823), - [sym_while_statement] = STATE(1823), - [sym_if_statement] = STATE(1823), - [sym_case_statement] = STATE(1823), - [sym_function_definition] = STATE(1823), - [sym_subshell] = STATE(1823), - [sym_pipeline] = STATE(1823), - [sym_list] = STATE(1823), - [sym_bracket_command] = STATE(1823), - [sym_command] = STATE(1823), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1824), - [sym_declaration_command] = STATE(1823), - [sym_unset_command] = STATE(1823), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [1262] = { - [sym__special_characters] = ACTIONS(3904), - [anon_sym_DQUOTE] = ACTIONS(3906), - [anon_sym_DOLLAR] = ACTIONS(3904), - [sym_raw_string] = ACTIONS(3906), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3906), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3906), - [anon_sym_BQUOTE] = ACTIONS(3906), - [anon_sym_LT_LPAREN] = ACTIONS(3906), - [anon_sym_GT_LPAREN] = ACTIONS(3906), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3904), - }, - [1263] = { - [anon_sym_esac] = ACTIONS(3908), - [sym_comment] = ACTIONS(56), - }, - [1264] = { - [aux_sym_case_item_repeat1] = STATE(1813), - [anon_sym_PIPE] = ACTIONS(3880), - [anon_sym_RPAREN] = ACTIONS(3892), - [sym_comment] = ACTIONS(56), - }, - [1265] = { - [sym_case_item] = STATE(1262), - [sym_last_case_item] = STATE(1826), - [sym_concatenation] = STATE(1264), - [sym_string] = STATE(1257), - [sym_simple_expansion] = STATE(1257), - [sym_string_expansion] = STATE(1257), - [sym_expansion] = STATE(1257), - [sym_command_substitution] = STATE(1257), - [sym_process_substitution] = STATE(1257), - [aux_sym_case_statement_repeat1] = STATE(1827), - [sym__special_characters] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2502), - [anon_sym_DOLLAR] = ACTIONS(2504), - [sym_raw_string] = ACTIONS(2506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2508), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2510), - [anon_sym_BQUOTE] = ACTIONS(2512), - [anon_sym_LT_LPAREN] = ACTIONS(2514), - [anon_sym_GT_LPAREN] = ACTIONS(2514), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3910), - }, - [1266] = { - [sym_case_item] = STATE(1262), - [sym_last_case_item] = STATE(1826), - [sym_concatenation] = STATE(1264), - [sym_string] = STATE(1257), - [sym_simple_expansion] = STATE(1257), - [sym_string_expansion] = STATE(1257), - [sym_expansion] = STATE(1257), - [sym_command_substitution] = STATE(1257), - [sym_process_substitution] = STATE(1257), - [aux_sym_case_statement_repeat1] = STATE(1829), - [anon_sym_esac] = ACTIONS(3912), - [sym__special_characters] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2502), - [anon_sym_DOLLAR] = ACTIONS(2504), - [sym_raw_string] = ACTIONS(2506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2508), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2510), - [anon_sym_BQUOTE] = ACTIONS(2512), - [anon_sym_LT_LPAREN] = ACTIONS(2514), - [anon_sym_GT_LPAREN] = ACTIONS(2514), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2516), - }, - [1267] = { - [anon_sym_PIPE] = ACTIONS(3914), - [anon_sym_RPAREN] = ACTIONS(3914), - [anon_sym_SEMI_SEMI] = ACTIONS(3914), - [anon_sym_PIPE_AMP] = ACTIONS(3914), - [anon_sym_AMP_AMP] = ACTIONS(3914), - [anon_sym_PIPE_PIPE] = ACTIONS(3914), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3914), - [anon_sym_LF] = ACTIONS(3914), - [anon_sym_AMP] = ACTIONS(3914), - }, - [1268] = { - [anon_sym_esac] = ACTIONS(3916), - [sym_comment] = ACTIONS(56), - }, - [1269] = { - [sym_case_item] = STATE(1262), - [sym_last_case_item] = STATE(1831), - [sym_concatenation] = STATE(1264), - [sym_string] = STATE(1257), - [sym_simple_expansion] = STATE(1257), - [sym_string_expansion] = STATE(1257), - [sym_expansion] = STATE(1257), - [sym_command_substitution] = STATE(1257), - [sym_process_substitution] = STATE(1257), - [aux_sym_case_statement_repeat1] = STATE(1827), - [sym__special_characters] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2502), - [anon_sym_DOLLAR] = ACTIONS(2504), - [sym_raw_string] = ACTIONS(2506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2508), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2510), - [anon_sym_BQUOTE] = ACTIONS(2512), - [anon_sym_LT_LPAREN] = ACTIONS(2514), - [anon_sym_GT_LPAREN] = ACTIONS(2514), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3910), - }, - [1270] = { - [sym_case_item] = STATE(1262), - [sym_last_case_item] = STATE(1831), - [sym_concatenation] = STATE(1264), - [sym_string] = STATE(1257), - [sym_simple_expansion] = STATE(1257), - [sym_string_expansion] = STATE(1257), - [sym_expansion] = STATE(1257), - [sym_command_substitution] = STATE(1257), - [sym_process_substitution] = STATE(1257), - [aux_sym_case_statement_repeat1] = STATE(1833), - [anon_sym_esac] = ACTIONS(3918), - [sym__special_characters] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2502), - [anon_sym_DOLLAR] = ACTIONS(2504), - [sym_raw_string] = ACTIONS(2506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2508), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2510), - [anon_sym_BQUOTE] = ACTIONS(2512), - [anon_sym_LT_LPAREN] = ACTIONS(2514), - [anon_sym_GT_LPAREN] = ACTIONS(2514), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2516), - }, - [1271] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_in] = ACTIONS(2971), - [anon_sym_SEMI_SEMI] = ACTIONS(2971), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - }, - [1272] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(3920), - [sym_comment] = ACTIONS(56), - }, - [1273] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(3922), - [sym_comment] = ACTIONS(56), - }, - [1274] = { - [anon_sym_RBRACE] = ACTIONS(3922), - [sym_comment] = ACTIONS(56), - }, - [1275] = { - [sym__concat] = ACTIONS(3023), - [anon_sym_in] = ACTIONS(3025), - [anon_sym_SEMI_SEMI] = ACTIONS(3025), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_LF] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3025), - }, - [1276] = { - [sym_concatenation] = STATE(1838), - [sym_string] = STATE(1837), - [sym_simple_expansion] = STATE(1837), - [sym_string_expansion] = STATE(1837), - [sym_expansion] = STATE(1837), - [sym_command_substitution] = STATE(1837), - [sym_process_substitution] = STATE(1837), - [anon_sym_RBRACE] = ACTIONS(3922), - [sym__special_characters] = ACTIONS(3924), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(3926), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3928), - }, - [1277] = { - [sym__concat] = ACTIONS(3068), - [anon_sym_in] = ACTIONS(3070), - [anon_sym_SEMI_SEMI] = ACTIONS(3070), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3070), - [anon_sym_LF] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3070), - }, - [1278] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(3930), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), + [757] = { + [sym__concat] = ACTIONS(816), + [sym_variable_name] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(818), + [anon_sym_SEMI_SEMI] = ACTIONS(818), + [anon_sym_PIPE_AMP] = ACTIONS(818), + [anon_sym_AMP_AMP] = ACTIONS(818), + [anon_sym_PIPE_PIPE] = ACTIONS(818), + [sym__special_characters] = ACTIONS(818), [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(818), + [sym_raw_string] = ACTIONS(818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(818), + [anon_sym_BQUOTE] = ACTIONS(818), + [anon_sym_LT_LPAREN] = ACTIONS(818), + [anon_sym_GT_LPAREN] = ACTIONS(818), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(818), + [sym_word] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_LF] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(818), }, - [1279] = { - [sym__concat] = ACTIONS(3074), - [anon_sym_in] = ACTIONS(3076), - [anon_sym_SEMI_SEMI] = ACTIONS(3076), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3076), - [anon_sym_LF] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3076), + [758] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(2790), + [sym_comment] = ACTIONS(56), }, - [1280] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(3932), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), + [759] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1404), + [anon_sym_RBRACE] = ACTIONS(2792), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(2794), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [760] = { + [sym_subscript] = STATE(1408), + [sym_variable_name] = ACTIONS(2796), + [anon_sym_DOLLAR] = ACTIONS(2798), + [anon_sym_DASH] = ACTIONS(2798), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2800), + [anon_sym_STAR] = ACTIONS(2798), + [anon_sym_AT] = ACTIONS(2798), + [anon_sym_QMARK] = ACTIONS(2798), + [anon_sym_0] = ACTIONS(2802), + [anon_sym__] = ACTIONS(2802), + }, + [761] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1411), + [anon_sym_RBRACE] = ACTIONS(2804), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(2806), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [762] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1414), + [anon_sym_RBRACE] = ACTIONS(2808), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(2810), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [763] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2812), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [764] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2812), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [765] = { + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(2812), + [sym_comment] = ACTIONS(56), + }, + [766] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(2812), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [767] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2814), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [768] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2814), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [769] = { + [sym_variable_assignment] = STATE(107), + [sym_subscript] = STATE(282), + [sym_concatenation] = STATE(107), + [sym_string] = STATE(277), + [sym_simple_expansion] = STATE(277), + [sym_string_expansion] = STATE(277), + [sym_expansion] = STATE(277), + [sym_command_substitution] = STATE(277), + [sym_process_substitution] = STATE(277), + [aux_sym_declaration_command_repeat1] = STATE(769), + [sym_variable_name] = ACTIONS(2816), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_RPAREN] = ACTIONS(1726), + [anon_sym_SEMI_SEMI] = ACTIONS(1726), + [anon_sym_PIPE_AMP] = ACTIONS(1726), + [anon_sym_AMP_AMP] = ACTIONS(1726), + [anon_sym_PIPE_PIPE] = ACTIONS(1726), + [sym__special_characters] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2822), + [anon_sym_DOLLAR] = ACTIONS(2825), + [sym_raw_string] = ACTIONS(2828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2831), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2834), + [anon_sym_BQUOTE] = ACTIONS(2837), + [anon_sym_LT_LPAREN] = ACTIONS(2840), + [anon_sym_GT_LPAREN] = ACTIONS(2840), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1752), + [sym_word] = ACTIONS(2828), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_LF] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1726), + }, + [770] = { + [sym_string] = STATE(1417), + [sym_simple_expansion] = STATE(1417), + [sym_string_expansion] = STATE(1417), + [sym_expansion] = STATE(1417), + [sym_command_substitution] = STATE(1417), + [sym_process_substitution] = STATE(1417), + [sym__special_characters] = ACTIONS(2843), + [anon_sym_DQUOTE] = ACTIONS(1431), + [anon_sym_DOLLAR] = ACTIONS(2845), + [sym_raw_string] = ACTIONS(2847), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2849), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2851), + [anon_sym_BQUOTE] = ACTIONS(2853), + [anon_sym_LT_LPAREN] = ACTIONS(2855), + [anon_sym_GT_LPAREN] = ACTIONS(2855), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2843), + }, + [771] = { + [aux_sym_concatenation_repeat1] = STATE(1418), + [sym__concat] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(774), + [anon_sym_RPAREN] = ACTIONS(774), + [anon_sym_SEMI_SEMI] = ACTIONS(774), + [anon_sym_PIPE_AMP] = ACTIONS(774), + [anon_sym_AMP_AMP] = ACTIONS(774), + [anon_sym_PIPE_PIPE] = ACTIONS(774), + [sym__special_characters] = ACTIONS(774), + [anon_sym_DQUOTE] = ACTIONS(774), + [anon_sym_DOLLAR] = ACTIONS(774), + [sym_raw_string] = ACTIONS(774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(774), + [anon_sym_BQUOTE] = ACTIONS(774), + [anon_sym_LT_LPAREN] = ACTIONS(774), + [anon_sym_GT_LPAREN] = ACTIONS(774), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(774), + [sym_word] = ACTIONS(774), + [anon_sym_SEMI] = ACTIONS(774), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_AMP] = ACTIONS(774), + }, + [772] = { + [sym__concat] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(778), + [anon_sym_RPAREN] = ACTIONS(778), + [anon_sym_SEMI_SEMI] = ACTIONS(778), + [anon_sym_PIPE_AMP] = ACTIONS(778), + [anon_sym_AMP_AMP] = ACTIONS(778), + [anon_sym_PIPE_PIPE] = ACTIONS(778), + [sym__special_characters] = ACTIONS(778), + [anon_sym_DQUOTE] = ACTIONS(778), + [anon_sym_DOLLAR] = ACTIONS(778), + [sym_raw_string] = ACTIONS(778), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(778), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(778), + [anon_sym_BQUOTE] = ACTIONS(778), + [anon_sym_LT_LPAREN] = ACTIONS(778), + [anon_sym_GT_LPAREN] = ACTIONS(778), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(778), + [sym_word] = ACTIONS(778), + [anon_sym_SEMI] = ACTIONS(778), + [anon_sym_LF] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(778), + }, + [773] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(2857), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [774] = { + [sym__concat] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(810), + [anon_sym_SEMI_SEMI] = ACTIONS(810), + [anon_sym_PIPE_AMP] = ACTIONS(810), + [anon_sym_AMP_AMP] = ACTIONS(810), + [anon_sym_PIPE_PIPE] = ACTIONS(810), + [sym__special_characters] = ACTIONS(810), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_DOLLAR] = ACTIONS(810), + [sym_raw_string] = ACTIONS(810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(810), + [anon_sym_BQUOTE] = ACTIONS(810), + [anon_sym_LT_LPAREN] = ACTIONS(810), + [anon_sym_GT_LPAREN] = ACTIONS(810), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(810), + [sym_word] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(810), + [anon_sym_LF] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(810), + }, + [775] = { + [sym__concat] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(814), + [anon_sym_RPAREN] = ACTIONS(814), + [anon_sym_SEMI_SEMI] = ACTIONS(814), + [anon_sym_PIPE_AMP] = ACTIONS(814), + [anon_sym_AMP_AMP] = ACTIONS(814), + [anon_sym_PIPE_PIPE] = ACTIONS(814), + [sym__special_characters] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_DOLLAR] = ACTIONS(814), + [sym_raw_string] = ACTIONS(814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(814), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(814), + [anon_sym_BQUOTE] = ACTIONS(814), + [anon_sym_LT_LPAREN] = ACTIONS(814), + [anon_sym_GT_LPAREN] = ACTIONS(814), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(814), + [sym_word] = ACTIONS(814), + [anon_sym_SEMI] = ACTIONS(814), + [anon_sym_LF] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(814), + }, + [776] = { + [sym__concat] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(818), + [anon_sym_SEMI_SEMI] = ACTIONS(818), + [anon_sym_PIPE_AMP] = ACTIONS(818), + [anon_sym_AMP_AMP] = ACTIONS(818), + [anon_sym_PIPE_PIPE] = ACTIONS(818), + [sym__special_characters] = ACTIONS(818), [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(818), + [sym_raw_string] = ACTIONS(818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(818), + [anon_sym_BQUOTE] = ACTIONS(818), + [anon_sym_LT_LPAREN] = ACTIONS(818), + [anon_sym_GT_LPAREN] = ACTIONS(818), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(818), + [sym_word] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_LF] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(818), }, - [1281] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(3922), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1282] = { - [sym__concat] = ACTIONS(3080), - [anon_sym_in] = ACTIONS(3082), - [anon_sym_SEMI_SEMI] = ACTIONS(3082), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3082), - [anon_sym_LF] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3082), - }, - [1283] = { - [sym_file_redirect] = STATE(1841), - [sym_file_descriptor] = ACTIONS(1349), - [anon_sym_PIPE] = ACTIONS(3934), - [anon_sym_SEMI_SEMI] = ACTIONS(3934), - [anon_sym_PIPE_AMP] = ACTIONS(3934), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_LT] = ACTIONS(1353), - [anon_sym_GT] = ACTIONS(1353), - [anon_sym_GT_GT] = ACTIONS(1353), - [anon_sym_AMP_GT] = ACTIONS(1353), - [anon_sym_AMP_GT_GT] = ACTIONS(1353), - [anon_sym_LT_AMP] = ACTIONS(1353), - [anon_sym_GT_AMP] = ACTIONS(1353), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3934), - [anon_sym_LF] = ACTIONS(3934), - [anon_sym_AMP] = ACTIONS(3934), - }, - [1284] = { - [sym_file_descriptor] = ACTIONS(1058), - [sym_variable_name] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_function] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_RBRACE] = ACTIONS(1058), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym_declare] = ACTIONS(1060), - [anon_sym_typeset] = ACTIONS(1060), - [anon_sym_export] = ACTIONS(1060), - [anon_sym_readonly] = ACTIONS(1060), - [anon_sym_local] = ACTIONS(1060), - [anon_sym_unset] = ACTIONS(1060), - [anon_sym_unsetenv] = ACTIONS(1060), - [anon_sym_LT] = ACTIONS(1060), - [anon_sym_GT] = ACTIONS(1060), - [anon_sym_GT_GT] = ACTIONS(1058), - [anon_sym_AMP_GT] = ACTIONS(1060), - [anon_sym_AMP_GT_GT] = ACTIONS(1058), - [anon_sym_LT_AMP] = ACTIONS(1058), - [anon_sym_GT_AMP] = ACTIONS(1058), - [sym__special_characters] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1058), - [anon_sym_DOLLAR] = ACTIONS(1060), - [sym_raw_string] = ACTIONS(1058), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1058), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1058), - [anon_sym_BQUOTE] = ACTIONS(1058), - [anon_sym_LT_LPAREN] = ACTIONS(1058), - [anon_sym_GT_LPAREN] = ACTIONS(1058), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1062), - }, - [1285] = { - [sym_file_descriptor] = ACTIONS(3936), - [anon_sym_PIPE] = ACTIONS(3938), - [anon_sym_RPAREN] = ACTIONS(3938), - [anon_sym_SEMI_SEMI] = ACTIONS(3938), - [anon_sym_PIPE_AMP] = ACTIONS(3938), - [anon_sym_AMP_AMP] = ACTIONS(3938), - [anon_sym_PIPE_PIPE] = ACTIONS(3938), - [anon_sym_LT] = ACTIONS(3938), - [anon_sym_GT] = ACTIONS(3938), - [anon_sym_GT_GT] = ACTIONS(3938), - [anon_sym_AMP_GT] = ACTIONS(3938), - [anon_sym_AMP_GT_GT] = ACTIONS(3938), - [anon_sym_LT_AMP] = ACTIONS(3938), - [anon_sym_GT_AMP] = ACTIONS(3938), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3938), - [anon_sym_LF] = ACTIONS(3938), - [anon_sym_AMP] = ACTIONS(3938), - }, - [1286] = { - [sym__terminated_statement] = STATE(710), - [sym_for_statement] = STATE(711), - [sym_while_statement] = STATE(711), - [sym_if_statement] = STATE(711), - [sym_case_statement] = STATE(711), - [sym_function_definition] = STATE(711), - [sym_subshell] = STATE(711), - [sym_pipeline] = STATE(711), - [sym_list] = STATE(711), - [sym_bracket_command] = STATE(711), - [sym_command] = STATE(711), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(712), - [sym_declaration_command] = STATE(711), - [sym_unset_command] = STATE(711), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1286), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1110), - [sym_variable_name] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1118), - [anon_sym_while] = ACTIONS(1121), - [anon_sym_if] = ACTIONS(1124), - [anon_sym_case] = ACTIONS(1127), - [anon_sym_function] = ACTIONS(1130), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_RBRACE] = ACTIONS(1116), - [anon_sym_LBRACK] = ACTIONS(1136), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1139), - [anon_sym_declare] = ACTIONS(1142), - [anon_sym_typeset] = ACTIONS(1142), - [anon_sym_export] = ACTIONS(1142), - [anon_sym_readonly] = ACTIONS(1142), - [anon_sym_local] = ACTIONS(1142), - [anon_sym_unset] = ACTIONS(1145), - [anon_sym_unsetenv] = ACTIONS(1145), - [anon_sym_LT] = ACTIONS(1148), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_GT_GT] = ACTIONS(1151), - [anon_sym_AMP_GT] = ACTIONS(1148), - [anon_sym_AMP_GT_GT] = ACTIONS(1151), - [anon_sym_LT_AMP] = ACTIONS(1151), - [anon_sym_GT_AMP] = ACTIONS(1151), - [sym__special_characters] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1157), - [anon_sym_DOLLAR] = ACTIONS(1160), - [sym_raw_string] = ACTIONS(1163), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1166), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1169), - [anon_sym_BQUOTE] = ACTIONS(1172), - [anon_sym_LT_LPAREN] = ACTIONS(1175), - [anon_sym_GT_LPAREN] = ACTIONS(1175), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1178), - }, - [1287] = { - [sym_concatenation] = STATE(1844), - [sym_string] = STATE(1843), - [sym_simple_expansion] = STATE(1843), - [sym_string_expansion] = STATE(1843), - [sym_expansion] = STATE(1843), - [sym_command_substitution] = STATE(1843), - [sym_process_substitution] = STATE(1843), - [sym__special_characters] = ACTIONS(3940), - [anon_sym_DQUOTE] = ACTIONS(2559), - [anon_sym_DOLLAR] = ACTIONS(2561), - [sym_raw_string] = ACTIONS(3942), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2565), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2567), - [anon_sym_BQUOTE] = ACTIONS(2569), - [anon_sym_LT_LPAREN] = ACTIONS(2571), - [anon_sym_GT_LPAREN] = ACTIONS(2571), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3944), - }, - [1288] = { - [aux_sym_concatenation_repeat1] = STATE(1846), - [sym__concat] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(2244), - [anon_sym_SEMI_SEMI] = ACTIONS(2244), - [anon_sym_PIPE_AMP] = ACTIONS(2244), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE_PIPE] = ACTIONS(2244), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2244), - [anon_sym_LF] = ACTIONS(2244), - [anon_sym_AMP] = ACTIONS(2244), - }, - [1289] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(1848), - [anon_sym_DQUOTE] = ACTIONS(3948), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [1290] = { - [sym_string] = STATE(1851), - [anon_sym_DQUOTE] = ACTIONS(2559), - [anon_sym_DOLLAR] = ACTIONS(3950), - [anon_sym_POUND] = ACTIONS(3950), - [anon_sym_DASH] = ACTIONS(3950), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3952), - [anon_sym_STAR] = ACTIONS(3950), - [anon_sym_AT] = ACTIONS(3950), - [anon_sym_QMARK] = ACTIONS(3950), - [anon_sym_0] = ACTIONS(3954), - [anon_sym__] = ACTIONS(3954), - }, - [1291] = { - [aux_sym_concatenation_repeat1] = STATE(1846), - [sym__concat] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_SEMI_SEMI] = ACTIONS(2254), - [anon_sym_PIPE_AMP] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LF] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2254), - }, - [1292] = { - [sym_subscript] = STATE(1856), - [sym_variable_name] = ACTIONS(3956), - [anon_sym_DOLLAR] = ACTIONS(3958), - [anon_sym_POUND] = ACTIONS(3960), - [anon_sym_DASH] = ACTIONS(3958), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3962), - [anon_sym_STAR] = ACTIONS(3958), - [anon_sym_AT] = ACTIONS(3958), - [anon_sym_QMARK] = ACTIONS(3958), - [anon_sym_0] = ACTIONS(3964), - [anon_sym__] = ACTIONS(3964), - }, - [1293] = { - [sym_for_statement] = STATE(1857), - [sym_while_statement] = STATE(1857), - [sym_if_statement] = STATE(1857), - [sym_case_statement] = STATE(1857), - [sym_function_definition] = STATE(1857), - [sym_subshell] = STATE(1857), - [sym_pipeline] = STATE(1857), - [sym_list] = STATE(1857), - [sym_bracket_command] = STATE(1857), - [sym_command] = STATE(1857), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1858), - [sym_declaration_command] = STATE(1857), - [sym_unset_command] = STATE(1857), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [1294] = { - [sym_for_statement] = STATE(1859), - [sym_while_statement] = STATE(1859), - [sym_if_statement] = STATE(1859), - [sym_case_statement] = STATE(1859), - [sym_function_definition] = STATE(1859), - [sym_subshell] = STATE(1859), - [sym_pipeline] = STATE(1859), - [sym_list] = STATE(1859), - [sym_bracket_command] = STATE(1859), - [sym_command] = STATE(1859), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(1860), - [sym_declaration_command] = STATE(1859), - [sym_unset_command] = STATE(1859), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), - }, - [1295] = { - [sym_for_statement] = STATE(1861), - [sym_while_statement] = STATE(1861), - [sym_if_statement] = STATE(1861), - [sym_case_statement] = STATE(1861), - [sym_function_definition] = STATE(1861), - [sym_subshell] = STATE(1861), - [sym_pipeline] = STATE(1861), - [sym_list] = STATE(1861), - [sym_bracket_command] = STATE(1861), - [sym_command] = STATE(1861), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(1862), - [sym_declaration_command] = STATE(1861), - [sym_unset_command] = STATE(1861), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [1296] = { - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_RPAREN] = ACTIONS(2254), - [anon_sym_SEMI_SEMI] = ACTIONS(2254), - [anon_sym_PIPE_AMP] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LF] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2254), - }, - [1297] = { - [sym_string] = STATE(1863), - [sym_simple_expansion] = STATE(1863), - [sym_string_expansion] = STATE(1863), - [sym_expansion] = STATE(1863), - [sym_command_substitution] = STATE(1863), - [sym_process_substitution] = STATE(1863), - [sym__special_characters] = ACTIONS(3966), - [anon_sym_DQUOTE] = ACTIONS(1357), - [anon_sym_DOLLAR] = ACTIONS(1359), - [sym_raw_string] = ACTIONS(3968), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1363), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1365), - [anon_sym_BQUOTE] = ACTIONS(1367), - [anon_sym_LT_LPAREN] = ACTIONS(1369), - [anon_sym_GT_LPAREN] = ACTIONS(1369), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3966), - }, - [1298] = { - [aux_sym_concatenation_repeat1] = STATE(1864), - [sym_file_descriptor] = ACTIONS(760), - [sym__concat] = ACTIONS(2577), - [sym_variable_name] = ACTIONS(760), - [anon_sym_PIPE] = ACTIONS(762), - [anon_sym_RPAREN] = ACTIONS(762), - [anon_sym_SEMI_SEMI] = ACTIONS(762), - [anon_sym_PIPE_AMP] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(762), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_LT] = ACTIONS(762), - [anon_sym_GT] = ACTIONS(762), - [anon_sym_GT_GT] = ACTIONS(762), - [anon_sym_AMP_GT] = ACTIONS(762), - [anon_sym_AMP_GT_GT] = ACTIONS(762), - [anon_sym_LT_AMP] = ACTIONS(762), - [anon_sym_GT_AMP] = ACTIONS(762), - [sym__special_characters] = ACTIONS(762), - [anon_sym_DQUOTE] = ACTIONS(762), - [anon_sym_DOLLAR] = ACTIONS(762), - [sym_raw_string] = ACTIONS(762), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(762), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(762), - [anon_sym_BQUOTE] = ACTIONS(762), - [anon_sym_LT_LPAREN] = ACTIONS(762), - [anon_sym_GT_LPAREN] = ACTIONS(762), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(762), - [anon_sym_SEMI] = ACTIONS(762), - [anon_sym_LF] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(762), - }, - [1299] = { - [sym_file_descriptor] = ACTIONS(764), - [sym__concat] = ACTIONS(764), - [sym_variable_name] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(766), - [anon_sym_SEMI_SEMI] = ACTIONS(766), - [anon_sym_PIPE_AMP] = ACTIONS(766), - [anon_sym_AMP_AMP] = ACTIONS(766), - [anon_sym_PIPE_PIPE] = ACTIONS(766), - [anon_sym_LT] = ACTIONS(766), - [anon_sym_GT] = ACTIONS(766), - [anon_sym_GT_GT] = ACTIONS(766), - [anon_sym_AMP_GT] = ACTIONS(766), - [anon_sym_AMP_GT_GT] = ACTIONS(766), - [anon_sym_LT_AMP] = ACTIONS(766), - [anon_sym_GT_AMP] = ACTIONS(766), - [sym__special_characters] = ACTIONS(766), - [anon_sym_DQUOTE] = ACTIONS(766), - [anon_sym_DOLLAR] = ACTIONS(766), - [sym_raw_string] = ACTIONS(766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(766), - [anon_sym_BQUOTE] = ACTIONS(766), - [anon_sym_LT_LPAREN] = ACTIONS(766), - [anon_sym_GT_LPAREN] = ACTIONS(766), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(766), - [anon_sym_SEMI] = ACTIONS(766), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(766), - }, - [1300] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(3970), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [1301] = { - [sym_file_descriptor] = ACTIONS(796), - [sym__concat] = ACTIONS(796), - [sym_variable_name] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(798), - [anon_sym_RPAREN] = ACTIONS(798), - [anon_sym_SEMI_SEMI] = ACTIONS(798), - [anon_sym_PIPE_AMP] = ACTIONS(798), - [anon_sym_AMP_AMP] = ACTIONS(798), - [anon_sym_PIPE_PIPE] = ACTIONS(798), - [anon_sym_LT] = ACTIONS(798), - [anon_sym_GT] = ACTIONS(798), - [anon_sym_GT_GT] = ACTIONS(798), - [anon_sym_AMP_GT] = ACTIONS(798), - [anon_sym_AMP_GT_GT] = ACTIONS(798), - [anon_sym_LT_AMP] = ACTIONS(798), - [anon_sym_GT_AMP] = ACTIONS(798), - [sym__special_characters] = ACTIONS(798), - [anon_sym_DQUOTE] = ACTIONS(798), - [anon_sym_DOLLAR] = ACTIONS(798), - [sym_raw_string] = ACTIONS(798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(798), - [anon_sym_BQUOTE] = ACTIONS(798), - [anon_sym_LT_LPAREN] = ACTIONS(798), - [anon_sym_GT_LPAREN] = ACTIONS(798), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(798), - [anon_sym_SEMI] = ACTIONS(798), - [anon_sym_LF] = ACTIONS(798), - [anon_sym_AMP] = ACTIONS(798), - }, - [1302] = { - [sym_file_descriptor] = ACTIONS(800), - [sym__concat] = ACTIONS(800), - [sym_variable_name] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(802), - [anon_sym_RPAREN] = ACTIONS(802), - [anon_sym_SEMI_SEMI] = ACTIONS(802), - [anon_sym_PIPE_AMP] = ACTIONS(802), - [anon_sym_AMP_AMP] = ACTIONS(802), - [anon_sym_PIPE_PIPE] = ACTIONS(802), - [anon_sym_LT] = ACTIONS(802), - [anon_sym_GT] = ACTIONS(802), - [anon_sym_GT_GT] = ACTIONS(802), - [anon_sym_AMP_GT] = ACTIONS(802), - [anon_sym_AMP_GT_GT] = ACTIONS(802), - [anon_sym_LT_AMP] = ACTIONS(802), - [anon_sym_GT_AMP] = ACTIONS(802), - [sym__special_characters] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(802), - [sym_raw_string] = ACTIONS(802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(802), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(802), - [anon_sym_BQUOTE] = ACTIONS(802), - [anon_sym_LT_LPAREN] = ACTIONS(802), - [anon_sym_GT_LPAREN] = ACTIONS(802), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(802), - [anon_sym_LF] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(802), - }, - [1303] = { - [sym_file_descriptor] = ACTIONS(804), - [sym__concat] = ACTIONS(804), - [sym_variable_name] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(806), - [anon_sym_RPAREN] = ACTIONS(806), - [anon_sym_SEMI_SEMI] = ACTIONS(806), - [anon_sym_PIPE_AMP] = ACTIONS(806), - [anon_sym_AMP_AMP] = ACTIONS(806), - [anon_sym_PIPE_PIPE] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(806), - [anon_sym_GT] = ACTIONS(806), - [anon_sym_GT_GT] = ACTIONS(806), - [anon_sym_AMP_GT] = ACTIONS(806), - [anon_sym_AMP_GT_GT] = ACTIONS(806), - [anon_sym_LT_AMP] = ACTIONS(806), - [anon_sym_GT_AMP] = ACTIONS(806), - [sym__special_characters] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(806), - [anon_sym_DOLLAR] = ACTIONS(806), - [sym_raw_string] = ACTIONS(806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(806), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(806), - [anon_sym_BQUOTE] = ACTIONS(806), - [anon_sym_LT_LPAREN] = ACTIONS(806), - [anon_sym_GT_LPAREN] = ACTIONS(806), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(806), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(806), - }, - [1304] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(3972), + [777] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(2859), [sym_comment] = ACTIONS(56), }, - [1305] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1868), - [anon_sym_RBRACE] = ACTIONS(3974), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [778] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1423), + [anon_sym_RBRACE] = ACTIONS(2861), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(2863), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1306] = { - [sym_subscript] = STATE(1872), - [sym_variable_name] = ACTIONS(3976), - [anon_sym_DOLLAR] = ACTIONS(3978), - [anon_sym_DASH] = ACTIONS(3978), + [779] = { + [sym_subscript] = STATE(1427), + [sym_variable_name] = ACTIONS(2865), + [anon_sym_DOLLAR] = ACTIONS(2867), + [anon_sym_DASH] = ACTIONS(2867), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3980), - [anon_sym_STAR] = ACTIONS(3978), - [anon_sym_AT] = ACTIONS(3978), - [anon_sym_QMARK] = ACTIONS(3978), - [anon_sym_0] = ACTIONS(3982), - [anon_sym__] = ACTIONS(3982), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2869), + [anon_sym_STAR] = ACTIONS(2867), + [anon_sym_AT] = ACTIONS(2867), + [anon_sym_QMARK] = ACTIONS(2867), + [anon_sym_0] = ACTIONS(2871), + [anon_sym__] = ACTIONS(2871), }, - [1307] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1874), - [anon_sym_RBRACE] = ACTIONS(3984), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [780] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1430), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(2875), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1308] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1876), - [anon_sym_RBRACE] = ACTIONS(3986), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [781] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1433), + [anon_sym_RBRACE] = ACTIONS(2877), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(2879), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1309] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3988), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), + [782] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2881), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), [sym_comment] = ACTIONS(56), }, - [1310] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3988), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [783] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2881), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_word] = ACTIONS(382), }, - [1311] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(3988), + [784] = { + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(2881), [sym_comment] = ACTIONS(56), }, - [1312] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(3988), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [785] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(2881), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_word] = ACTIONS(382), }, - [1313] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3990), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), + [786] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2883), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), [sym_comment] = ACTIONS(56), }, - [1314] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(3990), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [787] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(2883), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_word] = ACTIONS(382), }, - [1315] = { - [sym_file_redirect] = STATE(202), - [sym_heredoc_redirect] = STATE(202), - [sym_herestring_redirect] = STATE(202), - [aux_sym_while_statement_repeat1] = STATE(800), - [sym_file_descriptor] = ACTIONS(540), - [anon_sym_PIPE] = ACTIONS(2480), - [anon_sym_RPAREN] = ACTIONS(2480), - [anon_sym_SEMI_SEMI] = ACTIONS(2480), - [anon_sym_PIPE_AMP] = ACTIONS(2480), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_PIPE_PIPE] = ACTIONS(2480), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_GT_GT] = ACTIONS(542), - [anon_sym_AMP_GT] = ACTIONS(542), - [anon_sym_AMP_GT_GT] = ACTIONS(542), - [anon_sym_LT_AMP] = ACTIONS(542), - [anon_sym_GT_AMP] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(348), - [anon_sym_LT_LT_DASH] = ACTIONS(348), - [anon_sym_LT_LT_LT] = ACTIONS(544), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_LF] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2480), - }, - [1316] = { - [sym_compound_statement] = STATE(1879), - [anon_sym_LBRACE] = ACTIONS(470), - [sym_comment] = ACTIONS(56), - }, - [1317] = { - [anon_sym_LT] = ACTIONS(3992), - [anon_sym_GT] = ACTIONS(3992), - [anon_sym_GT_GT] = ACTIONS(3994), - [anon_sym_AMP_GT] = ACTIONS(3992), - [anon_sym_AMP_GT_GT] = ACTIONS(3994), - [anon_sym_LT_AMP] = ACTIONS(3994), - [anon_sym_GT_AMP] = ACTIONS(3994), - [sym_comment] = ACTIONS(56), - }, - [1318] = { - [sym_concatenation] = STATE(1296), - [sym_string] = STATE(1884), - [sym_simple_expansion] = STATE(1884), - [sym_string_expansion] = STATE(1884), - [sym_expansion] = STATE(1884), - [sym_command_substitution] = STATE(1884), - [sym_process_substitution] = STATE(1884), - [sym__special_characters] = ACTIONS(3996), - [anon_sym_DQUOTE] = ACTIONS(3998), - [anon_sym_DOLLAR] = ACTIONS(4000), - [sym_raw_string] = ACTIONS(4002), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4004), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4006), - [anon_sym_BQUOTE] = ACTIONS(4008), - [anon_sym_LT_LPAREN] = ACTIONS(4010), - [anon_sym_GT_LPAREN] = ACTIONS(4010), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4012), - }, - [1319] = { - [aux_sym_concatenation_repeat1] = STATE(730), - [sym__concat] = ACTIONS(1377), - [sym_variable_name] = ACTIONS(1259), - [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), - [sym__special_characters] = ACTIONS(1263), - [anon_sym_DQUOTE] = ACTIONS(1263), - [anon_sym_DOLLAR] = ACTIONS(1263), - [sym_raw_string] = ACTIONS(1263), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1263), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1263), - [anon_sym_BQUOTE] = ACTIONS(1263), - [anon_sym_LT_LPAREN] = ACTIONS(1263), - [anon_sym_GT_LPAREN] = ACTIONS(1263), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1263), - [sym_word] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1263), - [anon_sym_LF] = ACTIONS(1263), - [anon_sym_AMP] = ACTIONS(1263), - }, - [1320] = { - [aux_sym_concatenation_repeat1] = STATE(730), - [sym__concat] = ACTIONS(1377), - [sym_variable_name] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1237), - [anon_sym_RPAREN] = ACTIONS(1237), - [anon_sym_SEMI_SEMI] = ACTIONS(1237), - [anon_sym_PIPE_AMP] = ACTIONS(1237), - [anon_sym_AMP_AMP] = ACTIONS(1237), - [anon_sym_PIPE_PIPE] = ACTIONS(1237), - [sym__special_characters] = ACTIONS(1237), - [anon_sym_DQUOTE] = ACTIONS(1237), - [anon_sym_DOLLAR] = ACTIONS(1237), - [sym_raw_string] = ACTIONS(1237), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1237), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1237), - [anon_sym_BQUOTE] = ACTIONS(1237), - [anon_sym_LT_LPAREN] = ACTIONS(1237), - [anon_sym_GT_LPAREN] = ACTIONS(1237), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1237), - [sym_word] = ACTIONS(1237), - [anon_sym_SEMI] = ACTIONS(1237), - [anon_sym_LF] = ACTIONS(1237), - [anon_sym_AMP] = ACTIONS(1237), - }, - [1321] = { - [sym__concat] = ACTIONS(1790), - [sym_variable_name] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [anon_sym_PIPE_AMP] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [sym__special_characters] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1792), - [sym_raw_string] = ACTIONS(1792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1792), - [anon_sym_LT_LPAREN] = ACTIONS(1792), - [anon_sym_GT_LPAREN] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1792), - [sym_word] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - }, - [1322] = { - [aux_sym_concatenation_repeat1] = STATE(1322), - [sym__concat] = ACTIONS(4014), - [sym_variable_name] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [anon_sym_PIPE_AMP] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [sym__special_characters] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1792), - [sym_raw_string] = ACTIONS(1792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1792), - [anon_sym_LT_LPAREN] = ACTIONS(1792), - [anon_sym_GT_LPAREN] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1792), - [sym_word] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - }, - [1323] = { - [sym__concat] = ACTIONS(1821), - [sym_variable_name] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_RPAREN] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [sym__special_characters] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1823), - [sym_raw_string] = ACTIONS(1823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), - [anon_sym_BQUOTE] = ACTIONS(1823), - [anon_sym_LT_LPAREN] = ACTIONS(1823), - [anon_sym_GT_LPAREN] = ACTIONS(1823), - [sym_comment] = ACTIONS(178), + [788] = { + [sym_concatenation] = STATE(119), + [sym_string] = STATE(287), + [sym_simple_expansion] = STATE(287), + [sym_string_expansion] = STATE(287), + [sym_expansion] = STATE(287), + [sym_command_substitution] = STATE(287), + [sym_process_substitution] = STATE(287), + [aux_sym_unset_command_repeat1] = STATE(788), + [anon_sym_PIPE] = ACTIONS(1797), + [anon_sym_RPAREN] = ACTIONS(1797), + [anon_sym_SEMI_SEMI] = ACTIONS(1797), + [anon_sym_PIPE_AMP] = ACTIONS(1797), + [anon_sym_AMP_AMP] = ACTIONS(1797), + [anon_sym_PIPE_PIPE] = ACTIONS(1797), + [sym__special_characters] = ACTIONS(2885), + [anon_sym_DQUOTE] = ACTIONS(2888), + [anon_sym_DOLLAR] = ACTIONS(2891), + [sym_raw_string] = ACTIONS(2894), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2900), + [anon_sym_BQUOTE] = ACTIONS(2903), + [anon_sym_LT_LPAREN] = ACTIONS(2906), + [anon_sym_GT_LPAREN] = ACTIONS(2906), + [sym_comment] = ACTIONS(182), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1823), - [sym_word] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LF] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), + [sym_word] = ACTIONS(2894), + [anon_sym_SEMI] = ACTIONS(1797), + [anon_sym_LF] = ACTIONS(1797), + [anon_sym_AMP] = ACTIONS(1797), }, - [1324] = { - [sym_concatenation] = STATE(1892), - [sym_string] = STATE(1891), - [sym_simple_expansion] = STATE(1891), - [sym_string_expansion] = STATE(1891), - [sym_expansion] = STATE(1891), - [sym_command_substitution] = STATE(1891), - [sym_process_substitution] = STATE(1891), - [anon_sym_RBRACE] = ACTIONS(4017), - [sym__special_characters] = ACTIONS(4019), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(4021), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), + [789] = { + [sym_file_descriptor] = ACTIONS(1858), + [sym__concat] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [anon_sym_PIPE_AMP] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1860), + [anon_sym_PIPE_PIPE] = ACTIONS(1860), + [anon_sym_EQ_TILDE] = ACTIONS(1860), + [anon_sym_LT] = ACTIONS(1860), + [anon_sym_GT] = ACTIONS(1860), + [anon_sym_GT_GT] = ACTIONS(1860), + [anon_sym_AMP_GT] = ACTIONS(1860), + [anon_sym_AMP_GT_GT] = ACTIONS(1860), + [anon_sym_LT_AMP] = ACTIONS(1860), + [anon_sym_GT_AMP] = ACTIONS(1860), + [anon_sym_LT_LT] = ACTIONS(1860), + [anon_sym_LT_LT_DASH] = ACTIONS(1860), + [anon_sym_LT_LT_LT] = ACTIONS(1860), + [sym__special_characters] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1860), + [anon_sym_DOLLAR] = ACTIONS(1860), + [sym_raw_string] = ACTIONS(1860), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1860), [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4023), + [anon_sym_LT_LPAREN] = ACTIONS(1860), + [anon_sym_GT_LPAREN] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), }, - [1325] = { - [sym__concat] = ACTIONS(1866), - [sym_variable_name] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_RPAREN] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [anon_sym_PIPE_AMP] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [sym__special_characters] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1868), - [sym_raw_string] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), - [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(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1868), - [sym_word] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - }, - [1326] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4025), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1327] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(4027), - [sym_comment] = ACTIONS(56), - }, - [1328] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1896), - [anon_sym_RBRACE] = ACTIONS(4029), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1329] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1898), - [anon_sym_RBRACE] = ACTIONS(4031), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1330] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1899), - [anon_sym_RBRACE] = ACTIONS(4017), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1331] = { - [sym__concat] = ACTIONS(1910), - [sym_variable_name] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1912), - [anon_sym_SEMI_SEMI] = ACTIONS(1912), - [anon_sym_PIPE_AMP] = ACTIONS(1912), - [anon_sym_AMP_AMP] = ACTIONS(1912), - [anon_sym_PIPE_PIPE] = ACTIONS(1912), - [sym__special_characters] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [anon_sym_DOLLAR] = ACTIONS(1912), - [sym_raw_string] = ACTIONS(1912), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1912), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1912), - [anon_sym_BQUOTE] = ACTIONS(1912), - [anon_sym_LT_LPAREN] = ACTIONS(1912), - [anon_sym_GT_LPAREN] = ACTIONS(1912), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1912), - [sym_word] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_LF] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1912), - }, - [1332] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1333] = { - [sym__concat] = ACTIONS(1916), - [sym_variable_name] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_RPAREN] = ACTIONS(1918), - [anon_sym_SEMI_SEMI] = ACTIONS(1918), - [anon_sym_PIPE_AMP] = ACTIONS(1918), - [anon_sym_AMP_AMP] = ACTIONS(1918), - [anon_sym_PIPE_PIPE] = ACTIONS(1918), - [sym__special_characters] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1918), - [anon_sym_DOLLAR] = ACTIONS(1918), - [sym_raw_string] = ACTIONS(1918), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1918), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1918), - [anon_sym_BQUOTE] = ACTIONS(1918), - [anon_sym_LT_LPAREN] = ACTIONS(1918), - [anon_sym_GT_LPAREN] = ACTIONS(1918), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1918), - [sym_word] = ACTIONS(1918), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_LF] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), - }, - [1334] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4017), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1335] = { - [sym__concat] = ACTIONS(2064), - [sym_variable_name] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_RPAREN] = ACTIONS(2066), - [anon_sym_SEMI_SEMI] = 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(2066), - [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(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2066), - [sym_word] = ACTIONS(2066), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_LF] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2066), - }, - [1336] = { - [sym__concat] = ACTIONS(2228), - [sym_variable_name] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_RPAREN] = ACTIONS(2230), - [anon_sym_SEMI_SEMI] = ACTIONS(2230), - [anon_sym_PIPE_AMP] = ACTIONS(2230), - [anon_sym_AMP_AMP] = ACTIONS(2230), - [anon_sym_PIPE_PIPE] = ACTIONS(2230), - [sym__special_characters] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2230), - [anon_sym_DOLLAR] = ACTIONS(2230), - [sym_raw_string] = ACTIONS(2230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2230), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2230), - [anon_sym_BQUOTE] = ACTIONS(2230), - [anon_sym_LT_LPAREN] = ACTIONS(2230), - [anon_sym_GT_LPAREN] = ACTIONS(2230), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2230), - [sym_word] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_LF] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - }, - [1337] = { - [sym__concat] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [anon_sym_PIPE_AMP] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [sym__special_characters] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1792), - [sym_raw_string] = ACTIONS(1792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1792), - [anon_sym_LT_LPAREN] = ACTIONS(1792), - [anon_sym_GT_LPAREN] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1792), - [sym_word] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - }, - [1338] = { - [aux_sym_concatenation_repeat1] = STATE(1338), - [sym__concat] = ACTIONS(4035), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [anon_sym_PIPE_AMP] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [sym__special_characters] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1792), - [sym_raw_string] = ACTIONS(1792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1792), - [anon_sym_LT_LPAREN] = ACTIONS(1792), - [anon_sym_GT_LPAREN] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1792), - [sym_word] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - }, - [1339] = { - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_RPAREN] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [sym__special_characters] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1823), - [sym_raw_string] = ACTIONS(1823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), - [anon_sym_BQUOTE] = ACTIONS(1823), - [anon_sym_LT_LPAREN] = ACTIONS(1823), - [anon_sym_GT_LPAREN] = ACTIONS(1823), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1823), - [sym_word] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LF] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - }, - [1340] = { - [sym_concatenation] = STATE(1904), - [sym_string] = STATE(1903), - [sym_simple_expansion] = STATE(1903), - [sym_string_expansion] = STATE(1903), - [sym_expansion] = STATE(1903), - [sym_command_substitution] = STATE(1903), - [sym_process_substitution] = STATE(1903), - [anon_sym_RBRACE] = ACTIONS(4038), - [sym__special_characters] = ACTIONS(4040), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(4042), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), + [790] = { + [aux_sym_concatenation_repeat1] = STATE(790), + [sym_file_descriptor] = ACTIONS(1858), + [sym__concat] = ACTIONS(2909), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [anon_sym_PIPE_AMP] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1860), + [anon_sym_PIPE_PIPE] = ACTIONS(1860), + [anon_sym_EQ_TILDE] = ACTIONS(1860), + [anon_sym_LT] = ACTIONS(1860), + [anon_sym_GT] = ACTIONS(1860), + [anon_sym_GT_GT] = ACTIONS(1860), + [anon_sym_AMP_GT] = ACTIONS(1860), + [anon_sym_AMP_GT_GT] = ACTIONS(1860), + [anon_sym_LT_AMP] = ACTIONS(1860), + [anon_sym_GT_AMP] = ACTIONS(1860), + [anon_sym_LT_LT] = ACTIONS(1860), + [anon_sym_LT_LT_DASH] = ACTIONS(1860), + [anon_sym_LT_LT_LT] = ACTIONS(1860), + [sym__special_characters] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1860), + [anon_sym_DOLLAR] = ACTIONS(1860), + [sym_raw_string] = ACTIONS(1860), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1860), [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), + [anon_sym_LT_LPAREN] = ACTIONS(1860), + [anon_sym_GT_LPAREN] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + }, + [791] = { + [sym_file_descriptor] = ACTIONS(1895), + [sym__concat] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_RPAREN] = ACTIONS(1897), + [anon_sym_SEMI_SEMI] = ACTIONS(1897), + [anon_sym_PIPE_AMP] = ACTIONS(1897), + [anon_sym_AMP_AMP] = ACTIONS(1897), + [anon_sym_PIPE_PIPE] = ACTIONS(1897), + [anon_sym_EQ_TILDE] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1897), + [anon_sym_GT] = ACTIONS(1897), + [anon_sym_GT_GT] = ACTIONS(1897), + [anon_sym_AMP_GT] = ACTIONS(1897), + [anon_sym_AMP_GT_GT] = ACTIONS(1897), + [anon_sym_LT_AMP] = ACTIONS(1897), + [anon_sym_GT_AMP] = ACTIONS(1897), + [anon_sym_LT_LT] = ACTIONS(1897), + [anon_sym_LT_LT_DASH] = ACTIONS(1897), + [anon_sym_LT_LT_LT] = ACTIONS(1897), + [sym__special_characters] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [anon_sym_DOLLAR] = ACTIONS(1897), + [sym_raw_string] = ACTIONS(1897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1897), + [anon_sym_BQUOTE] = ACTIONS(1897), + [anon_sym_LT_LPAREN] = ACTIONS(1897), + [anon_sym_GT_LPAREN] = ACTIONS(1897), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_LF] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), + }, + [792] = { + [sym_concatenation] = STATE(1439), + [sym_string] = STATE(1438), + [sym_simple_expansion] = STATE(1438), + [sym_string_expansion] = STATE(1438), + [sym_expansion] = STATE(1438), + [sym_command_substitution] = STATE(1438), + [sym_process_substitution] = STATE(1438), + [anon_sym_RBRACE] = ACTIONS(2912), + [sym__special_characters] = ACTIONS(2914), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(2916), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4044), + [sym_word] = ACTIONS(2918), }, - [1341] = { - [sym__concat] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_RPAREN] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [anon_sym_PIPE_AMP] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [sym__special_characters] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1868), - [sym_raw_string] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), - [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(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1868), - [sym_word] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), + [793] = { + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1942), + [anon_sym_PIPE_AMP] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1942), + [anon_sym_PIPE_PIPE] = ACTIONS(1942), + [anon_sym_EQ_TILDE] = ACTIONS(1942), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_GT_GT] = ACTIONS(1942), + [anon_sym_AMP_GT] = ACTIONS(1942), + [anon_sym_AMP_GT_GT] = ACTIONS(1942), + [anon_sym_LT_AMP] = ACTIONS(1942), + [anon_sym_GT_AMP] = ACTIONS(1942), + [anon_sym_LT_LT] = ACTIONS(1942), + [anon_sym_LT_LT_DASH] = ACTIONS(1942), + [anon_sym_LT_LT_LT] = ACTIONS(1942), + [sym__special_characters] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [anon_sym_DOLLAR] = ACTIONS(1942), + [sym_raw_string] = ACTIONS(1942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1942), + [anon_sym_BQUOTE] = ACTIONS(1942), + [anon_sym_LT_LPAREN] = ACTIONS(1942), + [anon_sym_GT_LPAREN] = ACTIONS(1942), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), }, - [1342] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4046), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [794] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(2920), }, - [1343] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(4048), + [795] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(2922), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [796] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(2924), [sym_comment] = ACTIONS(56), }, - [1344] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1908), - [anon_sym_RBRACE] = ACTIONS(4050), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [797] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1445), + [anon_sym_RBRACE] = ACTIONS(2926), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(2928), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1345] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1910), - [anon_sym_RBRACE] = ACTIONS(4052), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [798] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1448), + [anon_sym_RBRACE] = ACTIONS(2930), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(2932), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1346] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1911), - [anon_sym_RBRACE] = ACTIONS(4038), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [799] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1450), + [anon_sym_RBRACE] = ACTIONS(2912), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(2934), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1347] = { - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1912), - [anon_sym_SEMI_SEMI] = ACTIONS(1912), - [anon_sym_PIPE_AMP] = ACTIONS(1912), - [anon_sym_AMP_AMP] = ACTIONS(1912), - [anon_sym_PIPE_PIPE] = ACTIONS(1912), - [sym__special_characters] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [anon_sym_DOLLAR] = ACTIONS(1912), - [sym_raw_string] = ACTIONS(1912), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1912), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1912), - [anon_sym_BQUOTE] = ACTIONS(1912), - [anon_sym_LT_LPAREN] = ACTIONS(1912), - [anon_sym_GT_LPAREN] = ACTIONS(1912), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1912), - [sym_word] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_LF] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1912), + [800] = { + [sym_file_descriptor] = ACTIONS(1992), + [sym__concat] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(1994), + [anon_sym_RPAREN] = ACTIONS(1994), + [anon_sym_SEMI_SEMI] = ACTIONS(1994), + [anon_sym_PIPE_AMP] = ACTIONS(1994), + [anon_sym_AMP_AMP] = ACTIONS(1994), + [anon_sym_PIPE_PIPE] = ACTIONS(1994), + [anon_sym_EQ_TILDE] = ACTIONS(1994), + [anon_sym_LT] = ACTIONS(1994), + [anon_sym_GT] = ACTIONS(1994), + [anon_sym_GT_GT] = ACTIONS(1994), + [anon_sym_AMP_GT] = ACTIONS(1994), + [anon_sym_AMP_GT_GT] = ACTIONS(1994), + [anon_sym_LT_AMP] = ACTIONS(1994), + [anon_sym_GT_AMP] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1994), + [anon_sym_LT_LT_DASH] = ACTIONS(1994), + [anon_sym_LT_LT_LT] = ACTIONS(1994), + [sym__special_characters] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [anon_sym_DOLLAR] = ACTIONS(1994), + [sym_raw_string] = ACTIONS(1994), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1994), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1994), + [anon_sym_BQUOTE] = ACTIONS(1994), + [anon_sym_LT_LPAREN] = ACTIONS(1994), + [anon_sym_GT_LPAREN] = ACTIONS(1994), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_LF] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), }, - [1348] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4054), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [801] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(2936), }, - [1349] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_RPAREN] = ACTIONS(1918), - [anon_sym_SEMI_SEMI] = ACTIONS(1918), - [anon_sym_PIPE_AMP] = ACTIONS(1918), - [anon_sym_AMP_AMP] = ACTIONS(1918), - [anon_sym_PIPE_PIPE] = ACTIONS(1918), - [sym__special_characters] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1918), - [anon_sym_DOLLAR] = ACTIONS(1918), - [sym_raw_string] = ACTIONS(1918), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1918), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1918), - [anon_sym_BQUOTE] = ACTIONS(1918), - [anon_sym_LT_LPAREN] = ACTIONS(1918), - [anon_sym_GT_LPAREN] = ACTIONS(1918), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1918), - [sym_word] = ACTIONS(1918), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_LF] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), + [802] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(2938), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1350] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4038), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [803] = { + [sym_file_descriptor] = ACTIONS(2000), + [sym__concat] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_RPAREN] = ACTIONS(2002), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [anon_sym_PIPE_AMP] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_PIPE_PIPE] = ACTIONS(2002), + [anon_sym_EQ_TILDE] = ACTIONS(2002), + [anon_sym_LT] = ACTIONS(2002), + [anon_sym_GT] = ACTIONS(2002), + [anon_sym_GT_GT] = ACTIONS(2002), + [anon_sym_AMP_GT] = ACTIONS(2002), + [anon_sym_AMP_GT_GT] = ACTIONS(2002), + [anon_sym_LT_AMP] = ACTIONS(2002), + [anon_sym_GT_AMP] = ACTIONS(2002), + [anon_sym_LT_LT] = ACTIONS(2002), + [anon_sym_LT_LT_DASH] = ACTIONS(2002), + [anon_sym_LT_LT_LT] = ACTIONS(2002), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2002), + [anon_sym_BQUOTE] = ACTIONS(2002), + [anon_sym_LT_LPAREN] = ACTIONS(2002), + [anon_sym_GT_LPAREN] = ACTIONS(2002), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2002), }, - [1351] = { - [sym__concat] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_RPAREN] = ACTIONS(2066), - [anon_sym_SEMI_SEMI] = 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(2066), - [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(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2066), - [sym_word] = ACTIONS(2066), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_LF] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2066), + [804] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(2940), }, - [1352] = { - [sym__concat] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_RPAREN] = ACTIONS(2230), - [anon_sym_SEMI_SEMI] = ACTIONS(2230), - [anon_sym_PIPE_AMP] = ACTIONS(2230), - [anon_sym_AMP_AMP] = ACTIONS(2230), - [anon_sym_PIPE_PIPE] = ACTIONS(2230), - [sym__special_characters] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2230), - [anon_sym_DOLLAR] = ACTIONS(2230), - [sym_raw_string] = ACTIONS(2230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2230), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2230), - [anon_sym_BQUOTE] = ACTIONS(2230), - [anon_sym_LT_LPAREN] = ACTIONS(2230), - [anon_sym_GT_LPAREN] = ACTIONS(2230), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2230), - [sym_word] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_LF] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), + [805] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(2912), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1353] = { - [sym_file_descriptor] = ACTIONS(2969), - [sym__concat] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_RPAREN] = ACTIONS(2971), - [anon_sym_SEMI_SEMI] = ACTIONS(2971), - [anon_sym_PIPE_AMP] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_PIPE_PIPE] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(2971), - [anon_sym_GT_GT] = ACTIONS(2971), - [anon_sym_AMP_GT] = ACTIONS(2971), - [anon_sym_AMP_GT_GT] = ACTIONS(2971), - [anon_sym_LT_AMP] = ACTIONS(2971), - [anon_sym_GT_AMP] = ACTIONS(2971), - [anon_sym_LT_LT] = ACTIONS(2971), - [anon_sym_LT_LT_DASH] = ACTIONS(2971), - [anon_sym_LT_LT_LT] = ACTIONS(2971), - [sym__special_characters] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2971), - [sym_raw_string] = ACTIONS(2971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2971), - [anon_sym_BQUOTE] = ACTIONS(2971), - [anon_sym_LT_LPAREN] = ACTIONS(2971), - [anon_sym_GT_LPAREN] = ACTIONS(2971), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), + [806] = { + [sym_file_descriptor] = ACTIONS(2156), + [sym__concat] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_RPAREN] = ACTIONS(2158), + [anon_sym_SEMI_SEMI] = ACTIONS(2158), + [anon_sym_PIPE_AMP] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_PIPE_PIPE] = ACTIONS(2158), + [anon_sym_EQ_TILDE] = ACTIONS(2158), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_GT] = ACTIONS(2158), + [anon_sym_GT_GT] = ACTIONS(2158), + [anon_sym_AMP_GT] = ACTIONS(2158), + [anon_sym_AMP_GT_GT] = ACTIONS(2158), + [anon_sym_LT_AMP] = ACTIONS(2158), + [anon_sym_GT_AMP] = ACTIONS(2158), + [anon_sym_LT_LT] = ACTIONS(2158), + [anon_sym_LT_LT_DASH] = ACTIONS(2158), + [anon_sym_LT_LT_LT] = ACTIONS(2158), + [sym__special_characters] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2158), + [anon_sym_DOLLAR] = ACTIONS(2158), + [sym_raw_string] = ACTIONS(2158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2158), + [anon_sym_BQUOTE] = ACTIONS(2158), + [anon_sym_LT_LPAREN] = ACTIONS(2158), + [anon_sym_GT_LPAREN] = ACTIONS(2158), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym_LF] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2158), }, - [1354] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4056), + [807] = { + [sym_file_descriptor] = ACTIONS(2358), + [sym__concat] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_RPAREN] = ACTIONS(2360), + [anon_sym_SEMI_SEMI] = ACTIONS(2360), + [anon_sym_PIPE_AMP] = ACTIONS(2360), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_EQ_TILDE] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_AMP_GT] = ACTIONS(2360), + [anon_sym_AMP_GT_GT] = ACTIONS(2360), + [anon_sym_LT_AMP] = ACTIONS(2360), + [anon_sym_GT_AMP] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(2360), + [anon_sym_LT_LT_DASH] = ACTIONS(2360), + [anon_sym_LT_LT_LT] = ACTIONS(2360), + [sym__special_characters] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [anon_sym_DOLLAR] = ACTIONS(2360), + [sym_raw_string] = ACTIONS(2360), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2360), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2360), + [anon_sym_BQUOTE] = ACTIONS(2360), + [anon_sym_LT_LPAREN] = ACTIONS(2360), + [anon_sym_GT_LPAREN] = ACTIONS(2360), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + }, + [808] = { + [sym_compound_statement] = STATE(1454), + [anon_sym_LBRACE] = ACTIONS(480), [sym_comment] = ACTIONS(56), }, - [1355] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4058), + [809] = { + [anon_sym_PIPE] = ACTIONS(2942), + [anon_sym_RPAREN] = ACTIONS(2942), + [anon_sym_SEMI_SEMI] = ACTIONS(2942), + [anon_sym_PIPE_AMP] = ACTIONS(2942), + [anon_sym_AMP_AMP] = ACTIONS(2942), + [anon_sym_PIPE_PIPE] = ACTIONS(2942), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2942), + [anon_sym_LF] = ACTIONS(2942), + [anon_sym_AMP] = ACTIONS(2942), + }, + [810] = { + [anon_sym_PIPE] = ACTIONS(542), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_SEMI_SEMI] = ACTIONS(2364), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(2364), + [anon_sym_PIPE_PIPE] = ACTIONS(2364), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_LF] = ACTIONS(2364), + [anon_sym_AMP] = ACTIONS(2364), + }, + [811] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(542), + [anon_sym_RPAREN] = ACTIONS(2364), + [anon_sym_SEMI_SEMI] = ACTIONS(2364), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(2364), + [anon_sym_PIPE_PIPE] = ACTIONS(2364), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(380), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(380), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(380), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(2364), + [anon_sym_LF] = ACTIONS(2364), + [anon_sym_AMP] = ACTIONS(2364), + }, + [812] = { + [sym_concatenation] = STATE(1199), + [sym_string] = STATE(1456), + [sym_simple_expansion] = STATE(1456), + [sym_string_expansion] = STATE(1456), + [sym_expansion] = STATE(1456), + [sym_command_substitution] = STATE(1456), + [sym_process_substitution] = STATE(1456), + [sym__special_characters] = ACTIONS(2944), + [anon_sym_DQUOTE] = ACTIONS(1497), + [anon_sym_DOLLAR] = ACTIONS(1499), + [sym_raw_string] = ACTIONS(2946), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1503), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1505), + [anon_sym_BQUOTE] = ACTIONS(1507), + [anon_sym_LT_LPAREN] = ACTIONS(1509), + [anon_sym_GT_LPAREN] = ACTIONS(1509), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2948), }, - [1356] = { - [anon_sym_RBRACE] = ACTIONS(4058), - [sym_comment] = ACTIONS(56), + [813] = { + [aux_sym_concatenation_repeat1] = STATE(294), + [sym_file_descriptor] = ACTIONS(1525), + [sym__concat] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(1527), + [anon_sym_RPAREN] = ACTIONS(1527), + [anon_sym_SEMI_SEMI] = ACTIONS(1527), + [anon_sym_PIPE_AMP] = ACTIONS(1527), + [anon_sym_AMP_AMP] = ACTIONS(1527), + [anon_sym_PIPE_PIPE] = ACTIONS(1527), + [anon_sym_EQ_TILDE] = ACTIONS(1527), + [anon_sym_LT] = ACTIONS(1527), + [anon_sym_GT] = ACTIONS(1527), + [anon_sym_GT_GT] = ACTIONS(1527), + [anon_sym_AMP_GT] = ACTIONS(1527), + [anon_sym_AMP_GT_GT] = ACTIONS(1527), + [anon_sym_LT_AMP] = ACTIONS(1527), + [anon_sym_GT_AMP] = ACTIONS(1527), + [anon_sym_LT_LT] = ACTIONS(1527), + [anon_sym_LT_LT_DASH] = ACTIONS(1527), + [anon_sym_LT_LT_LT] = ACTIONS(1527), + [sym__special_characters] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1527), + [anon_sym_DOLLAR] = ACTIONS(1527), + [sym_raw_string] = ACTIONS(1527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1527), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1527), + [anon_sym_BQUOTE] = ACTIONS(1527), + [anon_sym_LT_LPAREN] = ACTIONS(1527), + [anon_sym_GT_LPAREN] = ACTIONS(1527), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1527), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_LF] = ACTIONS(1527), + [anon_sym_AMP] = ACTIONS(1527), }, - [1357] = { - [sym_file_descriptor] = ACTIONS(3023), - [sym__concat] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3025), - [anon_sym_RPAREN] = ACTIONS(3025), - [anon_sym_SEMI_SEMI] = ACTIONS(3025), - [anon_sym_PIPE_AMP] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(3025), - [anon_sym_GT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_AMP_GT] = ACTIONS(3025), - [anon_sym_AMP_GT_GT] = ACTIONS(3025), - [anon_sym_LT_AMP] = ACTIONS(3025), - [anon_sym_GT_AMP] = ACTIONS(3025), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_LT_LT_DASH] = ACTIONS(3025), - [anon_sym_LT_LT_LT] = ACTIONS(3025), - [sym__special_characters] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_DOLLAR] = ACTIONS(3025), - [sym_raw_string] = ACTIONS(3025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3025), - [anon_sym_LT_LPAREN] = ACTIONS(3025), - [anon_sym_GT_LPAREN] = ACTIONS(3025), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3025), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_LF] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3025), + [814] = { + [aux_sym_concatenation_repeat1] = STATE(294), + [sym_file_descriptor] = ACTIONS(1531), + [sym__concat] = ACTIONS(520), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_RPAREN] = ACTIONS(1533), + [anon_sym_SEMI_SEMI] = ACTIONS(1533), + [anon_sym_PIPE_AMP] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1533), + [anon_sym_PIPE_PIPE] = ACTIONS(1533), + [anon_sym_EQ_TILDE] = ACTIONS(1533), + [anon_sym_LT] = ACTIONS(1533), + [anon_sym_GT] = ACTIONS(1533), + [anon_sym_GT_GT] = ACTIONS(1533), + [anon_sym_AMP_GT] = ACTIONS(1533), + [anon_sym_AMP_GT_GT] = ACTIONS(1533), + [anon_sym_LT_AMP] = ACTIONS(1533), + [anon_sym_GT_AMP] = ACTIONS(1533), + [anon_sym_LT_LT] = ACTIONS(1533), + [anon_sym_LT_LT_DASH] = ACTIONS(1533), + [anon_sym_LT_LT_LT] = ACTIONS(1533), + [sym__special_characters] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(1533), + [anon_sym_DOLLAR] = ACTIONS(1533), + [sym_raw_string] = ACTIONS(1533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1533), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1533), + [anon_sym_BQUOTE] = ACTIONS(1533), + [anon_sym_LT_LPAREN] = ACTIONS(1533), + [anon_sym_GT_LPAREN] = ACTIONS(1533), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1533), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_LF] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1533), }, - [1358] = { - [sym_concatenation] = STATE(1917), - [sym_string] = STATE(1916), - [sym_simple_expansion] = STATE(1916), - [sym_string_expansion] = STATE(1916), - [sym_expansion] = STATE(1916), - [sym_command_substitution] = STATE(1916), - [sym_process_substitution] = STATE(1916), - [anon_sym_RBRACE] = ACTIONS(4058), - [sym__special_characters] = ACTIONS(4060), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(4062), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4064), + [815] = { + [aux_sym_concatenation_repeat1] = STATE(1458), + [sym_file_descriptor] = ACTIONS(740), + [sym__concat] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2374), + [anon_sym_RPAREN] = ACTIONS(2374), + [anon_sym_SEMI_SEMI] = ACTIONS(2374), + [anon_sym_PIPE_AMP] = ACTIONS(2374), + [anon_sym_AMP_AMP] = ACTIONS(2374), + [anon_sym_PIPE_PIPE] = ACTIONS(2374), + [anon_sym_LT] = ACTIONS(2374), + [anon_sym_GT] = ACTIONS(2374), + [anon_sym_GT_GT] = ACTIONS(2374), + [anon_sym_AMP_GT] = ACTIONS(2374), + [anon_sym_AMP_GT_GT] = ACTIONS(2374), + [anon_sym_LT_AMP] = ACTIONS(2374), + [anon_sym_GT_AMP] = ACTIONS(2374), + [anon_sym_LT_LT] = ACTIONS(2374), + [anon_sym_LT_LT_DASH] = ACTIONS(2374), + [anon_sym_LT_LT_LT] = ACTIONS(2374), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_LF] = ACTIONS(2374), + [anon_sym_AMP] = ACTIONS(2374), }, - [1359] = { - [sym_file_descriptor] = ACTIONS(3068), - [sym__concat] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_RPAREN] = ACTIONS(3070), - [anon_sym_SEMI_SEMI] = ACTIONS(3070), - [anon_sym_PIPE_AMP] = ACTIONS(3070), - [anon_sym_AMP_AMP] = ACTIONS(3070), - [anon_sym_PIPE_PIPE] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_GT] = ACTIONS(3070), - [anon_sym_GT_GT] = ACTIONS(3070), - [anon_sym_AMP_GT] = ACTIONS(3070), - [anon_sym_AMP_GT_GT] = ACTIONS(3070), - [anon_sym_LT_AMP] = ACTIONS(3070), - [anon_sym_GT_AMP] = ACTIONS(3070), - [anon_sym_LT_LT] = ACTIONS(3070), - [anon_sym_LT_LT_DASH] = ACTIONS(3070), - [anon_sym_LT_LT_LT] = ACTIONS(3070), - [sym__special_characters] = ACTIONS(3070), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3070), - [sym_raw_string] = ACTIONS(3070), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3070), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3070), - [anon_sym_BQUOTE] = ACTIONS(3070), - [anon_sym_LT_LPAREN] = ACTIONS(3070), - [anon_sym_GT_LPAREN] = ACTIONS(3070), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3070), - [anon_sym_SEMI] = ACTIONS(3070), - [anon_sym_LF] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3070), + [816] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(1460), + [anon_sym_DQUOTE] = ACTIONS(2952), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, - [1360] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4066), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [817] = { + [sym_string] = STATE(1463), + [anon_sym_DQUOTE] = ACTIONS(1497), + [anon_sym_DOLLAR] = ACTIONS(2954), + [anon_sym_POUND] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(2954), + [anon_sym_AT] = ACTIONS(2954), + [anon_sym_QMARK] = ACTIONS(2954), + [anon_sym_0] = ACTIONS(2958), + [anon_sym__] = ACTIONS(2958), }, - [1361] = { - [sym_file_descriptor] = ACTIONS(3074), - [sym__concat] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(3076), - [anon_sym_RPAREN] = ACTIONS(3076), - [anon_sym_SEMI_SEMI] = ACTIONS(3076), - [anon_sym_PIPE_AMP] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3076), - [anon_sym_GT] = ACTIONS(3076), - [anon_sym_GT_GT] = ACTIONS(3076), - [anon_sym_AMP_GT] = ACTIONS(3076), - [anon_sym_AMP_GT_GT] = ACTIONS(3076), - [anon_sym_LT_AMP] = ACTIONS(3076), - [anon_sym_GT_AMP] = ACTIONS(3076), - [anon_sym_LT_LT] = ACTIONS(3076), - [anon_sym_LT_LT_DASH] = ACTIONS(3076), - [anon_sym_LT_LT_LT] = ACTIONS(3076), - [sym__special_characters] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR] = ACTIONS(3076), - [sym_raw_string] = ACTIONS(3076), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3076), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3076), - [anon_sym_BQUOTE] = ACTIONS(3076), - [anon_sym_LT_LPAREN] = ACTIONS(3076), - [anon_sym_GT_LPAREN] = ACTIONS(3076), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3076), - [anon_sym_SEMI] = ACTIONS(3076), - [anon_sym_LF] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3076), - }, - [1362] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4068), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1363] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1364] = { - [sym_file_descriptor] = ACTIONS(3080), - [sym__concat] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(3082), - [anon_sym_RPAREN] = ACTIONS(3082), - [anon_sym_SEMI_SEMI] = ACTIONS(3082), - [anon_sym_PIPE_AMP] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3082), - [anon_sym_GT_GT] = ACTIONS(3082), - [anon_sym_AMP_GT] = ACTIONS(3082), - [anon_sym_AMP_GT_GT] = ACTIONS(3082), - [anon_sym_LT_AMP] = ACTIONS(3082), - [anon_sym_GT_AMP] = ACTIONS(3082), - [anon_sym_LT_LT] = ACTIONS(3082), - [anon_sym_LT_LT_DASH] = ACTIONS(3082), - [anon_sym_LT_LT_LT] = ACTIONS(3082), - [sym__special_characters] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_DOLLAR] = ACTIONS(3082), - [sym_raw_string] = ACTIONS(3082), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3082), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3082), - [anon_sym_BQUOTE] = ACTIONS(3082), - [anon_sym_LT_LPAREN] = ACTIONS(3082), - [anon_sym_GT_LPAREN] = ACTIONS(3082), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3082), - [anon_sym_LF] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3082), - }, - [1365] = { - [sym_file_redirect] = STATE(1711), - [sym_file_descriptor] = ACTIONS(2599), - [anon_sym_PIPE] = ACTIONS(2575), - [anon_sym_RPAREN] = ACTIONS(2575), - [anon_sym_SEMI_SEMI] = ACTIONS(2575), - [anon_sym_PIPE_AMP] = ACTIONS(2575), - [anon_sym_AMP_AMP] = ACTIONS(2575), - [anon_sym_PIPE_PIPE] = ACTIONS(2575), - [anon_sym_LT] = ACTIONS(2601), - [anon_sym_GT] = ACTIONS(2601), - [anon_sym_GT_GT] = ACTIONS(2601), - [anon_sym_AMP_GT] = ACTIONS(2601), - [anon_sym_AMP_GT_GT] = ACTIONS(2601), - [anon_sym_LT_AMP] = ACTIONS(2601), - [anon_sym_GT_AMP] = ACTIONS(2601), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2575), - [anon_sym_LF] = ACTIONS(2575), - [anon_sym_AMP] = ACTIONS(2575), - }, - [1366] = { - [aux_sym_concatenation_repeat1] = STATE(1369), - [sym_file_descriptor] = ACTIONS(1199), - [sym__concat] = ACTIONS(2761), - [anon_sym_PIPE] = ACTIONS(3638), - [anon_sym_RPAREN] = ACTIONS(3638), - [anon_sym_SEMI_SEMI] = ACTIONS(3638), - [anon_sym_PIPE_AMP] = ACTIONS(3638), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_PIPE_PIPE] = ACTIONS(3638), - [anon_sym_LT] = ACTIONS(3638), - [anon_sym_GT] = ACTIONS(3638), - [anon_sym_GT_GT] = ACTIONS(3638), - [anon_sym_AMP_GT] = ACTIONS(3638), - [anon_sym_AMP_GT_GT] = ACTIONS(3638), - [anon_sym_LT_AMP] = ACTIONS(3638), - [anon_sym_GT_AMP] = ACTIONS(3638), - [anon_sym_LT_LT] = ACTIONS(3638), - [anon_sym_LT_LT_DASH] = ACTIONS(3638), - [anon_sym_LT_LT_LT] = ACTIONS(3638), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym_LF] = ACTIONS(3638), - [anon_sym_AMP] = ACTIONS(3638), - }, - [1367] = { - [aux_sym_concatenation_repeat1] = STATE(1369), - [sym_file_descriptor] = ACTIONS(1203), - [sym__concat] = ACTIONS(2761), - [anon_sym_PIPE] = ACTIONS(3640), - [anon_sym_RPAREN] = ACTIONS(3640), - [anon_sym_SEMI_SEMI] = ACTIONS(3640), - [anon_sym_PIPE_AMP] = ACTIONS(3640), - [anon_sym_AMP_AMP] = ACTIONS(3640), - [anon_sym_PIPE_PIPE] = ACTIONS(3640), - [anon_sym_LT] = ACTIONS(3640), - [anon_sym_GT] = ACTIONS(3640), - [anon_sym_GT_GT] = ACTIONS(3640), - [anon_sym_AMP_GT] = ACTIONS(3640), - [anon_sym_AMP_GT_GT] = ACTIONS(3640), - [anon_sym_LT_AMP] = ACTIONS(3640), - [anon_sym_GT_AMP] = ACTIONS(3640), - [anon_sym_LT_LT] = ACTIONS(3640), - [anon_sym_LT_LT_DASH] = ACTIONS(3640), - [anon_sym_LT_LT_LT] = ACTIONS(3640), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3640), - [anon_sym_LF] = ACTIONS(3640), - [anon_sym_AMP] = ACTIONS(3640), - }, - [1368] = { - [sym_string] = STATE(1920), - [sym_simple_expansion] = STATE(1920), - [sym_string_expansion] = STATE(1920), - [sym_expansion] = STATE(1920), - [sym_command_substitution] = STATE(1920), - [sym_process_substitution] = STATE(1920), - [sym__special_characters] = ACTIONS(4070), - [anon_sym_DQUOTE] = ACTIONS(1459), - [anon_sym_DOLLAR] = ACTIONS(1461), - [sym_raw_string] = ACTIONS(4072), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1465), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1467), - [anon_sym_BQUOTE] = ACTIONS(1469), - [anon_sym_LT_LPAREN] = ACTIONS(1471), - [anon_sym_GT_LPAREN] = ACTIONS(1471), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4070), - }, - [1369] = { - [aux_sym_concatenation_repeat1] = STATE(1921), - [sym_file_descriptor] = ACTIONS(760), - [sym__concat] = ACTIONS(2761), - [anon_sym_PIPE] = ACTIONS(762), - [anon_sym_RPAREN] = ACTIONS(762), - [anon_sym_SEMI_SEMI] = ACTIONS(762), - [anon_sym_PIPE_AMP] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(762), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [anon_sym_LT] = ACTIONS(762), - [anon_sym_GT] = ACTIONS(762), - [anon_sym_GT_GT] = ACTIONS(762), - [anon_sym_AMP_GT] = ACTIONS(762), - [anon_sym_AMP_GT_GT] = ACTIONS(762), - [anon_sym_LT_AMP] = ACTIONS(762), - [anon_sym_GT_AMP] = ACTIONS(762), - [anon_sym_LT_LT] = ACTIONS(762), - [anon_sym_LT_LT_DASH] = ACTIONS(762), - [anon_sym_LT_LT_LT] = ACTIONS(762), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(762), - [anon_sym_LF] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(762), - }, - [1370] = { - [sym_file_descriptor] = ACTIONS(764), - [sym__concat] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(766), - [anon_sym_SEMI_SEMI] = ACTIONS(766), - [anon_sym_PIPE_AMP] = ACTIONS(766), - [anon_sym_AMP_AMP] = ACTIONS(766), - [anon_sym_PIPE_PIPE] = ACTIONS(766), - [anon_sym_LT] = ACTIONS(766), - [anon_sym_GT] = ACTIONS(766), - [anon_sym_GT_GT] = ACTIONS(766), - [anon_sym_AMP_GT] = ACTIONS(766), - [anon_sym_AMP_GT_GT] = ACTIONS(766), - [anon_sym_LT_AMP] = ACTIONS(766), - [anon_sym_GT_AMP] = ACTIONS(766), - [anon_sym_LT_LT] = ACTIONS(766), - [anon_sym_LT_LT_DASH] = ACTIONS(766), - [anon_sym_LT_LT_LT] = ACTIONS(766), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(766), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(766), - }, - [1371] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(4074), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [1372] = { - [sym_file_descriptor] = ACTIONS(796), - [sym__concat] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(798), - [anon_sym_RPAREN] = ACTIONS(798), - [anon_sym_SEMI_SEMI] = ACTIONS(798), - [anon_sym_PIPE_AMP] = ACTIONS(798), - [anon_sym_AMP_AMP] = ACTIONS(798), - [anon_sym_PIPE_PIPE] = ACTIONS(798), - [anon_sym_LT] = ACTIONS(798), - [anon_sym_GT] = ACTIONS(798), - [anon_sym_GT_GT] = ACTIONS(798), - [anon_sym_AMP_GT] = ACTIONS(798), - [anon_sym_AMP_GT_GT] = ACTIONS(798), - [anon_sym_LT_AMP] = ACTIONS(798), - [anon_sym_GT_AMP] = ACTIONS(798), - [anon_sym_LT_LT] = ACTIONS(798), - [anon_sym_LT_LT_DASH] = ACTIONS(798), - [anon_sym_LT_LT_LT] = ACTIONS(798), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(798), - [anon_sym_LF] = ACTIONS(798), - [anon_sym_AMP] = ACTIONS(798), - }, - [1373] = { - [sym_file_descriptor] = ACTIONS(800), - [sym__concat] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(802), - [anon_sym_RPAREN] = ACTIONS(802), - [anon_sym_SEMI_SEMI] = ACTIONS(802), - [anon_sym_PIPE_AMP] = ACTIONS(802), - [anon_sym_AMP_AMP] = ACTIONS(802), - [anon_sym_PIPE_PIPE] = ACTIONS(802), - [anon_sym_LT] = ACTIONS(802), - [anon_sym_GT] = ACTIONS(802), - [anon_sym_GT_GT] = ACTIONS(802), - [anon_sym_AMP_GT] = ACTIONS(802), - [anon_sym_AMP_GT_GT] = ACTIONS(802), - [anon_sym_LT_AMP] = ACTIONS(802), - [anon_sym_GT_AMP] = ACTIONS(802), - [anon_sym_LT_LT] = ACTIONS(802), - [anon_sym_LT_LT_DASH] = ACTIONS(802), - [anon_sym_LT_LT_LT] = ACTIONS(802), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(802), - [anon_sym_LF] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(802), - }, - [1374] = { - [sym_file_descriptor] = ACTIONS(804), - [sym__concat] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(806), - [anon_sym_RPAREN] = ACTIONS(806), - [anon_sym_SEMI_SEMI] = ACTIONS(806), - [anon_sym_PIPE_AMP] = ACTIONS(806), - [anon_sym_AMP_AMP] = ACTIONS(806), - [anon_sym_PIPE_PIPE] = ACTIONS(806), - [anon_sym_LT] = ACTIONS(806), - [anon_sym_GT] = ACTIONS(806), - [anon_sym_GT_GT] = ACTIONS(806), - [anon_sym_AMP_GT] = ACTIONS(806), - [anon_sym_AMP_GT_GT] = ACTIONS(806), - [anon_sym_LT_AMP] = ACTIONS(806), - [anon_sym_GT_AMP] = ACTIONS(806), - [anon_sym_LT_LT] = ACTIONS(806), - [anon_sym_LT_LT_DASH] = ACTIONS(806), - [anon_sym_LT_LT_LT] = ACTIONS(806), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(806), - }, - [1375] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(4076), - [sym_comment] = ACTIONS(56), - }, - [1376] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1925), - [anon_sym_RBRACE] = ACTIONS(4078), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1377] = { - [sym_subscript] = STATE(1929), - [sym_variable_name] = ACTIONS(4080), - [anon_sym_DOLLAR] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4082), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4084), - [anon_sym_STAR] = ACTIONS(4082), - [anon_sym_AT] = ACTIONS(4082), - [anon_sym_QMARK] = ACTIONS(4082), - [anon_sym_0] = ACTIONS(4086), - [anon_sym__] = ACTIONS(4086), - }, - [1378] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1931), - [anon_sym_RBRACE] = ACTIONS(4088), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1379] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1933), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1380] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4092), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [1381] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4092), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1382] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(4092), - [sym_comment] = ACTIONS(56), - }, - [1383] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(4092), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1384] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4094), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [1385] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4094), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1386] = { - [anon_sym_PIPE] = ACTIONS(4096), - [anon_sym_RPAREN] = ACTIONS(4096), - [anon_sym_SEMI_SEMI] = ACTIONS(4096), - [anon_sym_PIPE_AMP] = ACTIONS(4096), - [anon_sym_AMP_AMP] = ACTIONS(4096), - [anon_sym_PIPE_PIPE] = ACTIONS(4096), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4096), - [anon_sym_LF] = ACTIONS(4096), - [anon_sym_AMP] = ACTIONS(4096), - }, - [1387] = { - [sym_file_redirect] = STATE(202), - [sym_heredoc_redirect] = STATE(202), - [sym_herestring_redirect] = STATE(202), - [aux_sym_while_statement_repeat1] = STATE(800), - [sym_file_descriptor] = ACTIONS(540), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_RPAREN] = ACTIONS(3694), - [anon_sym_SEMI_SEMI] = ACTIONS(3694), - [anon_sym_PIPE_AMP] = ACTIONS(3694), - [anon_sym_AMP_AMP] = ACTIONS(3694), - [anon_sym_PIPE_PIPE] = ACTIONS(3694), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_GT] = ACTIONS(542), - [anon_sym_GT_GT] = ACTIONS(542), - [anon_sym_AMP_GT] = ACTIONS(542), - [anon_sym_AMP_GT_GT] = ACTIONS(542), - [anon_sym_LT_AMP] = ACTIONS(542), - [anon_sym_GT_AMP] = ACTIONS(542), - [anon_sym_LT_LT] = ACTIONS(348), - [anon_sym_LT_LT_DASH] = ACTIONS(348), - [anon_sym_LT_LT_LT] = ACTIONS(544), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3694), - [anon_sym_LF] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3694), - }, - [1388] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_EQ_TILDE] = ACTIONS(4098), - [anon_sym_RBRACK] = ACTIONS(2969), - [sym__special_characters] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2969), - [anon_sym_DOLLAR] = ACTIONS(4098), - [sym_raw_string] = ACTIONS(2969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2969), - [anon_sym_BQUOTE] = ACTIONS(2969), - [anon_sym_LT_LPAREN] = ACTIONS(2969), - [anon_sym_GT_LPAREN] = ACTIONS(2969), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2971), - }, - [1389] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4100), - [sym_comment] = ACTIONS(56), - }, - [1390] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4102), - [sym_comment] = ACTIONS(56), - }, - [1391] = { - [anon_sym_RBRACE] = ACTIONS(4102), - [sym_comment] = ACTIONS(56), - }, - [1392] = { - [sym__concat] = ACTIONS(3023), - [anon_sym_EQ_TILDE] = ACTIONS(4104), - [anon_sym_RBRACK] = ACTIONS(3023), - [sym__special_characters] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR] = ACTIONS(4104), - [sym_raw_string] = ACTIONS(3023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3023), - [anon_sym_BQUOTE] = ACTIONS(3023), - [anon_sym_LT_LPAREN] = ACTIONS(3023), - [anon_sym_GT_LPAREN] = ACTIONS(3023), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3025), - }, - [1393] = { - [sym_concatenation] = STATE(1940), - [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), - [anon_sym_RBRACE] = ACTIONS(4102), - [sym__special_characters] = ACTIONS(4106), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(4108), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4110), - }, - [1394] = { - [sym__concat] = ACTIONS(3068), - [anon_sym_EQ_TILDE] = ACTIONS(4112), - [anon_sym_RBRACK] = ACTIONS(3068), - [sym__special_characters] = ACTIONS(3070), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(4112), - [sym_raw_string] = ACTIONS(3068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3068), - [anon_sym_BQUOTE] = ACTIONS(3068), - [anon_sym_LT_LPAREN] = ACTIONS(3068), - [anon_sym_GT_LPAREN] = ACTIONS(3068), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3070), - }, - [1395] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4114), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1396] = { - [sym__concat] = ACTIONS(3074), - [anon_sym_EQ_TILDE] = ACTIONS(4116), - [anon_sym_RBRACK] = ACTIONS(3074), - [sym__special_characters] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_DOLLAR] = ACTIONS(4116), - [sym_raw_string] = ACTIONS(3074), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3074), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3074), - [anon_sym_BQUOTE] = ACTIONS(3074), - [anon_sym_LT_LPAREN] = ACTIONS(3074), - [anon_sym_GT_LPAREN] = ACTIONS(3074), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3076), - }, - [1397] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1398] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4102), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1399] = { - [sym__concat] = ACTIONS(3080), - [anon_sym_EQ_TILDE] = ACTIONS(4120), - [anon_sym_RBRACK] = ACTIONS(3080), - [sym__special_characters] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3080), - [anon_sym_DOLLAR] = ACTIONS(4120), - [sym_raw_string] = ACTIONS(3080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3080), - [anon_sym_BQUOTE] = ACTIONS(3080), - [anon_sym_LT_LPAREN] = ACTIONS(3080), - [anon_sym_GT_LPAREN] = ACTIONS(3080), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3082), - }, - [1400] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_EQ_TILDE] = ACTIONS(4098), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2969), - [sym__special_characters] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2969), - [anon_sym_DOLLAR] = ACTIONS(4098), - [sym_raw_string] = ACTIONS(2969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2969), - [anon_sym_BQUOTE] = ACTIONS(2969), - [anon_sym_LT_LPAREN] = ACTIONS(2969), - [anon_sym_GT_LPAREN] = ACTIONS(2969), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2971), - }, - [1401] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4122), - [sym_comment] = ACTIONS(56), - }, - [1402] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4124), - [sym_comment] = ACTIONS(56), - }, - [1403] = { - [anon_sym_RBRACE] = ACTIONS(4124), - [sym_comment] = ACTIONS(56), - }, - [1404] = { - [sym__concat] = ACTIONS(3023), - [anon_sym_EQ_TILDE] = ACTIONS(4104), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3023), - [sym__special_characters] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR] = ACTIONS(4104), - [sym_raw_string] = ACTIONS(3023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3023), - [anon_sym_BQUOTE] = ACTIONS(3023), - [anon_sym_LT_LPAREN] = ACTIONS(3023), - [anon_sym_GT_LPAREN] = ACTIONS(3023), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3025), - }, - [1405] = { - [sym_concatenation] = STATE(1947), - [sym_string] = STATE(1946), - [sym_simple_expansion] = STATE(1946), - [sym_string_expansion] = STATE(1946), - [sym_expansion] = STATE(1946), - [sym_command_substitution] = STATE(1946), - [sym_process_substitution] = STATE(1946), - [anon_sym_RBRACE] = ACTIONS(4124), - [sym__special_characters] = ACTIONS(4126), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(4128), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4130), - }, - [1406] = { - [sym__concat] = ACTIONS(3068), - [anon_sym_EQ_TILDE] = ACTIONS(4112), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3068), - [sym__special_characters] = ACTIONS(3070), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(4112), - [sym_raw_string] = ACTIONS(3068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3068), - [anon_sym_BQUOTE] = ACTIONS(3068), - [anon_sym_LT_LPAREN] = ACTIONS(3068), - [anon_sym_GT_LPAREN] = ACTIONS(3068), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3070), - }, - [1407] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4132), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1408] = { - [sym__concat] = ACTIONS(3074), - [anon_sym_EQ_TILDE] = ACTIONS(4116), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3074), - [sym__special_characters] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_DOLLAR] = ACTIONS(4116), - [sym_raw_string] = ACTIONS(3074), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3074), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3074), - [anon_sym_BQUOTE] = ACTIONS(3074), - [anon_sym_LT_LPAREN] = ACTIONS(3074), - [anon_sym_GT_LPAREN] = ACTIONS(3074), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3076), - }, - [1409] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4134), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1410] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4124), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1411] = { - [sym__concat] = ACTIONS(3080), - [anon_sym_EQ_TILDE] = ACTIONS(4120), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3080), - [sym__special_characters] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3080), - [anon_sym_DOLLAR] = ACTIONS(4120), - [sym_raw_string] = ACTIONS(3080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3080), - [anon_sym_BQUOTE] = ACTIONS(3080), - [anon_sym_LT_LPAREN] = ACTIONS(3080), - [anon_sym_GT_LPAREN] = ACTIONS(3080), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3082), - }, - [1412] = { - [sym_variable_name] = ACTIONS(2382), + [818] = { + [aux_sym_concatenation_repeat1] = STATE(1458), + [sym_file_descriptor] = ACTIONS(754), + [sym__concat] = ACTIONS(2950), [anon_sym_PIPE] = ACTIONS(2384), [anon_sym_RPAREN] = ACTIONS(2384), [anon_sym_SEMI_SEMI] = ACTIONS(2384), [anon_sym_PIPE_AMP] = ACTIONS(2384), [anon_sym_AMP_AMP] = ACTIONS(2384), [anon_sym_PIPE_PIPE] = ACTIONS(2384), - [sym__special_characters] = ACTIONS(2384), - [anon_sym_DQUOTE] = ACTIONS(2384), - [anon_sym_DOLLAR] = ACTIONS(2384), - [sym_raw_string] = ACTIONS(2384), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2384), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2384), - [anon_sym_BQUOTE] = ACTIONS(2384), - [anon_sym_LT_LPAREN] = ACTIONS(2384), - [anon_sym_GT_LPAREN] = ACTIONS(2384), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2384), - [sym_word] = ACTIONS(2384), + [anon_sym_LT] = ACTIONS(2384), + [anon_sym_GT] = ACTIONS(2384), + [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym_AMP_GT] = ACTIONS(2384), + [anon_sym_AMP_GT_GT] = ACTIONS(2384), + [anon_sym_LT_AMP] = ACTIONS(2384), + [anon_sym_GT_AMP] = ACTIONS(2384), + [anon_sym_LT_LT] = ACTIONS(2384), + [anon_sym_LT_LT_DASH] = ACTIONS(2384), + [anon_sym_LT_LT_LT] = ACTIONS(2384), + [sym_comment] = ACTIONS(182), [anon_sym_SEMI] = ACTIONS(2384), [anon_sym_LF] = ACTIONS(2384), [anon_sym_AMP] = ACTIONS(2384), }, - [1413] = { - [sym_concatenation] = STATE(642), - [sym_string] = STATE(637), - [sym_simple_expansion] = STATE(637), - [sym_string_expansion] = STATE(637), - [sym_expansion] = STATE(637), - [sym_command_substitution] = STATE(637), - [sym_process_substitution] = STATE(637), - [aux_sym_for_statement_repeat1] = STATE(1202), - [anon_sym_RPAREN] = ACTIONS(4136), - [sym__special_characters] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1245), - [sym_raw_string] = ACTIONS(1247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1249), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), - [anon_sym_BQUOTE] = ACTIONS(1253), - [anon_sym_LT_LPAREN] = ACTIONS(1255), - [anon_sym_GT_LPAREN] = ACTIONS(1255), + [819] = { + [sym_subscript] = STATE(1468), + [sym_variable_name] = ACTIONS(2960), + [anon_sym_DOLLAR] = ACTIONS(2962), + [anon_sym_POUND] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2962), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2966), + [anon_sym_STAR] = ACTIONS(2962), + [anon_sym_AT] = ACTIONS(2962), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_0] = ACTIONS(2968), + [anon_sym__] = ACTIONS(2968), + }, + [820] = { + [sym_for_statement] = STATE(1469), + [sym_while_statement] = STATE(1469), + [sym_if_statement] = STATE(1469), + [sym_case_statement] = STATE(1469), + [sym_function_definition] = STATE(1469), + [sym_subshell] = STATE(1469), + [sym_pipeline] = STATE(1469), + [sym_list] = STATE(1469), + [sym_command] = STATE(1469), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1469), + [sym_variable_assignment] = STATE(1470), + [sym_declaration_command] = STATE(1469), + [sym_unset_command] = STATE(1469), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [821] = { + [sym_for_statement] = STATE(1471), + [sym_while_statement] = STATE(1471), + [sym_if_statement] = STATE(1471), + [sym_case_statement] = STATE(1471), + [sym_function_definition] = STATE(1471), + [sym_subshell] = STATE(1471), + [sym_pipeline] = STATE(1471), + [sym_list] = STATE(1471), + [sym_command] = STATE(1471), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(1471), + [sym_variable_assignment] = STATE(1472), + [sym_declaration_command] = STATE(1471), + [sym_unset_command] = STATE(1471), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), + }, + [822] = { + [sym_for_statement] = STATE(1473), + [sym_while_statement] = STATE(1473), + [sym_if_statement] = STATE(1473), + [sym_case_statement] = STATE(1473), + [sym_function_definition] = STATE(1473), + [sym_subshell] = STATE(1473), + [sym_pipeline] = STATE(1473), + [sym_list] = STATE(1473), + [sym_command] = STATE(1473), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1473), + [sym_variable_assignment] = STATE(1474), + [sym_declaration_command] = STATE(1473), + [sym_unset_command] = STATE(1473), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [823] = { + [aux_sym_concatenation_repeat1] = STATE(1458), + [sym_file_descriptor] = ACTIONS(2412), + [sym__concat] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2414), + [anon_sym_RPAREN] = ACTIONS(2414), + [anon_sym_SEMI_SEMI] = ACTIONS(2414), + [anon_sym_PIPE_AMP] = ACTIONS(2414), + [anon_sym_AMP_AMP] = ACTIONS(2414), + [anon_sym_PIPE_PIPE] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2414), + [anon_sym_GT] = ACTIONS(2414), + [anon_sym_GT_GT] = ACTIONS(2414), + [anon_sym_AMP_GT] = ACTIONS(2414), + [anon_sym_AMP_GT_GT] = ACTIONS(2414), + [anon_sym_LT_AMP] = ACTIONS(2414), + [anon_sym_GT_AMP] = ACTIONS(2414), + [anon_sym_LT_LT] = ACTIONS(2414), + [anon_sym_LT_LT_DASH] = ACTIONS(2414), + [anon_sym_LT_LT_LT] = ACTIONS(2414), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym_LF] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2414), + }, + [824] = { + [aux_sym_concatenation_repeat1] = STATE(1458), + [sym_file_descriptor] = ACTIONS(2416), + [sym__concat] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_RPAREN] = ACTIONS(2418), + [anon_sym_SEMI_SEMI] = ACTIONS(2418), + [anon_sym_PIPE_AMP] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2418), + [anon_sym_PIPE_PIPE] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_GT] = ACTIONS(2418), + [anon_sym_AMP_GT] = ACTIONS(2418), + [anon_sym_AMP_GT_GT] = ACTIONS(2418), + [anon_sym_LT_AMP] = ACTIONS(2418), + [anon_sym_GT_AMP] = ACTIONS(2418), + [anon_sym_LT_LT] = ACTIONS(2418), + [anon_sym_LT_LT_DASH] = ACTIONS(2418), + [anon_sym_LT_LT_LT] = ACTIONS(2418), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_LF] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2418), + }, + [825] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(825), + [sym_file_descriptor] = ACTIONS(2970), + [anon_sym_PIPE] = ACTIONS(2423), + [anon_sym_RPAREN] = ACTIONS(2423), + [anon_sym_SEMI_SEMI] = ACTIONS(2423), + [anon_sym_PIPE_AMP] = ACTIONS(2423), + [anon_sym_AMP_AMP] = ACTIONS(2423), + [anon_sym_PIPE_PIPE] = ACTIONS(2423), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_GT] = ACTIONS(2973), + [anon_sym_GT_GT] = ACTIONS(2973), + [anon_sym_AMP_GT] = ACTIONS(2973), + [anon_sym_AMP_GT_GT] = ACTIONS(2973), + [anon_sym_LT_AMP] = ACTIONS(2973), + [anon_sym_GT_AMP] = ACTIONS(2973), + [anon_sym_LT_LT] = ACTIONS(2428), + [anon_sym_LT_LT_DASH] = ACTIONS(2428), + [anon_sym_LT_LT_LT] = ACTIONS(2976), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2423), + [anon_sym_LF] = ACTIONS(2423), + [anon_sym_AMP] = ACTIONS(2423), + }, + [826] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(825), + [sym_file_descriptor] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(2434), + [anon_sym_RPAREN] = ACTIONS(2434), + [anon_sym_SEMI_SEMI] = ACTIONS(2434), + [anon_sym_PIPE_AMP] = ACTIONS(2434), + [anon_sym_AMP_AMP] = ACTIONS(2434), + [anon_sym_PIPE_PIPE] = ACTIONS(2434), + [anon_sym_LT] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_AMP_GT] = ACTIONS(554), + [anon_sym_AMP_GT_GT] = ACTIONS(554), + [anon_sym_LT_AMP] = ACTIONS(554), + [anon_sym_GT_AMP] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(358), + [anon_sym_LT_LT_DASH] = ACTIONS(358), + [anon_sym_LT_LT_LT] = ACTIONS(556), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym_LF] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2434), + }, + [827] = { + [sym_concatenation] = STATE(208), + [sym_string] = STATE(321), + [sym_simple_expansion] = STATE(321), + [sym_string_expansion] = STATE(321), + [sym_expansion] = STATE(321), + [sym_command_substitution] = STATE(321), + [sym_process_substitution] = STATE(321), + [aux_sym_command_repeat2] = STATE(827), + [sym_file_descriptor] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1533), + [anon_sym_RPAREN] = ACTIONS(1533), + [anon_sym_SEMI_SEMI] = ACTIONS(1533), + [anon_sym_PIPE_AMP] = ACTIONS(1533), + [anon_sym_AMP_AMP] = ACTIONS(1533), + [anon_sym_PIPE_PIPE] = ACTIONS(1533), + [anon_sym_EQ_TILDE] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(1533), + [anon_sym_GT] = ACTIONS(1533), + [anon_sym_GT_GT] = ACTIONS(1533), + [anon_sym_AMP_GT] = ACTIONS(1533), + [anon_sym_AMP_GT_GT] = ACTIONS(1533), + [anon_sym_LT_AMP] = ACTIONS(1533), + [anon_sym_GT_AMP] = ACTIONS(1533), + [anon_sym_LT_LT] = ACTIONS(1533), + [anon_sym_LT_LT_DASH] = ACTIONS(1533), + [anon_sym_LT_LT_LT] = ACTIONS(1533), + [sym__special_characters] = ACTIONS(2982), + [anon_sym_DQUOTE] = ACTIONS(2985), + [anon_sym_DOLLAR] = ACTIONS(2988), + [sym_raw_string] = ACTIONS(2991), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2994), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2997), + [anon_sym_BQUOTE] = ACTIONS(3000), + [anon_sym_LT_LPAREN] = ACTIONS(3003), + [anon_sym_GT_LPAREN] = ACTIONS(3003), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2991), + [anon_sym_SEMI] = ACTIONS(1533), + [anon_sym_LF] = ACTIONS(1533), + [anon_sym_AMP] = ACTIONS(1533), + }, + [828] = { + [sym_file_descriptor] = ACTIONS(1080), + [sym_variable_name] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(3006), + [anon_sym_function] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1080), + [anon_sym_declare] = ACTIONS(1082), + [anon_sym_typeset] = ACTIONS(1082), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_readonly] = ACTIONS(1082), + [anon_sym_local] = ACTIONS(1082), + [anon_sym_unset] = ACTIONS(1082), + [anon_sym_unsetenv] = ACTIONS(1082), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1080), + [anon_sym_LT_AMP] = ACTIONS(1080), + [anon_sym_GT_AMP] = ACTIONS(1080), + [sym__special_characters] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(1080), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1080), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1080), + [anon_sym_BQUOTE] = ACTIONS(1080), + [anon_sym_LT_LPAREN] = ACTIONS(1080), + [anon_sym_GT_LPAREN] = ACTIONS(1080), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1084), + }, + [829] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [sym_concatenation] = STATE(208), + [sym_string] = STATE(321), + [sym_simple_expansion] = STATE(321), + [sym_string_expansion] = STATE(321), + [sym_expansion] = STATE(321), + [sym_command_substitution] = STATE(321), + [sym_process_substitution] = STATE(321), + [aux_sym_while_statement_repeat1] = STATE(1476), + [aux_sym_command_repeat2] = STATE(827), + [sym_file_descriptor] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(2434), + [anon_sym_RPAREN] = ACTIONS(2434), + [anon_sym_SEMI_SEMI] = ACTIONS(2434), + [anon_sym_PIPE_AMP] = ACTIONS(2434), + [anon_sym_AMP_AMP] = ACTIONS(2434), + [anon_sym_PIPE_PIPE] = ACTIONS(2434), + [anon_sym_EQ_TILDE] = ACTIONS(552), + [anon_sym_LT] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_AMP_GT] = ACTIONS(554), + [anon_sym_AMP_GT_GT] = ACTIONS(554), + [anon_sym_LT_AMP] = ACTIONS(554), + [anon_sym_GT_AMP] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(358), + [anon_sym_LT_LT_DASH] = ACTIONS(358), + [anon_sym_LT_LT_LT] = ACTIONS(556), + [sym__special_characters] = ACTIONS(558), + [anon_sym_DQUOTE] = ACTIONS(560), + [anon_sym_DOLLAR] = ACTIONS(562), + [sym_raw_string] = ACTIONS(564), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(566), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(568), + [anon_sym_BQUOTE] = ACTIONS(570), + [anon_sym_LT_LPAREN] = ACTIONS(572), + [anon_sym_GT_LPAREN] = ACTIONS(572), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(564), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym_LF] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2434), + }, + [830] = { + [sym__concat] = ACTIONS(1858), + [anon_sym_EQ_TILDE] = ACTIONS(3008), + [anon_sym_RBRACK] = ACTIONS(1858), + [sym__special_characters] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), + [anon_sym_BQUOTE] = ACTIONS(1858), + [anon_sym_LT_LPAREN] = ACTIONS(1858), + [anon_sym_GT_LPAREN] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1860), + }, + [831] = { + [aux_sym_concatenation_repeat1] = STATE(831), + [sym__concat] = ACTIONS(3010), + [anon_sym_EQ_TILDE] = ACTIONS(3008), + [anon_sym_RBRACK] = ACTIONS(1858), + [sym__special_characters] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), + [anon_sym_BQUOTE] = ACTIONS(1858), + [anon_sym_LT_LPAREN] = ACTIONS(1858), + [anon_sym_GT_LPAREN] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1860), + }, + [832] = { + [sym__concat] = ACTIONS(1895), + [anon_sym_EQ_TILDE] = ACTIONS(3013), + [anon_sym_RBRACK] = ACTIONS(1895), + [sym__special_characters] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(3013), + [sym_raw_string] = ACTIONS(1895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1895), + [anon_sym_BQUOTE] = ACTIONS(1895), + [anon_sym_LT_LPAREN] = ACTIONS(1895), + [anon_sym_GT_LPAREN] = ACTIONS(1895), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1897), + }, + [833] = { + [sym_concatenation] = STATE(1480), + [sym_string] = STATE(1479), + [sym_simple_expansion] = STATE(1479), + [sym_string_expansion] = STATE(1479), + [sym_expansion] = STATE(1479), + [sym_command_substitution] = STATE(1479), + [sym_process_substitution] = STATE(1479), + [anon_sym_RBRACE] = ACTIONS(3015), + [sym__special_characters] = ACTIONS(3017), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(3019), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3021), + }, + [834] = { + [sym__concat] = ACTIONS(1940), + [anon_sym_EQ_TILDE] = ACTIONS(3023), + [anon_sym_RBRACK] = ACTIONS(1940), + [sym__special_characters] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(3023), + [sym_raw_string] = ACTIONS(1940), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1940), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [anon_sym_LT_LPAREN] = ACTIONS(1940), + [anon_sym_GT_LPAREN] = ACTIONS(1940), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1942), + }, + [835] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3025), + }, + [836] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3027), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [837] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(3029), + [sym_comment] = ACTIONS(56), + }, + [838] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1486), + [anon_sym_RBRACE] = ACTIONS(3031), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3033), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [839] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1489), + [anon_sym_RBRACE] = ACTIONS(3035), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3037), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [840] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1491), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3039), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [841] = { + [sym__concat] = ACTIONS(1992), + [anon_sym_EQ_TILDE] = ACTIONS(3041), + [anon_sym_RBRACK] = ACTIONS(1992), + [sym__special_characters] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1992), + [anon_sym_DOLLAR] = ACTIONS(3041), + [sym_raw_string] = ACTIONS(1992), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1992), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1992), + [anon_sym_BQUOTE] = ACTIONS(1992), + [anon_sym_LT_LPAREN] = ACTIONS(1992), + [anon_sym_GT_LPAREN] = ACTIONS(1992), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1994), + }, + [842] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3043), + }, + [843] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [844] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_EQ_TILDE] = ACTIONS(3047), + [anon_sym_RBRACK] = ACTIONS(2000), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(3047), + [sym_raw_string] = ACTIONS(2000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2000), + [anon_sym_BQUOTE] = ACTIONS(2000), + [anon_sym_LT_LPAREN] = ACTIONS(2000), + [anon_sym_GT_LPAREN] = ACTIONS(2000), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2002), + }, + [845] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3049), + }, + [846] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [847] = { + [sym__concat] = ACTIONS(2156), + [anon_sym_EQ_TILDE] = ACTIONS(3051), + [anon_sym_RBRACK] = ACTIONS(2156), + [sym__special_characters] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_DOLLAR] = ACTIONS(3051), + [sym_raw_string] = ACTIONS(2156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2156), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2156), + [anon_sym_LT_LPAREN] = ACTIONS(2156), + [anon_sym_GT_LPAREN] = ACTIONS(2156), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2158), + }, + [848] = { + [sym__concat] = ACTIONS(2358), + [anon_sym_EQ_TILDE] = ACTIONS(3053), + [anon_sym_RBRACK] = ACTIONS(2358), + [sym__special_characters] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2358), + [anon_sym_DOLLAR] = ACTIONS(3053), + [sym_raw_string] = ACTIONS(2358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2358), + [anon_sym_BQUOTE] = ACTIONS(2358), + [anon_sym_LT_LPAREN] = ACTIONS(2358), + [anon_sym_GT_LPAREN] = ACTIONS(2358), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2360), + }, + [849] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(624), + [sym_file_descriptor] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(3055), + [anon_sym_SEMI_SEMI] = ACTIONS(3055), + [anon_sym_PIPE_AMP] = ACTIONS(3055), + [anon_sym_AMP_AMP] = ACTIONS(3055), + [anon_sym_PIPE_PIPE] = ACTIONS(3055), + [anon_sym_LT] = ACTIONS(356), + [anon_sym_GT] = ACTIONS(356), + [anon_sym_GT_GT] = ACTIONS(356), + [anon_sym_AMP_GT] = ACTIONS(356), + [anon_sym_AMP_GT_GT] = ACTIONS(356), + [anon_sym_LT_AMP] = ACTIONS(356), + [anon_sym_GT_AMP] = ACTIONS(356), + [anon_sym_LT_LT] = ACTIONS(358), + [anon_sym_LT_LT_DASH] = ACTIONS(358), + [anon_sym_LT_LT_LT] = ACTIONS(360), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3055), + [anon_sym_LF] = ACTIONS(3055), + [anon_sym_AMP] = ACTIONS(3055), + }, + [850] = { + [sym__concat] = ACTIONS(1858), + [anon_sym_EQ_TILDE] = ACTIONS(3008), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1858), + [sym__special_characters] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), + [anon_sym_BQUOTE] = ACTIONS(1858), + [anon_sym_LT_LPAREN] = ACTIONS(1858), + [anon_sym_GT_LPAREN] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1860), + }, + [851] = { + [aux_sym_concatenation_repeat1] = STATE(851), + [sym__concat] = ACTIONS(3057), + [anon_sym_EQ_TILDE] = ACTIONS(3008), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1858), + [sym__special_characters] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), + [anon_sym_BQUOTE] = ACTIONS(1858), + [anon_sym_LT_LPAREN] = ACTIONS(1858), + [anon_sym_GT_LPAREN] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1860), + }, + [852] = { + [sym__concat] = ACTIONS(1895), + [anon_sym_EQ_TILDE] = ACTIONS(3013), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1895), + [sym__special_characters] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(3013), + [sym_raw_string] = ACTIONS(1895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1895), + [anon_sym_BQUOTE] = ACTIONS(1895), + [anon_sym_LT_LPAREN] = ACTIONS(1895), + [anon_sym_GT_LPAREN] = ACTIONS(1895), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1897), + }, + [853] = { + [sym_concatenation] = STATE(1498), + [sym_string] = STATE(1497), + [sym_simple_expansion] = STATE(1497), + [sym_string_expansion] = STATE(1497), + [sym_expansion] = STATE(1497), + [sym_command_substitution] = STATE(1497), + [sym_process_substitution] = STATE(1497), + [anon_sym_RBRACE] = ACTIONS(3060), + [sym__special_characters] = ACTIONS(3062), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(3064), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3066), + }, + [854] = { + [sym__concat] = ACTIONS(1940), + [anon_sym_EQ_TILDE] = ACTIONS(3023), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1940), + [sym__special_characters] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(3023), + [sym_raw_string] = ACTIONS(1940), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1940), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [anon_sym_LT_LPAREN] = ACTIONS(1940), + [anon_sym_GT_LPAREN] = ACTIONS(1940), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1942), + }, + [855] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3068), + }, + [856] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3070), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [857] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(3072), + [sym_comment] = ACTIONS(56), + }, + [858] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1504), + [anon_sym_RBRACE] = ACTIONS(3074), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3076), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [859] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1507), + [anon_sym_RBRACE] = ACTIONS(3078), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3080), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [860] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1509), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3082), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [861] = { + [sym__concat] = ACTIONS(1992), + [anon_sym_EQ_TILDE] = ACTIONS(3041), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1992), + [sym__special_characters] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1992), + [anon_sym_DOLLAR] = ACTIONS(3041), + [sym_raw_string] = ACTIONS(1992), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1992), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1992), + [anon_sym_BQUOTE] = ACTIONS(1992), + [anon_sym_LT_LPAREN] = ACTIONS(1992), + [anon_sym_GT_LPAREN] = ACTIONS(1992), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1994), + }, + [862] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3084), + }, + [863] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3086), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [864] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_EQ_TILDE] = ACTIONS(3047), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2000), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(3047), + [sym_raw_string] = ACTIONS(2000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2000), + [anon_sym_BQUOTE] = ACTIONS(2000), + [anon_sym_LT_LPAREN] = ACTIONS(2000), + [anon_sym_GT_LPAREN] = ACTIONS(2000), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2002), + }, + [865] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3088), + }, + [866] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [867] = { + [sym__concat] = ACTIONS(2156), + [anon_sym_EQ_TILDE] = ACTIONS(3051), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2156), + [sym__special_characters] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_DOLLAR] = ACTIONS(3051), + [sym_raw_string] = ACTIONS(2156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2156), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2156), + [anon_sym_LT_LPAREN] = ACTIONS(2156), + [anon_sym_GT_LPAREN] = ACTIONS(2156), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2158), + }, + [868] = { + [sym__concat] = ACTIONS(2358), + [anon_sym_EQ_TILDE] = ACTIONS(3053), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2358), + [sym__special_characters] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2358), + [anon_sym_DOLLAR] = ACTIONS(3053), + [sym_raw_string] = ACTIONS(2358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2358), + [anon_sym_BQUOTE] = ACTIONS(2358), + [anon_sym_LT_LPAREN] = ACTIONS(2358), + [anon_sym_GT_LPAREN] = ACTIONS(2358), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2360), + }, + [869] = { + [sym_variable_name] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_RPAREN] = ACTIONS(1257), + [anon_sym_SEMI_SEMI] = ACTIONS(1257), + [anon_sym_PIPE_AMP] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [sym__special_characters] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [anon_sym_DOLLAR] = ACTIONS(1257), + [sym_raw_string] = ACTIONS(1257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1257), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1257), + [anon_sym_BQUOTE] = ACTIONS(1257), + [anon_sym_LT_LPAREN] = ACTIONS(1257), + [anon_sym_GT_LPAREN] = ACTIONS(1257), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1257), [sym_word] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_LF] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), }, - [1414] = { - [sym__concat] = ACTIONS(2969), - [sym_variable_name] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_SEMI_SEMI] = ACTIONS(2971), - [anon_sym_PIPE_AMP] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_PIPE_PIPE] = ACTIONS(2971), - [sym__special_characters] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2971), - [sym_raw_string] = ACTIONS(2971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2971), - [anon_sym_BQUOTE] = ACTIONS(2971), - [anon_sym_LT_LPAREN] = ACTIONS(2971), - [anon_sym_GT_LPAREN] = ACTIONS(2971), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2971), - [sym_word] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - }, - [1415] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4138), + [870] = { + [sym_concatenation] = STATE(660), + [sym_string] = STATE(655), + [sym_simple_expansion] = STATE(655), + [sym_string_expansion] = STATE(655), + [sym_expansion] = STATE(655), + [sym_command_substitution] = STATE(655), + [sym_process_substitution] = STATE(655), + [aux_sym_for_statement_repeat1] = STATE(1514), + [anon_sym_RPAREN] = ACTIONS(3090), + [sym__special_characters] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_DOLLAR] = ACTIONS(1265), + [sym_raw_string] = ACTIONS(1267), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1269), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1273), + [anon_sym_LT_LPAREN] = ACTIONS(1275), + [anon_sym_GT_LPAREN] = ACTIONS(1275), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1277), }, - [1416] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4140), - [sym_comment] = ACTIONS(56), + [871] = { + [aux_sym_concatenation_repeat1] = STATE(376), + [sym__concat] = ACTIONS(674), + [sym_variable_name] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_SEMI_SEMI] = ACTIONS(1283), + [anon_sym_PIPE_AMP] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1283), + [anon_sym_PIPE_PIPE] = ACTIONS(1283), + [sym__special_characters] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1283), + [sym_raw_string] = ACTIONS(1283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1283), + [anon_sym_BQUOTE] = ACTIONS(1283), + [anon_sym_LT_LPAREN] = ACTIONS(1283), + [anon_sym_GT_LPAREN] = ACTIONS(1283), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1283), + [sym_word] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1283), + [anon_sym_LF] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), }, - [1417] = { - [anon_sym_RBRACE] = ACTIONS(4140), - [sym_comment] = ACTIONS(56), + [872] = { + [aux_sym_concatenation_repeat1] = STATE(376), + [sym__concat] = ACTIONS(674), + [sym_variable_name] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_SEMI_SEMI] = ACTIONS(1257), + [anon_sym_PIPE_AMP] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [sym__special_characters] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [anon_sym_DOLLAR] = ACTIONS(1257), + [sym_raw_string] = ACTIONS(1257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1257), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1257), + [anon_sym_BQUOTE] = ACTIONS(1257), + [anon_sym_LT_LPAREN] = ACTIONS(1257), + [anon_sym_GT_LPAREN] = ACTIONS(1257), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1257), + [sym_word] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_LF] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), }, - [1418] = { - [sym__concat] = ACTIONS(3023), - [sym_variable_name] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3025), - [anon_sym_SEMI_SEMI] = ACTIONS(3025), - [anon_sym_PIPE_AMP] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [sym__special_characters] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_DOLLAR] = ACTIONS(3025), - [sym_raw_string] = ACTIONS(3025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3025), - [anon_sym_LT_LPAREN] = ACTIONS(3025), - [anon_sym_GT_LPAREN] = ACTIONS(3025), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3025), - [sym_word] = ACTIONS(3025), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_LF] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3025), - }, - [1419] = { - [sym_concatenation] = STATE(1955), - [sym_string] = STATE(1954), - [sym_simple_expansion] = STATE(1954), - [sym_string_expansion] = STATE(1954), - [sym_expansion] = STATE(1954), - [sym_command_substitution] = STATE(1954), - [sym_process_substitution] = STATE(1954), - [anon_sym_RBRACE] = ACTIONS(4140), - [sym__special_characters] = ACTIONS(4142), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(4144), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), + [873] = { + [sym__concat] = ACTIONS(1858), + [sym_variable_name] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [anon_sym_PIPE_AMP] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1860), + [anon_sym_PIPE_PIPE] = ACTIONS(1860), + [sym__special_characters] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1860), + [anon_sym_DOLLAR] = ACTIONS(1860), + [sym_raw_string] = ACTIONS(1860), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1860), [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4146), + [anon_sym_LT_LPAREN] = ACTIONS(1860), + [anon_sym_GT_LPAREN] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1860), + [sym_word] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), }, - [1420] = { - [sym__concat] = ACTIONS(3068), - [sym_variable_name] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_SEMI_SEMI] = ACTIONS(3070), - [anon_sym_PIPE_AMP] = ACTIONS(3070), - [anon_sym_AMP_AMP] = ACTIONS(3070), - [anon_sym_PIPE_PIPE] = ACTIONS(3070), - [sym__special_characters] = ACTIONS(3070), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3070), - [sym_raw_string] = ACTIONS(3070), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3070), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3070), - [anon_sym_BQUOTE] = ACTIONS(3070), - [anon_sym_LT_LPAREN] = ACTIONS(3070), - [anon_sym_GT_LPAREN] = ACTIONS(3070), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3070), - [sym_word] = ACTIONS(3070), - [anon_sym_SEMI] = ACTIONS(3070), - [anon_sym_LF] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3070), - }, - [1421] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4148), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1422] = { - [sym__concat] = ACTIONS(3074), - [sym_variable_name] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(3076), - [anon_sym_SEMI_SEMI] = ACTIONS(3076), - [anon_sym_PIPE_AMP] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [sym__special_characters] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR] = ACTIONS(3076), - [sym_raw_string] = ACTIONS(3076), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3076), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3076), - [anon_sym_BQUOTE] = ACTIONS(3076), - [anon_sym_LT_LPAREN] = ACTIONS(3076), - [anon_sym_GT_LPAREN] = ACTIONS(3076), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3076), - [sym_word] = ACTIONS(3076), - [anon_sym_SEMI] = ACTIONS(3076), - [anon_sym_LF] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3076), - }, - [1423] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4150), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1424] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4140), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1425] = { - [sym__concat] = ACTIONS(3080), - [sym_variable_name] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(3082), - [anon_sym_SEMI_SEMI] = ACTIONS(3082), - [anon_sym_PIPE_AMP] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [sym__special_characters] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_DOLLAR] = ACTIONS(3082), - [sym_raw_string] = ACTIONS(3082), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3082), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3082), - [anon_sym_BQUOTE] = ACTIONS(3082), - [anon_sym_LT_LPAREN] = ACTIONS(3082), - [anon_sym_GT_LPAREN] = ACTIONS(3082), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3082), - [sym_word] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3082), - [anon_sym_LF] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3082), - }, - [1426] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_SEMI_SEMI] = ACTIONS(2971), - [anon_sym_PIPE_AMP] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_PIPE_PIPE] = ACTIONS(2971), - [sym__special_characters] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2971), - [sym_raw_string] = ACTIONS(2971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2971), - [anon_sym_BQUOTE] = ACTIONS(2971), - [anon_sym_LT_LPAREN] = ACTIONS(2971), - [anon_sym_GT_LPAREN] = ACTIONS(2971), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2971), - [sym_word] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - }, - [1427] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4152), - [sym_comment] = ACTIONS(56), - }, - [1428] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4154), - [sym_comment] = ACTIONS(56), - }, - [1429] = { - [anon_sym_RBRACE] = ACTIONS(4154), - [sym_comment] = ACTIONS(56), - }, - [1430] = { - [sym__concat] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3025), - [anon_sym_SEMI_SEMI] = ACTIONS(3025), - [anon_sym_PIPE_AMP] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [sym__special_characters] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_DOLLAR] = ACTIONS(3025), - [sym_raw_string] = ACTIONS(3025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3025), - [anon_sym_LT_LPAREN] = ACTIONS(3025), - [anon_sym_GT_LPAREN] = ACTIONS(3025), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3025), - [sym_word] = ACTIONS(3025), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_LF] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3025), - }, - [1431] = { - [sym_concatenation] = STATE(1962), - [sym_string] = STATE(1961), - [sym_simple_expansion] = STATE(1961), - [sym_string_expansion] = STATE(1961), - [sym_expansion] = STATE(1961), - [sym_command_substitution] = STATE(1961), - [sym_process_substitution] = STATE(1961), - [anon_sym_RBRACE] = ACTIONS(4154), - [sym__special_characters] = ACTIONS(4156), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(4158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), + [874] = { + [aux_sym_concatenation_repeat1] = STATE(874), + [sym__concat] = ACTIONS(3092), + [sym_variable_name] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [anon_sym_PIPE_AMP] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1860), + [anon_sym_PIPE_PIPE] = ACTIONS(1860), + [sym__special_characters] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1860), + [anon_sym_DOLLAR] = ACTIONS(1860), + [sym_raw_string] = ACTIONS(1860), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1860), [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), + [anon_sym_LT_LPAREN] = ACTIONS(1860), + [anon_sym_GT_LPAREN] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1860), + [sym_word] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + }, + [875] = { + [sym__concat] = ACTIONS(1895), + [sym_variable_name] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_SEMI_SEMI] = ACTIONS(1897), + [anon_sym_PIPE_AMP] = ACTIONS(1897), + [anon_sym_AMP_AMP] = ACTIONS(1897), + [anon_sym_PIPE_PIPE] = ACTIONS(1897), + [sym__special_characters] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [anon_sym_DOLLAR] = ACTIONS(1897), + [sym_raw_string] = ACTIONS(1897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1897), + [anon_sym_BQUOTE] = ACTIONS(1897), + [anon_sym_LT_LPAREN] = ACTIONS(1897), + [anon_sym_GT_LPAREN] = ACTIONS(1897), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1897), + [sym_word] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_LF] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), + }, + [876] = { + [sym_concatenation] = STATE(1518), + [sym_string] = STATE(1517), + [sym_simple_expansion] = STATE(1517), + [sym_string_expansion] = STATE(1517), + [sym_expansion] = STATE(1517), + [sym_command_substitution] = STATE(1517), + [sym_process_substitution] = STATE(1517), + [anon_sym_RBRACE] = ACTIONS(3095), + [sym__special_characters] = ACTIONS(3097), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(3099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4160), + [sym_word] = ACTIONS(3101), }, - [1432] = { - [sym__concat] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_SEMI_SEMI] = ACTIONS(3070), - [anon_sym_PIPE_AMP] = ACTIONS(3070), - [anon_sym_AMP_AMP] = ACTIONS(3070), - [anon_sym_PIPE_PIPE] = ACTIONS(3070), - [sym__special_characters] = ACTIONS(3070), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3070), - [sym_raw_string] = ACTIONS(3070), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3070), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3070), - [anon_sym_BQUOTE] = ACTIONS(3070), - [anon_sym_LT_LPAREN] = ACTIONS(3070), - [anon_sym_GT_LPAREN] = ACTIONS(3070), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3070), - [sym_word] = ACTIONS(3070), - [anon_sym_SEMI] = ACTIONS(3070), - [anon_sym_LF] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3070), + [877] = { + [sym__concat] = ACTIONS(1940), + [sym_variable_name] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1942), + [anon_sym_PIPE_AMP] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1942), + [anon_sym_PIPE_PIPE] = ACTIONS(1942), + [sym__special_characters] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [anon_sym_DOLLAR] = ACTIONS(1942), + [sym_raw_string] = ACTIONS(1942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1942), + [anon_sym_BQUOTE] = ACTIONS(1942), + [anon_sym_LT_LPAREN] = ACTIONS(1942), + [anon_sym_GT_LPAREN] = ACTIONS(1942), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1942), + [sym_word] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), }, - [1433] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4162), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [878] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3103), }, - [1434] = { - [sym__concat] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(3076), - [anon_sym_SEMI_SEMI] = ACTIONS(3076), - [anon_sym_PIPE_AMP] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [sym__special_characters] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR] = ACTIONS(3076), - [sym_raw_string] = ACTIONS(3076), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3076), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3076), - [anon_sym_BQUOTE] = ACTIONS(3076), - [anon_sym_LT_LPAREN] = ACTIONS(3076), - [anon_sym_GT_LPAREN] = ACTIONS(3076), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3076), - [sym_word] = ACTIONS(3076), - [anon_sym_SEMI] = ACTIONS(3076), - [anon_sym_LF] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3076), + [879] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1435] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4164), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1436] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4154), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1437] = { - [sym__concat] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(3082), - [anon_sym_SEMI_SEMI] = ACTIONS(3082), - [anon_sym_PIPE_AMP] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [sym__special_characters] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_DOLLAR] = ACTIONS(3082), - [sym_raw_string] = ACTIONS(3082), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3082), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3082), - [anon_sym_BQUOTE] = ACTIONS(3082), - [anon_sym_LT_LPAREN] = ACTIONS(3082), - [anon_sym_GT_LPAREN] = ACTIONS(3082), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3082), - [sym_word] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3082), - [anon_sym_LF] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3082), - }, - [1438] = { - [sym_file_descriptor] = ACTIONS(2969), - [sym__concat] = ACTIONS(2969), - [sym_variable_name] = ACTIONS(2969), - [anon_sym_LT] = ACTIONS(4098), - [anon_sym_GT] = ACTIONS(4098), - [anon_sym_GT_GT] = ACTIONS(2969), - [anon_sym_AMP_GT] = ACTIONS(4098), - [anon_sym_AMP_GT_GT] = ACTIONS(2969), - [anon_sym_LT_AMP] = ACTIONS(2969), - [anon_sym_GT_AMP] = ACTIONS(2969), - [sym__special_characters] = ACTIONS(4098), - [anon_sym_DQUOTE] = ACTIONS(2969), - [anon_sym_DOLLAR] = ACTIONS(4098), - [sym_raw_string] = ACTIONS(2969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2969), - [anon_sym_BQUOTE] = ACTIONS(2969), - [anon_sym_LT_LPAREN] = ACTIONS(2969), - [anon_sym_GT_LPAREN] = ACTIONS(2969), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4098), - }, - [1439] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4166), + [880] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(3107), [sym_comment] = ACTIONS(56), }, - [1440] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4168), - [sym_comment] = ACTIONS(56), + [881] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1524), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3111), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1441] = { - [anon_sym_RBRACE] = ACTIONS(4168), - [sym_comment] = ACTIONS(56), + [882] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1527), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3115), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1442] = { - [sym_file_descriptor] = ACTIONS(3023), - [sym__concat] = ACTIONS(3023), - [sym_variable_name] = ACTIONS(3023), - [anon_sym_LT] = ACTIONS(4104), - [anon_sym_GT] = ACTIONS(4104), - [anon_sym_GT_GT] = ACTIONS(3023), - [anon_sym_AMP_GT] = ACTIONS(4104), - [anon_sym_AMP_GT_GT] = ACTIONS(3023), - [anon_sym_LT_AMP] = ACTIONS(3023), - [anon_sym_GT_AMP] = ACTIONS(3023), - [sym__special_characters] = ACTIONS(4104), - [anon_sym_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR] = ACTIONS(4104), - [sym_raw_string] = ACTIONS(3023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3023), - [anon_sym_BQUOTE] = ACTIONS(3023), - [anon_sym_LT_LPAREN] = ACTIONS(3023), - [anon_sym_GT_LPAREN] = ACTIONS(3023), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4104), + [883] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1529), + [anon_sym_RBRACE] = ACTIONS(3095), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3117), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1443] = { - [sym_concatenation] = STATE(1969), - [sym_string] = STATE(1968), - [sym_simple_expansion] = STATE(1968), - [sym_string_expansion] = STATE(1968), - [sym_expansion] = STATE(1968), - [sym_command_substitution] = STATE(1968), - [sym_process_substitution] = STATE(1968), - [anon_sym_RBRACE] = ACTIONS(4168), - [sym__special_characters] = ACTIONS(4170), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(4172), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4174), + [884] = { + [sym__concat] = ACTIONS(1992), + [sym_variable_name] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(1994), + [anon_sym_SEMI_SEMI] = ACTIONS(1994), + [anon_sym_PIPE_AMP] = ACTIONS(1994), + [anon_sym_AMP_AMP] = ACTIONS(1994), + [anon_sym_PIPE_PIPE] = ACTIONS(1994), + [sym__special_characters] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [anon_sym_DOLLAR] = ACTIONS(1994), + [sym_raw_string] = ACTIONS(1994), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1994), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1994), + [anon_sym_BQUOTE] = ACTIONS(1994), + [anon_sym_LT_LPAREN] = ACTIONS(1994), + [anon_sym_GT_LPAREN] = ACTIONS(1994), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1994), + [sym_word] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_LF] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), }, - [1444] = { - [sym_file_descriptor] = ACTIONS(3068), - [sym__concat] = ACTIONS(3068), - [sym_variable_name] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(4112), - [anon_sym_GT] = ACTIONS(4112), - [anon_sym_GT_GT] = ACTIONS(3068), - [anon_sym_AMP_GT] = ACTIONS(4112), - [anon_sym_AMP_GT_GT] = ACTIONS(3068), - [anon_sym_LT_AMP] = ACTIONS(3068), - [anon_sym_GT_AMP] = ACTIONS(3068), - [sym__special_characters] = ACTIONS(4112), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(4112), - [sym_raw_string] = ACTIONS(3068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3068), - [anon_sym_BQUOTE] = ACTIONS(3068), - [anon_sym_LT_LPAREN] = ACTIONS(3068), - [anon_sym_GT_LPAREN] = ACTIONS(3068), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4112), + [885] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3119), }, - [1445] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4176), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [886] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3121), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1446] = { - [sym_file_descriptor] = ACTIONS(3074), - [sym__concat] = ACTIONS(3074), - [sym_variable_name] = ACTIONS(3074), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_GT_GT] = ACTIONS(3074), - [anon_sym_AMP_GT] = ACTIONS(4116), - [anon_sym_AMP_GT_GT] = ACTIONS(3074), - [anon_sym_LT_AMP] = ACTIONS(3074), - [anon_sym_GT_AMP] = ACTIONS(3074), - [sym__special_characters] = ACTIONS(4116), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_DOLLAR] = ACTIONS(4116), - [sym_raw_string] = ACTIONS(3074), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3074), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3074), - [anon_sym_BQUOTE] = ACTIONS(3074), - [anon_sym_LT_LPAREN] = ACTIONS(3074), - [anon_sym_GT_LPAREN] = ACTIONS(3074), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4116), + [887] = { + [sym__concat] = ACTIONS(2000), + [sym_variable_name] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [anon_sym_PIPE_AMP] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_PIPE_PIPE] = ACTIONS(2002), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2002), + [anon_sym_BQUOTE] = ACTIONS(2002), + [anon_sym_LT_LPAREN] = ACTIONS(2002), + [anon_sym_GT_LPAREN] = ACTIONS(2002), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2002), + [sym_word] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2002), }, - [1447] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4178), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [888] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3123), }, - [1448] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4168), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [889] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3095), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1449] = { - [sym_file_descriptor] = ACTIONS(3080), - [sym__concat] = ACTIONS(3080), - [sym_variable_name] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(4120), - [anon_sym_GT] = ACTIONS(4120), - [anon_sym_GT_GT] = ACTIONS(3080), - [anon_sym_AMP_GT] = ACTIONS(4120), - [anon_sym_AMP_GT_GT] = ACTIONS(3080), - [anon_sym_LT_AMP] = ACTIONS(3080), - [anon_sym_GT_AMP] = ACTIONS(3080), - [sym__special_characters] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(3080), - [anon_sym_DOLLAR] = ACTIONS(4120), - [sym_raw_string] = ACTIONS(3080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3080), - [anon_sym_BQUOTE] = ACTIONS(3080), - [anon_sym_LT_LPAREN] = ACTIONS(3080), - [anon_sym_GT_LPAREN] = ACTIONS(3080), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4120), + [890] = { + [sym__concat] = ACTIONS(2156), + [sym_variable_name] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_SEMI_SEMI] = ACTIONS(2158), + [anon_sym_PIPE_AMP] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_PIPE_PIPE] = ACTIONS(2158), + [sym__special_characters] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2158), + [anon_sym_DOLLAR] = ACTIONS(2158), + [sym_raw_string] = ACTIONS(2158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2158), + [anon_sym_BQUOTE] = ACTIONS(2158), + [anon_sym_LT_LPAREN] = ACTIONS(2158), + [anon_sym_GT_LPAREN] = ACTIONS(2158), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2158), + [sym_word] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym_LF] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2158), }, - [1450] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2971), - [sym__string_content] = ACTIONS(4098), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2971), - [anon_sym_BQUOTE] = ACTIONS(2971), - [sym_comment] = ACTIONS(178), - }, - [1451] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4180), - [sym_comment] = ACTIONS(56), - }, - [1452] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4182), - [sym_comment] = ACTIONS(56), - }, - [1453] = { - [anon_sym_RBRACE] = ACTIONS(4182), - [sym_comment] = ACTIONS(56), - }, - [1454] = { - [sym__concat] = ACTIONS(3023), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_DOLLAR] = ACTIONS(3025), - [sym__string_content] = ACTIONS(4104), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3025), - [sym_comment] = ACTIONS(178), - }, - [1455] = { - [sym_concatenation] = STATE(1976), - [sym_string] = STATE(1975), - [sym_simple_expansion] = STATE(1975), - [sym_string_expansion] = STATE(1975), - [sym_expansion] = STATE(1975), - [sym_command_substitution] = STATE(1975), - [sym_process_substitution] = STATE(1975), - [anon_sym_RBRACE] = ACTIONS(4182), - [sym__special_characters] = ACTIONS(4184), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(4186), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4188), - }, - [1456] = { - [sym__concat] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3070), - [sym__string_content] = ACTIONS(4112), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3070), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3070), - [anon_sym_BQUOTE] = ACTIONS(3070), - [sym_comment] = ACTIONS(178), - }, - [1457] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4190), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1458] = { - [sym__concat] = ACTIONS(3074), - [anon_sym_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR] = ACTIONS(3076), - [sym__string_content] = ACTIONS(4116), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3076), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3076), - [anon_sym_BQUOTE] = ACTIONS(3076), - [sym_comment] = ACTIONS(178), - }, - [1459] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4192), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1460] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4182), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1461] = { - [sym__concat] = ACTIONS(3080), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_DOLLAR] = ACTIONS(3082), - [sym__string_content] = ACTIONS(4120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3082), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3082), - [anon_sym_BQUOTE] = ACTIONS(3082), - [sym_comment] = ACTIONS(178), - }, - [1462] = { - [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_RBRACK] = ACTIONS(4194), - [sym__special_characters] = ACTIONS(2342), - [anon_sym_DQUOTE] = ACTIONS(390), - [anon_sym_DOLLAR] = ACTIONS(392), - [sym_raw_string] = ACTIONS(2344), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(398), - [anon_sym_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2346), - }, - [1463] = { - [sym__concat] = ACTIONS(4196), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_EQ] = ACTIONS(4198), - [sym__special_characters] = ACTIONS(4200), - [anon_sym_DQUOTE] = ACTIONS(2350), - [anon_sym_DOLLAR] = ACTIONS(4198), - [sym_raw_string] = ACTIONS(2350), - [anon_sym_POUND] = ACTIONS(2350), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2350), - [anon_sym_COLON] = ACTIONS(4198), - [anon_sym_COLON_QMARK] = ACTIONS(4198), - [anon_sym_COLON_DASH] = ACTIONS(4198), - [anon_sym_PERCENT] = ACTIONS(4198), - [anon_sym_SLASH] = ACTIONS(4198), - [anon_sym_DASH] = ACTIONS(4198), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2350), - [anon_sym_BQUOTE] = ACTIONS(2350), - [anon_sym_LT_LPAREN] = ACTIONS(2350), - [anon_sym_GT_LPAREN] = ACTIONS(2350), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(4200), - }, - [1464] = { - [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_RBRACK] = ACTIONS(4202), - [sym__special_characters] = ACTIONS(2342), - [anon_sym_DQUOTE] = ACTIONS(390), - [anon_sym_DOLLAR] = ACTIONS(392), - [sym_raw_string] = ACTIONS(2344), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(398), - [anon_sym_BQUOTE] = ACTIONS(400), - [anon_sym_LT_LPAREN] = ACTIONS(402), - [anon_sym_GT_LPAREN] = ACTIONS(402), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2346), - }, - [1465] = { - [sym__concat] = ACTIONS(4204), - [anon_sym_RBRACE] = ACTIONS(2360), - [anon_sym_EQ] = ACTIONS(4206), - [sym__special_characters] = ACTIONS(4208), + [891] = { + [sym__concat] = ACTIONS(2358), + [sym_variable_name] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_SEMI_SEMI] = ACTIONS(2360), + [anon_sym_PIPE_AMP] = ACTIONS(2360), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [sym__special_characters] = ACTIONS(2360), [anon_sym_DQUOTE] = ACTIONS(2360), - [anon_sym_DOLLAR] = ACTIONS(4206), + [anon_sym_DOLLAR] = ACTIONS(2360), [sym_raw_string] = ACTIONS(2360), - [anon_sym_POUND] = ACTIONS(2360), [anon_sym_DOLLAR_LBRACE] = ACTIONS(2360), - [anon_sym_COLON] = ACTIONS(4206), - [anon_sym_COLON_QMARK] = ACTIONS(4206), - [anon_sym_COLON_DASH] = ACTIONS(4206), - [anon_sym_PERCENT] = ACTIONS(4206), - [anon_sym_SLASH] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4206), [anon_sym_DOLLAR_LPAREN] = ACTIONS(2360), [anon_sym_BQUOTE] = ACTIONS(2360), [anon_sym_LT_LPAREN] = ACTIONS(2360), [anon_sym_GT_LPAREN] = ACTIONS(2360), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(4208), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2360), + [sym_word] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + }, + [892] = { + [sym__concat] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [anon_sym_PIPE_AMP] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1860), + [anon_sym_PIPE_PIPE] = ACTIONS(1860), + [sym__special_characters] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1860), + [anon_sym_DOLLAR] = ACTIONS(1860), + [sym_raw_string] = ACTIONS(1860), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1860), + [anon_sym_BQUOTE] = ACTIONS(1860), + [anon_sym_LT_LPAREN] = ACTIONS(1860), + [anon_sym_GT_LPAREN] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1860), + [sym_word] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + }, + [893] = { + [aux_sym_concatenation_repeat1] = STATE(893), + [sym__concat] = ACTIONS(3125), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [anon_sym_PIPE_AMP] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1860), + [anon_sym_PIPE_PIPE] = ACTIONS(1860), + [sym__special_characters] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1860), + [anon_sym_DOLLAR] = ACTIONS(1860), + [sym_raw_string] = ACTIONS(1860), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1860), + [anon_sym_BQUOTE] = ACTIONS(1860), + [anon_sym_LT_LPAREN] = ACTIONS(1860), + [anon_sym_GT_LPAREN] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1860), + [sym_word] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + }, + [894] = { + [sym__concat] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_SEMI_SEMI] = ACTIONS(1897), + [anon_sym_PIPE_AMP] = ACTIONS(1897), + [anon_sym_AMP_AMP] = ACTIONS(1897), + [anon_sym_PIPE_PIPE] = ACTIONS(1897), + [sym__special_characters] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [anon_sym_DOLLAR] = ACTIONS(1897), + [sym_raw_string] = ACTIONS(1897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1897), + [anon_sym_BQUOTE] = ACTIONS(1897), + [anon_sym_LT_LPAREN] = ACTIONS(1897), + [anon_sym_GT_LPAREN] = ACTIONS(1897), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1897), + [sym_word] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_LF] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), + }, + [895] = { + [sym_concatenation] = STATE(1536), + [sym_string] = STATE(1535), + [sym_simple_expansion] = STATE(1535), + [sym_string_expansion] = STATE(1535), + [sym_expansion] = STATE(1535), + [sym_command_substitution] = STATE(1535), + [sym_process_substitution] = STATE(1535), + [anon_sym_RBRACE] = ACTIONS(3128), + [sym__special_characters] = ACTIONS(3130), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(3132), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3134), + }, + [896] = { + [sym__concat] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1942), + [anon_sym_PIPE_AMP] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1942), + [anon_sym_PIPE_PIPE] = ACTIONS(1942), + [sym__special_characters] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [anon_sym_DOLLAR] = ACTIONS(1942), + [sym_raw_string] = ACTIONS(1942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1942), + [anon_sym_BQUOTE] = ACTIONS(1942), + [anon_sym_LT_LPAREN] = ACTIONS(1942), + [anon_sym_GT_LPAREN] = ACTIONS(1942), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1942), + [sym_word] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + }, + [897] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3136), + }, + [898] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [899] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(3140), + [sym_comment] = ACTIONS(56), + }, + [900] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1542), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3144), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [901] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1545), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3148), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [902] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1547), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3150), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [903] = { + [sym__concat] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(1994), + [anon_sym_SEMI_SEMI] = ACTIONS(1994), + [anon_sym_PIPE_AMP] = ACTIONS(1994), + [anon_sym_AMP_AMP] = ACTIONS(1994), + [anon_sym_PIPE_PIPE] = ACTIONS(1994), + [sym__special_characters] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [anon_sym_DOLLAR] = ACTIONS(1994), + [sym_raw_string] = ACTIONS(1994), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1994), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1994), + [anon_sym_BQUOTE] = ACTIONS(1994), + [anon_sym_LT_LPAREN] = ACTIONS(1994), + [anon_sym_GT_LPAREN] = ACTIONS(1994), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1994), + [sym_word] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_LF] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + }, + [904] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3152), + }, + [905] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [906] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [anon_sym_PIPE_AMP] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_PIPE_PIPE] = ACTIONS(2002), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2002), + [anon_sym_BQUOTE] = ACTIONS(2002), + [anon_sym_LT_LPAREN] = ACTIONS(2002), + [anon_sym_GT_LPAREN] = ACTIONS(2002), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2002), + [sym_word] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2002), + }, + [907] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3156), + }, + [908] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [909] = { + [sym__concat] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_SEMI_SEMI] = ACTIONS(2158), + [anon_sym_PIPE_AMP] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_PIPE_PIPE] = ACTIONS(2158), + [sym__special_characters] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2158), + [anon_sym_DOLLAR] = ACTIONS(2158), + [sym_raw_string] = ACTIONS(2158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2158), + [anon_sym_BQUOTE] = ACTIONS(2158), + [anon_sym_LT_LPAREN] = ACTIONS(2158), + [anon_sym_GT_LPAREN] = ACTIONS(2158), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2158), + [sym_word] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym_LF] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2158), + }, + [910] = { + [sym__concat] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_SEMI_SEMI] = ACTIONS(2360), + [anon_sym_PIPE_AMP] = ACTIONS(2360), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [sym__special_characters] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [anon_sym_DOLLAR] = ACTIONS(2360), + [sym_raw_string] = ACTIONS(2360), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2360), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2360), + [anon_sym_BQUOTE] = ACTIONS(2360), + [anon_sym_LT_LPAREN] = ACTIONS(2360), + [anon_sym_GT_LPAREN] = ACTIONS(2360), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2360), + [sym_word] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + }, + [911] = { + [sym_file_descriptor] = ACTIONS(1858), + [sym__concat] = ACTIONS(1858), + [sym_variable_name] = ACTIONS(1858), + [anon_sym_LT] = ACTIONS(3008), + [anon_sym_GT] = ACTIONS(3008), + [anon_sym_GT_GT] = ACTIONS(1858), + [anon_sym_AMP_GT] = ACTIONS(3008), + [anon_sym_AMP_GT_GT] = ACTIONS(1858), + [anon_sym_LT_AMP] = ACTIONS(1858), + [anon_sym_GT_AMP] = ACTIONS(1858), + [sym__special_characters] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), + [anon_sym_BQUOTE] = ACTIONS(1858), + [anon_sym_LT_LPAREN] = ACTIONS(1858), + [anon_sym_GT_LPAREN] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3008), + }, + [912] = { + [aux_sym_concatenation_repeat1] = STATE(912), + [sym_file_descriptor] = ACTIONS(1858), + [sym__concat] = ACTIONS(3158), + [sym_variable_name] = ACTIONS(1858), + [anon_sym_LT] = ACTIONS(3008), + [anon_sym_GT] = ACTIONS(3008), + [anon_sym_GT_GT] = ACTIONS(1858), + [anon_sym_AMP_GT] = ACTIONS(3008), + [anon_sym_AMP_GT_GT] = ACTIONS(1858), + [anon_sym_LT_AMP] = ACTIONS(1858), + [anon_sym_GT_AMP] = ACTIONS(1858), + [sym__special_characters] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), + [anon_sym_BQUOTE] = ACTIONS(1858), + [anon_sym_LT_LPAREN] = ACTIONS(1858), + [anon_sym_GT_LPAREN] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3008), + }, + [913] = { + [sym_file_descriptor] = ACTIONS(1895), + [sym__concat] = ACTIONS(1895), + [sym_variable_name] = ACTIONS(1895), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_GT_GT] = ACTIONS(1895), + [anon_sym_AMP_GT] = ACTIONS(3013), + [anon_sym_AMP_GT_GT] = ACTIONS(1895), + [anon_sym_LT_AMP] = ACTIONS(1895), + [anon_sym_GT_AMP] = ACTIONS(1895), + [sym__special_characters] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(3013), + [sym_raw_string] = ACTIONS(1895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1895), + [anon_sym_BQUOTE] = ACTIONS(1895), + [anon_sym_LT_LPAREN] = ACTIONS(1895), + [anon_sym_GT_LPAREN] = ACTIONS(1895), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3013), + }, + [914] = { + [sym_concatenation] = STATE(1554), + [sym_string] = STATE(1553), + [sym_simple_expansion] = STATE(1553), + [sym_string_expansion] = STATE(1553), + [sym_expansion] = STATE(1553), + [sym_command_substitution] = STATE(1553), + [sym_process_substitution] = STATE(1553), + [anon_sym_RBRACE] = ACTIONS(3161), + [sym__special_characters] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(3165), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3167), + }, + [915] = { + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(1940), + [sym_variable_name] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_GT] = ACTIONS(3023), + [anon_sym_GT_GT] = ACTIONS(1940), + [anon_sym_AMP_GT] = ACTIONS(3023), + [anon_sym_AMP_GT_GT] = ACTIONS(1940), + [anon_sym_LT_AMP] = ACTIONS(1940), + [anon_sym_GT_AMP] = ACTIONS(1940), + [sym__special_characters] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(3023), + [sym_raw_string] = ACTIONS(1940), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1940), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [anon_sym_LT_LPAREN] = ACTIONS(1940), + [anon_sym_GT_LPAREN] = ACTIONS(1940), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3023), + }, + [916] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3169), + }, + [917] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3171), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [918] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(3173), + [sym_comment] = ACTIONS(56), + }, + [919] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1560), + [anon_sym_RBRACE] = ACTIONS(3175), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3177), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [920] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1563), + [anon_sym_RBRACE] = ACTIONS(3179), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3181), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [921] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1565), + [anon_sym_RBRACE] = ACTIONS(3161), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3183), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [922] = { + [sym_file_descriptor] = ACTIONS(1992), + [sym__concat] = ACTIONS(1992), + [sym_variable_name] = ACTIONS(1992), + [anon_sym_LT] = ACTIONS(3041), + [anon_sym_GT] = ACTIONS(3041), + [anon_sym_GT_GT] = ACTIONS(1992), + [anon_sym_AMP_GT] = ACTIONS(3041), + [anon_sym_AMP_GT_GT] = ACTIONS(1992), + [anon_sym_LT_AMP] = ACTIONS(1992), + [anon_sym_GT_AMP] = ACTIONS(1992), + [sym__special_characters] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(1992), + [anon_sym_DOLLAR] = ACTIONS(3041), + [sym_raw_string] = ACTIONS(1992), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1992), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1992), + [anon_sym_BQUOTE] = ACTIONS(1992), + [anon_sym_LT_LPAREN] = ACTIONS(1992), + [anon_sym_GT_LPAREN] = ACTIONS(1992), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3041), + }, + [923] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3185), + }, + [924] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3187), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [925] = { + [sym_file_descriptor] = ACTIONS(2000), + [sym__concat] = ACTIONS(2000), + [sym_variable_name] = ACTIONS(2000), + [anon_sym_LT] = ACTIONS(3047), + [anon_sym_GT] = ACTIONS(3047), + [anon_sym_GT_GT] = ACTIONS(2000), + [anon_sym_AMP_GT] = ACTIONS(3047), + [anon_sym_AMP_GT_GT] = ACTIONS(2000), + [anon_sym_LT_AMP] = ACTIONS(2000), + [anon_sym_GT_AMP] = ACTIONS(2000), + [sym__special_characters] = ACTIONS(3047), + [anon_sym_DQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(3047), + [sym_raw_string] = ACTIONS(2000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2000), + [anon_sym_BQUOTE] = ACTIONS(2000), + [anon_sym_LT_LPAREN] = ACTIONS(2000), + [anon_sym_GT_LPAREN] = ACTIONS(2000), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3047), + }, + [926] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3189), + }, + [927] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3161), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [928] = { + [sym_file_descriptor] = ACTIONS(2156), + [sym__concat] = ACTIONS(2156), + [sym_variable_name] = ACTIONS(2156), + [anon_sym_LT] = ACTIONS(3051), + [anon_sym_GT] = ACTIONS(3051), + [anon_sym_GT_GT] = ACTIONS(2156), + [anon_sym_AMP_GT] = ACTIONS(3051), + [anon_sym_AMP_GT_GT] = ACTIONS(2156), + [anon_sym_LT_AMP] = ACTIONS(2156), + [anon_sym_GT_AMP] = ACTIONS(2156), + [sym__special_characters] = ACTIONS(3051), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_DOLLAR] = ACTIONS(3051), + [sym_raw_string] = ACTIONS(2156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2156), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2156), + [anon_sym_LT_LPAREN] = ACTIONS(2156), + [anon_sym_GT_LPAREN] = ACTIONS(2156), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3051), + }, + [929] = { + [sym_file_descriptor] = ACTIONS(2358), + [sym__concat] = ACTIONS(2358), + [sym_variable_name] = ACTIONS(2358), + [anon_sym_LT] = ACTIONS(3053), + [anon_sym_GT] = ACTIONS(3053), + [anon_sym_GT_GT] = ACTIONS(2358), + [anon_sym_AMP_GT] = ACTIONS(3053), + [anon_sym_AMP_GT_GT] = ACTIONS(2358), + [anon_sym_LT_AMP] = ACTIONS(2358), + [anon_sym_GT_AMP] = ACTIONS(2358), + [sym__special_characters] = ACTIONS(3053), + [anon_sym_DQUOTE] = ACTIONS(2358), + [anon_sym_DOLLAR] = ACTIONS(3053), + [sym_raw_string] = ACTIONS(2358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2358), + [anon_sym_BQUOTE] = ACTIONS(2358), + [anon_sym_LT_LPAREN] = ACTIONS(2358), + [anon_sym_GT_LPAREN] = ACTIONS(2358), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3053), + }, + [930] = { + [anon_sym_DQUOTE] = ACTIONS(3191), + [anon_sym_DOLLAR] = ACTIONS(3191), + [sym__string_content] = ACTIONS(3193), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3191), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3191), + [anon_sym_BQUOTE] = ACTIONS(3191), + [sym_comment] = ACTIONS(182), + }, + [931] = { + [sym_concatenation] = STATE(1572), + [sym_string] = STATE(1571), + [sym_simple_expansion] = STATE(1571), + [sym_string_expansion] = STATE(1571), + [sym_expansion] = STATE(1571), + [sym_command_substitution] = STATE(1571), + [sym_process_substitution] = STATE(1571), + [anon_sym_RBRACE] = ACTIONS(3195), + [sym__special_characters] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(3199), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3201), + }, + [932] = { + [sym__concat] = ACTIONS(1940), + [anon_sym_DQUOTE] = ACTIONS(1942), + [anon_sym_DOLLAR] = ACTIONS(1942), + [sym__string_content] = ACTIONS(3023), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1942), + [anon_sym_BQUOTE] = ACTIONS(1942), + [sym_comment] = ACTIONS(182), + }, + [933] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3203), + }, + [934] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3205), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [935] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(3207), + [sym_comment] = ACTIONS(56), + }, + [936] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1578), + [anon_sym_RBRACE] = ACTIONS(3209), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3211), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [937] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1581), + [anon_sym_RBRACE] = ACTIONS(3213), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3215), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [938] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1583), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3217), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [939] = { + [sym__concat] = ACTIONS(1992), + [anon_sym_DQUOTE] = ACTIONS(1994), + [anon_sym_DOLLAR] = ACTIONS(1994), + [sym__string_content] = ACTIONS(3041), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1994), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1994), + [anon_sym_BQUOTE] = ACTIONS(1994), + [sym_comment] = ACTIONS(182), + }, + [940] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3219), + }, + [941] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [942] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym__string_content] = ACTIONS(3047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2002), + [anon_sym_BQUOTE] = ACTIONS(2002), + [sym_comment] = ACTIONS(182), + }, + [943] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3223), + }, + [944] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [945] = { + [sym__concat] = ACTIONS(2156), + [anon_sym_DQUOTE] = ACTIONS(2158), + [anon_sym_DOLLAR] = ACTIONS(2158), + [sym__string_content] = ACTIONS(3051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2158), + [anon_sym_BQUOTE] = ACTIONS(2158), + [sym_comment] = ACTIONS(182), + }, + [946] = { + [aux_sym_concatenation_repeat1] = STATE(631), + [sym__concat] = ACTIONS(3225), + [anon_sym_RBRACK] = ACTIONS(3227), + [sym_comment] = ACTIONS(56), + }, + [947] = { + [aux_sym_concatenation_repeat1] = STATE(631), + [sym__concat] = ACTIONS(3229), + [anon_sym_RBRACK] = ACTIONS(3231), + [sym_comment] = ACTIONS(56), + }, + [948] = { + [sym__concat] = ACTIONS(3233), + [anon_sym_RBRACK] = ACTIONS(3231), + [sym_comment] = ACTIONS(56), + }, + [949] = { + [sym_file_descriptor] = ACTIONS(3235), + [sym__concat] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3237), + [anon_sym_SEMI_SEMI] = ACTIONS(3237), + [anon_sym_PIPE_AMP] = ACTIONS(3237), + [anon_sym_AMP_AMP] = ACTIONS(3237), + [anon_sym_PIPE_PIPE] = ACTIONS(3237), + [anon_sym_EQ_TILDE] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_GT] = ACTIONS(3237), + [anon_sym_GT_GT] = ACTIONS(3237), + [anon_sym_AMP_GT] = ACTIONS(3237), + [anon_sym_AMP_GT_GT] = ACTIONS(3237), + [anon_sym_LT_AMP] = ACTIONS(3237), + [anon_sym_GT_AMP] = ACTIONS(3237), + [anon_sym_LT_LT] = ACTIONS(3237), + [anon_sym_LT_LT_DASH] = ACTIONS(3237), + [anon_sym_LT_LT_LT] = ACTIONS(3237), + [sym__special_characters] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3237), + [anon_sym_DOLLAR] = ACTIONS(3237), + [sym_raw_string] = ACTIONS(3237), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3237), + [anon_sym_BQUOTE] = ACTIONS(3237), + [anon_sym_LT_LPAREN] = ACTIONS(3237), + [anon_sym_GT_LPAREN] = ACTIONS(3237), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_LF] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), + }, + [950] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(3241), + [sym_comment] = ACTIONS(56), + }, + [951] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(1596), + [anon_sym_DQUOTE] = ACTIONS(3243), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [952] = { + [sym_string] = STATE(1599), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(3245), + [anon_sym_POUND] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3247), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_AT] = ACTIONS(3245), + [anon_sym_QMARK] = ACTIONS(3245), + [anon_sym_0] = ACTIONS(3249), + [anon_sym__] = ACTIONS(3249), + }, + [953] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(3251), + [sym_comment] = ACTIONS(56), + }, + [954] = { + [sym_subscript] = STATE(1605), + [sym_variable_name] = ACTIONS(3253), + [anon_sym_DOLLAR] = ACTIONS(3255), + [anon_sym_POUND] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3255), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_QMARK] = ACTIONS(3255), + [anon_sym_0] = ACTIONS(3261), + [anon_sym__] = ACTIONS(3261), + }, + [955] = { + [sym_for_statement] = STATE(1606), + [sym_while_statement] = STATE(1606), + [sym_if_statement] = STATE(1606), + [sym_case_statement] = STATE(1606), + [sym_function_definition] = STATE(1606), + [sym_subshell] = STATE(1606), + [sym_pipeline] = STATE(1606), + [sym_list] = STATE(1606), + [sym_command] = STATE(1606), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1606), + [sym_variable_assignment] = STATE(1607), + [sym_declaration_command] = STATE(1606), + [sym_unset_command] = STATE(1606), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [956] = { + [sym_for_statement] = STATE(1608), + [sym_while_statement] = STATE(1608), + [sym_if_statement] = STATE(1608), + [sym_case_statement] = STATE(1608), + [sym_function_definition] = STATE(1608), + [sym_subshell] = STATE(1608), + [sym_pipeline] = STATE(1608), + [sym_list] = STATE(1608), + [sym_command] = STATE(1608), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(1608), + [sym_variable_assignment] = STATE(1609), + [sym_declaration_command] = STATE(1608), + [sym_unset_command] = STATE(1608), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), + }, + [957] = { + [sym_for_statement] = STATE(1610), + [sym_while_statement] = STATE(1610), + [sym_if_statement] = STATE(1610), + [sym_case_statement] = STATE(1610), + [sym_function_definition] = STATE(1610), + [sym_subshell] = STATE(1610), + [sym_pipeline] = STATE(1610), + [sym_list] = STATE(1610), + [sym_command] = STATE(1610), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1610), + [sym_variable_assignment] = STATE(1611), + [sym_declaration_command] = STATE(1610), + [sym_unset_command] = STATE(1610), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [958] = { + [anon_sym_RBRACE] = ACTIONS(3251), + [sym_comment] = ACTIONS(56), + }, + [959] = { + [sym_string] = STATE(1612), + [sym_simple_expansion] = STATE(1612), + [sym_string_expansion] = STATE(1612), + [sym_expansion] = STATE(1612), + [sym_command_substitution] = STATE(1612), + [sym_process_substitution] = STATE(1612), + [sym__special_characters] = ACTIONS(3263), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(3265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3263), + }, + [960] = { + [aux_sym_concatenation_repeat1] = STATE(1613), + [sym__concat] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(772), + [anon_sym_EQ] = ACTIONS(1539), + [sym__special_characters] = ACTIONS(774), + [anon_sym_DQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(1539), + [sym_raw_string] = ACTIONS(772), + [anon_sym_POUND] = ACTIONS(772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(772), + [anon_sym_COLON] = ACTIONS(1539), + [anon_sym_COLON_QMARK] = ACTIONS(1539), + [anon_sym_COLON_DASH] = ACTIONS(1539), + [anon_sym_PERCENT] = ACTIONS(1539), + [anon_sym_DASH] = ACTIONS(1539), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(772), + [anon_sym_BQUOTE] = ACTIONS(772), + [anon_sym_LT_LPAREN] = ACTIONS(772), + [anon_sym_GT_LPAREN] = ACTIONS(772), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(774), + }, + [961] = { + [sym__concat] = ACTIONS(776), + [anon_sym_RBRACE] = ACTIONS(776), + [anon_sym_EQ] = ACTIONS(1541), + [sym__special_characters] = ACTIONS(778), + [anon_sym_DQUOTE] = ACTIONS(776), + [anon_sym_DOLLAR] = ACTIONS(1541), + [sym_raw_string] = ACTIONS(776), + [anon_sym_POUND] = ACTIONS(776), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(776), + [anon_sym_COLON] = ACTIONS(1541), + [anon_sym_COLON_QMARK] = ACTIONS(1541), + [anon_sym_COLON_DASH] = ACTIONS(1541), + [anon_sym_PERCENT] = ACTIONS(1541), + [anon_sym_DASH] = ACTIONS(1541), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(776), + [anon_sym_BQUOTE] = ACTIONS(776), + [anon_sym_LT_LPAREN] = ACTIONS(776), + [anon_sym_GT_LPAREN] = ACTIONS(776), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(778), + }, + [962] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(3267), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [963] = { + [sym__concat] = ACTIONS(808), + [anon_sym_RBRACE] = ACTIONS(808), + [anon_sym_EQ] = ACTIONS(1545), + [sym__special_characters] = ACTIONS(810), + [anon_sym_DQUOTE] = ACTIONS(808), + [anon_sym_DOLLAR] = ACTIONS(1545), + [sym_raw_string] = ACTIONS(808), + [anon_sym_POUND] = ACTIONS(808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), + [anon_sym_COLON] = ACTIONS(1545), + [anon_sym_COLON_QMARK] = ACTIONS(1545), + [anon_sym_COLON_DASH] = ACTIONS(1545), + [anon_sym_PERCENT] = ACTIONS(1545), + [anon_sym_DASH] = ACTIONS(1545), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(808), + [anon_sym_BQUOTE] = ACTIONS(808), + [anon_sym_LT_LPAREN] = ACTIONS(808), + [anon_sym_GT_LPAREN] = ACTIONS(808), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(810), + }, + [964] = { + [sym__concat] = ACTIONS(812), + [anon_sym_RBRACE] = ACTIONS(812), + [anon_sym_EQ] = ACTIONS(1547), + [sym__special_characters] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR] = ACTIONS(1547), + [sym_raw_string] = ACTIONS(812), + [anon_sym_POUND] = ACTIONS(812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(812), + [anon_sym_COLON] = ACTIONS(1547), + [anon_sym_COLON_QMARK] = ACTIONS(1547), + [anon_sym_COLON_DASH] = ACTIONS(1547), + [anon_sym_PERCENT] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(812), + [anon_sym_BQUOTE] = ACTIONS(812), + [anon_sym_LT_LPAREN] = ACTIONS(812), + [anon_sym_GT_LPAREN] = ACTIONS(812), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(814), + }, + [965] = { + [sym__concat] = ACTIONS(816), + [anon_sym_RBRACE] = ACTIONS(816), + [anon_sym_EQ] = ACTIONS(1549), + [sym__special_characters] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(816), + [anon_sym_DOLLAR] = ACTIONS(1549), + [sym_raw_string] = ACTIONS(816), + [anon_sym_POUND] = ACTIONS(816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(816), + [anon_sym_COLON] = ACTIONS(1549), + [anon_sym_COLON_QMARK] = ACTIONS(1549), + [anon_sym_COLON_DASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(816), + [anon_sym_BQUOTE] = ACTIONS(816), + [anon_sym_LT_LPAREN] = ACTIONS(816), + [anon_sym_GT_LPAREN] = ACTIONS(816), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(818), + }, + [966] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(3269), + [sym_comment] = ACTIONS(56), + }, + [967] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1618), + [anon_sym_RBRACE] = ACTIONS(3271), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3273), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [968] = { + [sym_subscript] = STATE(1622), + [sym_variable_name] = ACTIONS(3275), + [anon_sym_DOLLAR] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3277), + [anon_sym_AT] = ACTIONS(3277), + [anon_sym_QMARK] = ACTIONS(3277), + [anon_sym_0] = ACTIONS(3281), + [anon_sym__] = ACTIONS(3281), + }, + [969] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1625), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3285), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [970] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1628), + [anon_sym_RBRACE] = ACTIONS(3287), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3289), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [971] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1630), + [anon_sym_RBRACE] = ACTIONS(3291), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [972] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(3293), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [973] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(3293), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [974] = { + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(3293), + [sym_comment] = ACTIONS(56), + }, + [975] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(3293), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [976] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(3295), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [977] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(3295), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [978] = { + [sym_file_descriptor] = ACTIONS(3297), + [sym__concat] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_SEMI_SEMI] = ACTIONS(3299), + [anon_sym_PIPE_AMP] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_EQ_TILDE] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_GT] = ACTIONS(3299), + [anon_sym_GT_GT] = ACTIONS(3299), + [anon_sym_AMP_GT] = ACTIONS(3299), + [anon_sym_AMP_GT_GT] = ACTIONS(3299), + [anon_sym_LT_AMP] = ACTIONS(3299), + [anon_sym_GT_AMP] = ACTIONS(3299), + [anon_sym_LT_LT] = ACTIONS(3299), + [anon_sym_LT_LT_DASH] = ACTIONS(3299), + [anon_sym_LT_LT_LT] = ACTIONS(3299), + [sym__special_characters] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3299), + [sym_raw_string] = ACTIONS(3299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3299), + [anon_sym_BQUOTE] = ACTIONS(3299), + [anon_sym_LT_LPAREN] = ACTIONS(3299), + [anon_sym_GT_LPAREN] = ACTIONS(3299), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_LF] = ACTIONS(3299), + [anon_sym_AMP] = ACTIONS(3299), + }, + [979] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3301), + [anon_sym_EQ] = ACTIONS(3303), + [sym__special_characters] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3309), + [anon_sym_DOLLAR] = ACTIONS(3312), + [sym_raw_string] = ACTIONS(3315), + [anon_sym_POUND] = ACTIONS(3318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3321), + [anon_sym_COLON] = ACTIONS(3303), + [anon_sym_COLON_QMARK] = ACTIONS(3303), + [anon_sym_COLON_DASH] = ACTIONS(3303), + [anon_sym_PERCENT] = ACTIONS(3303), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3324), + [anon_sym_BQUOTE] = ACTIONS(3327), + [anon_sym_LT_LPAREN] = ACTIONS(3330), + [anon_sym_GT_LPAREN] = ACTIONS(3330), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3333), + }, + [980] = { + [sym_concatenation] = STATE(1635), + [sym_string] = STATE(1634), + [sym_simple_expansion] = STATE(1634), + [sym_string_expansion] = STATE(1634), + [sym_expansion] = STATE(1634), + [sym_command_substitution] = STATE(1634), + [sym_process_substitution] = STATE(1634), + [anon_sym_RBRACE] = ACTIONS(3251), + [sym__special_characters] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(3338), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3340), + }, + [981] = { + [sym_file_descriptor] = ACTIONS(3342), + [sym__concat] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(3344), + [anon_sym_SEMI_SEMI] = ACTIONS(3344), + [anon_sym_PIPE_AMP] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [anon_sym_EQ_TILDE] = ACTIONS(3344), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_GT_GT] = ACTIONS(3344), + [anon_sym_AMP_GT] = ACTIONS(3344), + [anon_sym_AMP_GT_GT] = ACTIONS(3344), + [anon_sym_LT_AMP] = ACTIONS(3344), + [anon_sym_GT_AMP] = ACTIONS(3344), + [anon_sym_LT_LT] = ACTIONS(3344), + [anon_sym_LT_LT_DASH] = ACTIONS(3344), + [anon_sym_LT_LT_LT] = ACTIONS(3344), + [sym__special_characters] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_DOLLAR] = ACTIONS(3344), + [sym_raw_string] = ACTIONS(3344), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3344), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3344), + [anon_sym_BQUOTE] = ACTIONS(3344), + [anon_sym_LT_LPAREN] = ACTIONS(3344), + [anon_sym_GT_LPAREN] = ACTIONS(3344), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_LF] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3344), + }, + [982] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3346), + }, + [983] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3348), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [984] = { + [sym_file_descriptor] = ACTIONS(3350), + [sym__concat] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3352), + [anon_sym_SEMI_SEMI] = ACTIONS(3352), + [anon_sym_PIPE_AMP] = ACTIONS(3352), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_PIPE_PIPE] = ACTIONS(3352), + [anon_sym_EQ_TILDE] = ACTIONS(3352), + [anon_sym_LT] = ACTIONS(3352), + [anon_sym_GT] = ACTIONS(3352), + [anon_sym_GT_GT] = ACTIONS(3352), + [anon_sym_AMP_GT] = ACTIONS(3352), + [anon_sym_AMP_GT_GT] = ACTIONS(3352), + [anon_sym_LT_AMP] = ACTIONS(3352), + [anon_sym_GT_AMP] = ACTIONS(3352), + [anon_sym_LT_LT] = ACTIONS(3352), + [anon_sym_LT_LT_DASH] = ACTIONS(3352), + [anon_sym_LT_LT_LT] = ACTIONS(3352), + [sym__special_characters] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [anon_sym_DOLLAR] = ACTIONS(3352), + [sym_raw_string] = ACTIONS(3352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3352), + [anon_sym_BQUOTE] = ACTIONS(3352), + [anon_sym_LT_LPAREN] = ACTIONS(3352), + [anon_sym_GT_LPAREN] = ACTIONS(3352), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3352), + [anon_sym_LF] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3352), + }, + [985] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3354), + }, + [986] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3356), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [987] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3358), + }, + [988] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3251), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [989] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1642), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [990] = { + [sym_file_descriptor] = ACTIONS(3362), + [sym__concat] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(3364), + [anon_sym_SEMI_SEMI] = ACTIONS(3364), + [anon_sym_PIPE_AMP] = ACTIONS(3364), + [anon_sym_AMP_AMP] = ACTIONS(3364), + [anon_sym_PIPE_PIPE] = ACTIONS(3364), + [anon_sym_EQ_TILDE] = ACTIONS(3364), + [anon_sym_LT] = ACTIONS(3364), + [anon_sym_GT] = ACTIONS(3364), + [anon_sym_GT_GT] = ACTIONS(3364), + [anon_sym_AMP_GT] = ACTIONS(3364), + [anon_sym_AMP_GT_GT] = ACTIONS(3364), + [anon_sym_LT_AMP] = ACTIONS(3364), + [anon_sym_GT_AMP] = ACTIONS(3364), + [anon_sym_LT_LT] = ACTIONS(3364), + [anon_sym_LT_LT_DASH] = ACTIONS(3364), + [anon_sym_LT_LT_LT] = ACTIONS(3364), + [sym__special_characters] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [anon_sym_DOLLAR] = ACTIONS(3364), + [sym_raw_string] = ACTIONS(3364), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3364), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3364), + [anon_sym_BQUOTE] = ACTIONS(3364), + [anon_sym_LT_LPAREN] = ACTIONS(3364), + [anon_sym_GT_LPAREN] = ACTIONS(3364), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_LF] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3364), + }, + [991] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1644), + [anon_sym_RBRACE] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [992] = { + [sym_file_descriptor] = ACTIONS(1255), + [sym_variable_name] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(3368), + [anon_sym_RPAREN] = ACTIONS(1255), + [anon_sym_PIPE_AMP] = ACTIONS(1255), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_AMP_GT] = ACTIONS(3368), + [anon_sym_AMP_GT_GT] = ACTIONS(1255), + [anon_sym_LT_AMP] = ACTIONS(1255), + [anon_sym_GT_AMP] = ACTIONS(1255), + [sym__special_characters] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(1255), + [anon_sym_DOLLAR] = ACTIONS(3368), + [sym_raw_string] = ACTIONS(1255), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1255), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1255), + [anon_sym_BQUOTE] = ACTIONS(1255), + [anon_sym_LT_LPAREN] = ACTIONS(1255), + [anon_sym_GT_LPAREN] = ACTIONS(1255), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3368), + }, + [993] = { + [sym_concatenation] = STATE(660), + [sym_string] = STATE(655), + [sym_simple_expansion] = STATE(655), + [sym_string_expansion] = STATE(655), + [sym_expansion] = STATE(655), + [sym_command_substitution] = STATE(655), + [sym_process_substitution] = STATE(655), + [aux_sym_for_statement_repeat1] = STATE(1646), + [anon_sym_RPAREN] = ACTIONS(3370), + [sym__special_characters] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_DOLLAR] = ACTIONS(1265), + [sym_raw_string] = ACTIONS(1267), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1269), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1273), + [anon_sym_LT_LPAREN] = ACTIONS(1275), + [anon_sym_GT_LPAREN] = ACTIONS(1275), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1277), + }, + [994] = { + [aux_sym_concatenation_repeat1] = STATE(1648), + [sym_file_descriptor] = ACTIONS(1279), + [sym__concat] = ACTIONS(3372), + [sym_variable_name] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(3374), + [anon_sym_RPAREN] = ACTIONS(1279), + [anon_sym_PIPE_AMP] = ACTIONS(1279), + [anon_sym_AMP_AMP] = ACTIONS(1279), + [anon_sym_PIPE_PIPE] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(3374), + [anon_sym_GT] = ACTIONS(3374), + [anon_sym_GT_GT] = ACTIONS(1279), + [anon_sym_AMP_GT] = ACTIONS(3374), + [anon_sym_AMP_GT_GT] = ACTIONS(1279), + [anon_sym_LT_AMP] = ACTIONS(1279), + [anon_sym_GT_AMP] = ACTIONS(1279), + [sym__special_characters] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(3374), + [sym_raw_string] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_LT_LPAREN] = ACTIONS(1279), + [anon_sym_GT_LPAREN] = ACTIONS(1279), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3374), + }, + [995] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(1650), + [anon_sym_DQUOTE] = ACTIONS(3376), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [996] = { + [sym_string] = STATE(1653), + [anon_sym_DQUOTE] = ACTIONS(2012), + [anon_sym_DOLLAR] = ACTIONS(3378), + [anon_sym_POUND] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3378), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3380), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_AT] = ACTIONS(3378), + [anon_sym_QMARK] = ACTIONS(3378), + [anon_sym_0] = ACTIONS(3382), + [anon_sym__] = ACTIONS(3382), + }, + [997] = { + [aux_sym_concatenation_repeat1] = STATE(1648), + [sym_file_descriptor] = ACTIONS(1255), + [sym__concat] = ACTIONS(3372), + [sym_variable_name] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(3368), + [anon_sym_RPAREN] = ACTIONS(1255), + [anon_sym_PIPE_AMP] = ACTIONS(1255), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_AMP_GT] = ACTIONS(3368), + [anon_sym_AMP_GT_GT] = ACTIONS(1255), + [anon_sym_LT_AMP] = ACTIONS(1255), + [anon_sym_GT_AMP] = ACTIONS(1255), + [sym__special_characters] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(1255), + [anon_sym_DOLLAR] = ACTIONS(3368), + [sym_raw_string] = ACTIONS(1255), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1255), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1255), + [anon_sym_BQUOTE] = ACTIONS(1255), + [anon_sym_LT_LPAREN] = ACTIONS(1255), + [anon_sym_GT_LPAREN] = ACTIONS(1255), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3368), + }, + [998] = { + [sym_subscript] = STATE(1658), + [sym_variable_name] = ACTIONS(3384), + [anon_sym_DOLLAR] = ACTIONS(3386), + [anon_sym_POUND] = ACTIONS(3388), + [anon_sym_DASH] = ACTIONS(3386), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3390), + [anon_sym_STAR] = ACTIONS(3386), + [anon_sym_AT] = ACTIONS(3386), + [anon_sym_QMARK] = ACTIONS(3386), + [anon_sym_0] = ACTIONS(3392), + [anon_sym__] = ACTIONS(3392), + }, + [999] = { + [sym_for_statement] = STATE(1659), + [sym_while_statement] = STATE(1659), + [sym_if_statement] = STATE(1659), + [sym_case_statement] = STATE(1659), + [sym_function_definition] = STATE(1659), + [sym_subshell] = STATE(1659), + [sym_pipeline] = STATE(1659), + [sym_list] = STATE(1659), + [sym_command] = STATE(1659), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1659), + [sym_variable_assignment] = STATE(1660), + [sym_declaration_command] = STATE(1659), + [sym_unset_command] = STATE(1659), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [1000] = { + [sym_for_statement] = STATE(1661), + [sym_while_statement] = STATE(1661), + [sym_if_statement] = STATE(1661), + [sym_case_statement] = STATE(1661), + [sym_function_definition] = STATE(1661), + [sym_subshell] = STATE(1661), + [sym_pipeline] = STATE(1661), + [sym_list] = STATE(1661), + [sym_command] = STATE(1661), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(1661), + [sym_variable_assignment] = STATE(1662), + [sym_declaration_command] = STATE(1661), + [sym_unset_command] = STATE(1661), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), + }, + [1001] = { + [sym_for_statement] = STATE(1663), + [sym_while_statement] = STATE(1663), + [sym_if_statement] = STATE(1663), + [sym_case_statement] = STATE(1663), + [sym_function_definition] = STATE(1663), + [sym_subshell] = STATE(1663), + [sym_pipeline] = STATE(1663), + [sym_list] = STATE(1663), + [sym_command] = STATE(1663), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1663), + [sym_variable_assignment] = STATE(1664), + [sym_declaration_command] = STATE(1663), + [sym_unset_command] = STATE(1663), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [1002] = { + [sym_concatenation] = STATE(688), + [sym_string] = STATE(683), + [sym_simple_expansion] = STATE(683), + [sym_string_expansion] = STATE(683), + [sym_expansion] = STATE(683), + [sym_command_substitution] = STATE(683), + [sym_process_substitution] = STATE(683), + [aux_sym_for_statement_repeat1] = STATE(1665), + [sym__special_characters] = ACTIONS(1303), + [anon_sym_DQUOTE] = ACTIONS(1305), + [anon_sym_DOLLAR] = ACTIONS(1307), + [sym_raw_string] = ACTIONS(1309), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1311), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1313), + [anon_sym_BQUOTE] = ACTIONS(1315), + [anon_sym_LT_LPAREN] = ACTIONS(1317), + [anon_sym_GT_LPAREN] = ACTIONS(1317), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1319), + }, + [1003] = { + [sym__terminated_statement] = STATE(691), + [sym_for_statement] = STATE(692), + [sym_while_statement] = STATE(692), + [sym_if_statement] = STATE(692), + [sym_case_statement] = STATE(692), + [sym_function_definition] = STATE(692), + [sym_subshell] = STATE(692), + [sym_pipeline] = STATE(692), + [sym_list] = STATE(692), + [sym_command] = STATE(692), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(692), + [sym_variable_assignment] = STATE(693), + [sym_declaration_command] = STATE(692), + [sym_unset_command] = STATE(692), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1667), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_done] = ACTIONS(3394), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [1004] = { + [sym_file_redirect] = STATE(539), + [sym_heredoc_redirect] = STATE(539), + [sym_herestring_redirect] = STATE(539), + [aux_sym_while_statement_repeat1] = STATE(1668), + [sym_file_descriptor] = ACTIONS(962), + [anon_sym_PIPE] = ACTIONS(3396), + [anon_sym_RPAREN] = ACTIONS(3398), + [anon_sym_PIPE_AMP] = ACTIONS(3398), + [anon_sym_AMP_AMP] = ACTIONS(3398), + [anon_sym_PIPE_PIPE] = ACTIONS(3398), + [anon_sym_LT] = ACTIONS(970), + [anon_sym_GT] = ACTIONS(970), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_AMP_GT] = ACTIONS(970), + [anon_sym_AMP_GT_GT] = ACTIONS(972), + [anon_sym_LT_AMP] = ACTIONS(972), + [anon_sym_GT_AMP] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_LT_LT_DASH] = ACTIONS(976), + [anon_sym_LT_LT_LT] = ACTIONS(978), + [sym_comment] = ACTIONS(56), + }, + [1005] = { + [sym__terminated_statement] = STATE(699), + [sym_for_statement] = STATE(700), + [sym_while_statement] = STATE(700), + [sym_if_statement] = STATE(700), + [sym_elif_clause] = STATE(701), + [sym_else_clause] = STATE(1670), + [sym_case_statement] = STATE(700), + [sym_function_definition] = STATE(700), + [sym_subshell] = STATE(700), + [sym_pipeline] = STATE(700), + [sym_list] = STATE(700), + [sym_command] = STATE(700), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(700), + [sym_variable_assignment] = STATE(703), + [sym_declaration_command] = STATE(700), + [sym_unset_command] = STATE(700), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1671), + [aux_sym_if_statement_repeat1] = STATE(1672), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_fi] = ACTIONS(3400), + [anon_sym_elif] = ACTIONS(1327), + [anon_sym_else] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [1006] = { + [anon_sym_SEMI_SEMI] = ACTIONS(3402), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3402), + [anon_sym_LF] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3402), + }, + [1007] = { + [anon_sym_in] = ACTIONS(3404), + [sym_comment] = ACTIONS(56), + }, + [1008] = { + [anon_sym_SEMI_SEMI] = ACTIONS(3406), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3406), + [anon_sym_LF] = ACTIONS(3406), + [anon_sym_AMP] = ACTIONS(3406), + }, + [1009] = { + [anon_sym_in] = ACTIONS(3408), + [sym_comment] = ACTIONS(56), + }, + [1010] = { + [anon_sym_RPAREN] = ACTIONS(3410), + [sym_comment] = ACTIONS(56), + }, + [1011] = { + [sym__terminated_statement] = STATE(731), + [sym_for_statement] = STATE(732), + [sym_while_statement] = STATE(732), + [sym_if_statement] = STATE(732), + [sym_case_statement] = STATE(732), + [sym_function_definition] = STATE(732), + [sym_subshell] = STATE(732), + [sym_pipeline] = STATE(732), + [sym_list] = STATE(732), + [sym_command] = STATE(732), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(732), + [sym_variable_assignment] = STATE(733), + [sym_declaration_command] = STATE(732), + [sym_unset_command] = STATE(732), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1679), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_RBRACE] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [1012] = { + [sym_file_redirect] = STATE(1682), + [sym_file_descriptor] = ACTIONS(3414), + [anon_sym_PIPE] = ACTIONS(3416), + [anon_sym_RPAREN] = ACTIONS(3418), + [anon_sym_PIPE_AMP] = ACTIONS(3418), + [anon_sym_AMP_AMP] = ACTIONS(3418), + [anon_sym_PIPE_PIPE] = ACTIONS(3418), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_GT_GT] = ACTIONS(3422), + [anon_sym_AMP_GT] = ACTIONS(3420), + [anon_sym_AMP_GT_GT] = ACTIONS(3422), + [anon_sym_LT_AMP] = ACTIONS(3422), + [anon_sym_GT_AMP] = ACTIONS(3422), + [sym_comment] = ACTIONS(56), + }, + [1013] = { + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_RPAREN] = ACTIONS(3426), + [anon_sym_PIPE_AMP] = ACTIONS(3426), + [anon_sym_AMP_AMP] = ACTIONS(3426), + [anon_sym_PIPE_PIPE] = ACTIONS(3426), + [anon_sym_BQUOTE] = ACTIONS(3426), + [sym_comment] = ACTIONS(56), + }, + [1014] = { + [sym_file_descriptor] = ACTIONS(1080), + [sym_variable_name] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(3428), + [anon_sym_function] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1080), + [anon_sym_declare] = ACTIONS(1082), + [anon_sym_typeset] = ACTIONS(1082), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_readonly] = ACTIONS(1082), + [anon_sym_local] = ACTIONS(1082), + [anon_sym_unset] = ACTIONS(1082), + [anon_sym_unsetenv] = ACTIONS(1082), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1080), + [anon_sym_LT_AMP] = ACTIONS(1080), + [anon_sym_GT_AMP] = ACTIONS(1080), + [sym__special_characters] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(1080), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1080), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1080), + [anon_sym_BQUOTE] = ACTIONS(1080), + [anon_sym_LT_LPAREN] = ACTIONS(1080), + [anon_sym_GT_LPAREN] = ACTIONS(1080), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1084), + }, + [1015] = { + [anon_sym_PIPE] = ACTIONS(542), + [anon_sym_RPAREN] = ACTIONS(3430), + [anon_sym_SEMI_SEMI] = ACTIONS(3432), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(548), + [anon_sym_PIPE_PIPE] = ACTIONS(548), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3432), + [anon_sym_LF] = ACTIONS(3432), + [anon_sym_AMP] = ACTIONS(3432), + }, + [1016] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(542), + [anon_sym_RPAREN] = ACTIONS(3430), + [anon_sym_SEMI_SEMI] = ACTIONS(3432), + [anon_sym_PIPE_AMP] = ACTIONS(542), + [anon_sym_AMP_AMP] = ACTIONS(548), + [anon_sym_PIPE_PIPE] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(380), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(380), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(380), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(3432), + [anon_sym_LF] = ACTIONS(3432), + [anon_sym_AMP] = ACTIONS(3432), + }, + [1017] = { + [sym_file_redirect] = STATE(539), + [sym_heredoc_redirect] = STATE(539), + [sym_herestring_redirect] = STATE(539), + [aux_sym_while_statement_repeat1] = STATE(1685), + [sym_file_descriptor] = ACTIONS(962), + [anon_sym_PIPE] = ACTIONS(3434), + [anon_sym_RPAREN] = ACTIONS(3436), + [anon_sym_PIPE_AMP] = ACTIONS(3436), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3436), + [anon_sym_LT] = ACTIONS(970), + [anon_sym_GT] = ACTIONS(970), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_AMP_GT] = ACTIONS(970), + [anon_sym_AMP_GT_GT] = ACTIONS(972), + [anon_sym_LT_AMP] = ACTIONS(972), + [anon_sym_GT_AMP] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_LT_LT_DASH] = ACTIONS(976), + [anon_sym_LT_LT_LT] = ACTIONS(978), + [sym_comment] = ACTIONS(56), + }, + [1018] = { + [sym_concatenation] = STATE(1686), + [sym_string] = STATE(1689), + [sym_array] = STATE(1686), + [sym_simple_expansion] = STATE(1689), + [sym_string_expansion] = STATE(1689), + [sym_expansion] = STATE(1689), + [sym_command_substitution] = STATE(1689), + [sym_process_substitution] = STATE(1689), + [sym__empty_value] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3440), + [sym__special_characters] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(886), + [anon_sym_DOLLAR] = ACTIONS(888), + [sym_raw_string] = ACTIONS(3444), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(894), + [anon_sym_BQUOTE] = ACTIONS(896), + [anon_sym_LT_LPAREN] = ACTIONS(898), + [anon_sym_GT_LPAREN] = ACTIONS(898), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3446), + }, + [1019] = { + [sym_variable_name] = ACTIONS(438), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_RPAREN] = ACTIONS(438), + [anon_sym_PIPE_AMP] = ACTIONS(438), + [anon_sym_AMP_AMP] = ACTIONS(438), + [anon_sym_PIPE_PIPE] = ACTIONS(438), + [sym__special_characters] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(438), + [anon_sym_DOLLAR] = ACTIONS(2028), + [sym_raw_string] = ACTIONS(438), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(438), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(438), + [anon_sym_BQUOTE] = ACTIONS(438), + [anon_sym_LT_LPAREN] = ACTIONS(438), + [anon_sym_GT_LPAREN] = ACTIONS(438), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2028), + [sym_word] = ACTIONS(440), + }, + [1020] = { + [sym_string] = STATE(1690), + [sym_simple_expansion] = STATE(1690), + [sym_string_expansion] = STATE(1690), + [sym_expansion] = STATE(1690), + [sym_command_substitution] = STATE(1690), + [sym_process_substitution] = STATE(1690), + [sym__special_characters] = ACTIONS(3448), + [anon_sym_DQUOTE] = ACTIONS(886), + [anon_sym_DOLLAR] = ACTIONS(888), + [sym_raw_string] = ACTIONS(3450), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(894), + [anon_sym_BQUOTE] = ACTIONS(896), + [anon_sym_LT_LPAREN] = ACTIONS(898), + [anon_sym_GT_LPAREN] = ACTIONS(898), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3448), + }, + [1021] = { + [aux_sym_concatenation_repeat1] = STATE(1691), + [sym__concat] = ACTIONS(2056), + [sym_variable_name] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(1539), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_PIPE_AMP] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(772), + [anon_sym_PIPE_PIPE] = ACTIONS(772), + [sym__special_characters] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(1539), + [sym_raw_string] = ACTIONS(772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(772), + [anon_sym_BQUOTE] = ACTIONS(772), + [anon_sym_LT_LPAREN] = ACTIONS(772), + [anon_sym_GT_LPAREN] = ACTIONS(772), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1539), + [sym_word] = ACTIONS(774), + }, + [1022] = { + [sym__concat] = ACTIONS(776), + [sym_variable_name] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_RPAREN] = ACTIONS(776), + [anon_sym_PIPE_AMP] = ACTIONS(776), + [anon_sym_AMP_AMP] = ACTIONS(776), + [anon_sym_PIPE_PIPE] = ACTIONS(776), + [sym__special_characters] = ACTIONS(1541), + [anon_sym_DQUOTE] = ACTIONS(776), + [anon_sym_DOLLAR] = ACTIONS(1541), + [sym_raw_string] = ACTIONS(776), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(776), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(776), + [anon_sym_BQUOTE] = ACTIONS(776), + [anon_sym_LT_LPAREN] = ACTIONS(776), + [anon_sym_GT_LPAREN] = ACTIONS(776), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1541), + [sym_word] = ACTIONS(778), + }, + [1023] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(3452), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [1024] = { + [sym__concat] = ACTIONS(808), + [sym_variable_name] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_RPAREN] = ACTIONS(808), + [anon_sym_PIPE_AMP] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [sym__special_characters] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(808), + [anon_sym_DOLLAR] = ACTIONS(1545), + [sym_raw_string] = ACTIONS(808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(808), + [anon_sym_BQUOTE] = ACTIONS(808), + [anon_sym_LT_LPAREN] = ACTIONS(808), + [anon_sym_GT_LPAREN] = ACTIONS(808), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1545), + [sym_word] = ACTIONS(810), + }, + [1025] = { + [sym__concat] = ACTIONS(812), + [sym_variable_name] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(1547), + [anon_sym_RPAREN] = ACTIONS(812), + [anon_sym_PIPE_AMP] = ACTIONS(812), + [anon_sym_AMP_AMP] = ACTIONS(812), + [anon_sym_PIPE_PIPE] = ACTIONS(812), + [sym__special_characters] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR] = ACTIONS(1547), + [sym_raw_string] = ACTIONS(812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(812), + [anon_sym_BQUOTE] = ACTIONS(812), + [anon_sym_LT_LPAREN] = ACTIONS(812), + [anon_sym_GT_LPAREN] = ACTIONS(812), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1547), + [sym_word] = ACTIONS(814), + }, + [1026] = { + [sym__concat] = ACTIONS(816), + [sym_variable_name] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_RPAREN] = ACTIONS(816), + [anon_sym_PIPE_AMP] = ACTIONS(816), + [anon_sym_AMP_AMP] = ACTIONS(816), + [anon_sym_PIPE_PIPE] = ACTIONS(816), + [sym__special_characters] = ACTIONS(1549), + [anon_sym_DQUOTE] = ACTIONS(816), + [anon_sym_DOLLAR] = ACTIONS(1549), + [sym_raw_string] = ACTIONS(816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(816), + [anon_sym_BQUOTE] = ACTIONS(816), + [anon_sym_LT_LPAREN] = ACTIONS(816), + [anon_sym_GT_LPAREN] = ACTIONS(816), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1549), + [sym_word] = ACTIONS(818), + }, + [1027] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(3454), + [sym_comment] = ACTIONS(56), + }, + [1028] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1696), + [anon_sym_RBRACE] = ACTIONS(3456), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3458), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1029] = { + [sym_subscript] = STATE(1700), + [sym_variable_name] = ACTIONS(3460), + [anon_sym_DOLLAR] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3464), + [anon_sym_STAR] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3462), + [anon_sym_QMARK] = ACTIONS(3462), + [anon_sym_0] = ACTIONS(3466), + [anon_sym__] = ACTIONS(3466), + }, + [1030] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1703), + [anon_sym_RBRACE] = ACTIONS(3468), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3470), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1031] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1706), + [anon_sym_RBRACE] = ACTIONS(3472), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3474), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1032] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(3476), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [1033] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(3476), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1034] = { + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(3476), + [sym_comment] = ACTIONS(56), + }, + [1035] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(3476), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1036] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(3478), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [1037] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(3478), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1038] = { + [sym_variable_assignment] = STATE(496), + [sym_subscript] = STATE(497), + [sym_concatenation] = STATE(496), + [sym_string] = STATE(490), + [sym_simple_expansion] = STATE(490), + [sym_string_expansion] = STATE(490), + [sym_expansion] = STATE(490), + [sym_command_substitution] = STATE(490), + [sym_process_substitution] = STATE(490), + [aux_sym_declaration_command_repeat1] = STATE(1038), + [sym_variable_name] = ACTIONS(3480), + [anon_sym_PIPE] = ACTIONS(3483), + [anon_sym_RPAREN] = ACTIONS(3485), + [anon_sym_PIPE_AMP] = ACTIONS(3485), + [anon_sym_AMP_AMP] = ACTIONS(3485), + [anon_sym_PIPE_PIPE] = ACTIONS(3485), + [sym__special_characters] = ACTIONS(3487), + [anon_sym_DQUOTE] = ACTIONS(3490), + [anon_sym_DOLLAR] = ACTIONS(3493), + [sym_raw_string] = ACTIONS(3496), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3499), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3502), + [anon_sym_BQUOTE] = ACTIONS(3505), + [anon_sym_LT_LPAREN] = ACTIONS(3508), + [anon_sym_GT_LPAREN] = ACTIONS(3508), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3511), + [sym_word] = ACTIONS(3514), + }, + [1039] = { + [sym_string] = STATE(1709), + [sym_simple_expansion] = STATE(1709), + [sym_string_expansion] = STATE(1709), + [sym_expansion] = STATE(1709), + [sym_command_substitution] = STATE(1709), + [sym_process_substitution] = STATE(1709), + [sym__special_characters] = ACTIONS(3517), + [anon_sym_DQUOTE] = ACTIONS(910), + [anon_sym_DOLLAR] = ACTIONS(912), + [sym_raw_string] = ACTIONS(3519), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(916), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(918), + [anon_sym_BQUOTE] = ACTIONS(920), + [anon_sym_LT_LPAREN] = ACTIONS(922), + [anon_sym_GT_LPAREN] = ACTIONS(922), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3517), + }, + [1040] = { + [aux_sym_concatenation_repeat1] = STATE(1710), + [sym__concat] = ACTIONS(2086), + [anon_sym_PIPE] = ACTIONS(1539), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_PIPE_AMP] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(772), + [anon_sym_PIPE_PIPE] = ACTIONS(772), + [sym__special_characters] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(1539), + [sym_raw_string] = ACTIONS(772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(772), + [anon_sym_BQUOTE] = ACTIONS(772), + [anon_sym_LT_LPAREN] = ACTIONS(772), + [anon_sym_GT_LPAREN] = ACTIONS(772), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1539), + [sym_word] = ACTIONS(774), + }, + [1041] = { + [sym__concat] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_RPAREN] = ACTIONS(776), + [anon_sym_PIPE_AMP] = ACTIONS(776), + [anon_sym_AMP_AMP] = ACTIONS(776), + [anon_sym_PIPE_PIPE] = ACTIONS(776), + [sym__special_characters] = ACTIONS(1541), + [anon_sym_DQUOTE] = ACTIONS(776), + [anon_sym_DOLLAR] = ACTIONS(1541), + [sym_raw_string] = ACTIONS(776), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(776), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(776), + [anon_sym_BQUOTE] = ACTIONS(776), + [anon_sym_LT_LPAREN] = ACTIONS(776), + [anon_sym_GT_LPAREN] = ACTIONS(776), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1541), + [sym_word] = ACTIONS(778), + }, + [1042] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(3521), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [1043] = { + [sym__concat] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_RPAREN] = ACTIONS(808), + [anon_sym_PIPE_AMP] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [sym__special_characters] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(808), + [anon_sym_DOLLAR] = ACTIONS(1545), + [sym_raw_string] = ACTIONS(808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(808), + [anon_sym_BQUOTE] = ACTIONS(808), + [anon_sym_LT_LPAREN] = ACTIONS(808), + [anon_sym_GT_LPAREN] = ACTIONS(808), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1545), + [sym_word] = ACTIONS(810), + }, + [1044] = { + [sym__concat] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(1547), + [anon_sym_RPAREN] = ACTIONS(812), + [anon_sym_PIPE_AMP] = ACTIONS(812), + [anon_sym_AMP_AMP] = ACTIONS(812), + [anon_sym_PIPE_PIPE] = ACTIONS(812), + [sym__special_characters] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR] = ACTIONS(1547), + [sym_raw_string] = ACTIONS(812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(812), + [anon_sym_BQUOTE] = ACTIONS(812), + [anon_sym_LT_LPAREN] = ACTIONS(812), + [anon_sym_GT_LPAREN] = ACTIONS(812), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1547), + [sym_word] = ACTIONS(814), + }, + [1045] = { + [sym__concat] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_RPAREN] = ACTIONS(816), + [anon_sym_PIPE_AMP] = ACTIONS(816), + [anon_sym_AMP_AMP] = ACTIONS(816), + [anon_sym_PIPE_PIPE] = ACTIONS(816), + [sym__special_characters] = ACTIONS(1549), + [anon_sym_DQUOTE] = ACTIONS(816), + [anon_sym_DOLLAR] = ACTIONS(1549), + [sym_raw_string] = ACTIONS(816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(816), + [anon_sym_BQUOTE] = ACTIONS(816), + [anon_sym_LT_LPAREN] = ACTIONS(816), + [anon_sym_GT_LPAREN] = ACTIONS(816), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1549), + [sym_word] = ACTIONS(818), + }, + [1046] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(3523), + [sym_comment] = ACTIONS(56), + }, + [1047] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1715), + [anon_sym_RBRACE] = ACTIONS(3525), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3527), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1048] = { + [sym_subscript] = STATE(1719), + [sym_variable_name] = ACTIONS(3529), + [anon_sym_DOLLAR] = ACTIONS(3531), + [anon_sym_DASH] = ACTIONS(3531), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3533), + [anon_sym_STAR] = ACTIONS(3531), + [anon_sym_AT] = ACTIONS(3531), + [anon_sym_QMARK] = ACTIONS(3531), + [anon_sym_0] = ACTIONS(3535), + [anon_sym__] = ACTIONS(3535), + }, + [1049] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1722), + [anon_sym_RBRACE] = ACTIONS(3537), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3539), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1050] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1725), + [anon_sym_RBRACE] = ACTIONS(3541), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3543), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1051] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(3545), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [1052] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(3545), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1053] = { + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(3545), + [sym_comment] = ACTIONS(56), + }, + [1054] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(3545), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1055] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(3547), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [1056] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(3547), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1057] = { + [sym_concatenation] = STATE(508), + [sym_string] = STATE(502), + [sym_simple_expansion] = STATE(502), + [sym_string_expansion] = STATE(502), + [sym_expansion] = STATE(502), + [sym_command_substitution] = STATE(502), + [sym_process_substitution] = STATE(502), + [aux_sym_unset_command_repeat1] = STATE(1057), + [anon_sym_PIPE] = ACTIONS(3549), + [anon_sym_RPAREN] = ACTIONS(3551), + [anon_sym_PIPE_AMP] = ACTIONS(3551), + [anon_sym_AMP_AMP] = ACTIONS(3551), + [anon_sym_PIPE_PIPE] = ACTIONS(3551), + [sym__special_characters] = ACTIONS(3553), + [anon_sym_DQUOTE] = ACTIONS(3556), + [anon_sym_DOLLAR] = ACTIONS(3559), + [sym_raw_string] = ACTIONS(3562), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3565), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3568), + [anon_sym_BQUOTE] = ACTIONS(3571), + [anon_sym_LT_LPAREN] = ACTIONS(3574), + [anon_sym_GT_LPAREN] = ACTIONS(3574), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3577), + [sym_word] = ACTIONS(3580), + }, + [1058] = { + [sym_file_descriptor] = ACTIONS(1858), + [sym__concat] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(1858), + [anon_sym_PIPE_AMP] = ACTIONS(1858), + [anon_sym_AMP_AMP] = ACTIONS(1858), + [anon_sym_PIPE_PIPE] = ACTIONS(1858), + [anon_sym_EQ_TILDE] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3008), + [anon_sym_GT] = ACTIONS(3008), + [anon_sym_GT_GT] = ACTIONS(1858), + [anon_sym_AMP_GT] = ACTIONS(3008), + [anon_sym_AMP_GT_GT] = ACTIONS(1858), + [anon_sym_LT_AMP] = ACTIONS(1858), + [anon_sym_GT_AMP] = ACTIONS(1858), + [anon_sym_LT_LT] = ACTIONS(3008), + [anon_sym_LT_LT_DASH] = ACTIONS(1858), + [anon_sym_LT_LT_LT] = ACTIONS(1858), + [sym__special_characters] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), + [anon_sym_BQUOTE] = ACTIONS(1858), + [anon_sym_LT_LPAREN] = ACTIONS(1858), + [anon_sym_GT_LPAREN] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1860), + }, + [1059] = { + [aux_sym_concatenation_repeat1] = STATE(1059), + [sym_file_descriptor] = ACTIONS(1858), + [sym__concat] = ACTIONS(3583), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(1858), + [anon_sym_PIPE_AMP] = ACTIONS(1858), + [anon_sym_AMP_AMP] = ACTIONS(1858), + [anon_sym_PIPE_PIPE] = ACTIONS(1858), + [anon_sym_EQ_TILDE] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3008), + [anon_sym_GT] = ACTIONS(3008), + [anon_sym_GT_GT] = ACTIONS(1858), + [anon_sym_AMP_GT] = ACTIONS(3008), + [anon_sym_AMP_GT_GT] = ACTIONS(1858), + [anon_sym_LT_AMP] = ACTIONS(1858), + [anon_sym_GT_AMP] = ACTIONS(1858), + [anon_sym_LT_LT] = ACTIONS(3008), + [anon_sym_LT_LT_DASH] = ACTIONS(1858), + [anon_sym_LT_LT_LT] = ACTIONS(1858), + [sym__special_characters] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), + [anon_sym_BQUOTE] = ACTIONS(1858), + [anon_sym_LT_LPAREN] = ACTIONS(1858), + [anon_sym_GT_LPAREN] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1860), + }, + [1060] = { + [sym_file_descriptor] = ACTIONS(1895), + [sym__concat] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_RPAREN] = ACTIONS(1895), + [anon_sym_PIPE_AMP] = ACTIONS(1895), + [anon_sym_AMP_AMP] = ACTIONS(1895), + [anon_sym_PIPE_PIPE] = ACTIONS(1895), + [anon_sym_EQ_TILDE] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_GT_GT] = ACTIONS(1895), + [anon_sym_AMP_GT] = ACTIONS(3013), + [anon_sym_AMP_GT_GT] = ACTIONS(1895), + [anon_sym_LT_AMP] = ACTIONS(1895), + [anon_sym_GT_AMP] = ACTIONS(1895), + [anon_sym_LT_LT] = ACTIONS(3013), + [anon_sym_LT_LT_DASH] = ACTIONS(1895), + [anon_sym_LT_LT_LT] = ACTIONS(1895), + [sym__special_characters] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(3013), + [sym_raw_string] = ACTIONS(1895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1895), + [anon_sym_BQUOTE] = ACTIONS(1895), + [anon_sym_LT_LPAREN] = ACTIONS(1895), + [anon_sym_GT_LPAREN] = ACTIONS(1895), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1897), + }, + [1061] = { + [sym_concatenation] = STATE(1731), + [sym_string] = STATE(1730), + [sym_simple_expansion] = STATE(1730), + [sym_string_expansion] = STATE(1730), + [sym_expansion] = STATE(1730), + [sym_command_substitution] = STATE(1730), + [sym_process_substitution] = STATE(1730), + [anon_sym_RBRACE] = ACTIONS(3586), + [sym__special_characters] = ACTIONS(3588), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(3590), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3592), + }, + [1062] = { + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(3023), + [anon_sym_RPAREN] = ACTIONS(1940), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_EQ_TILDE] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_GT] = ACTIONS(3023), + [anon_sym_GT_GT] = ACTIONS(1940), + [anon_sym_AMP_GT] = ACTIONS(3023), + [anon_sym_AMP_GT_GT] = ACTIONS(1940), + [anon_sym_LT_AMP] = ACTIONS(1940), + [anon_sym_GT_AMP] = ACTIONS(1940), + [anon_sym_LT_LT] = ACTIONS(3023), + [anon_sym_LT_LT_DASH] = ACTIONS(1940), + [anon_sym_LT_LT_LT] = ACTIONS(1940), + [sym__special_characters] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(3023), + [sym_raw_string] = ACTIONS(1940), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1940), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [anon_sym_LT_LPAREN] = ACTIONS(1940), + [anon_sym_GT_LPAREN] = ACTIONS(1940), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1942), + }, + [1063] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3594), + }, + [1064] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3596), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1065] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(3598), + [sym_comment] = ACTIONS(56), + }, + [1066] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1737), + [anon_sym_RBRACE] = ACTIONS(3600), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3602), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1067] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1740), + [anon_sym_RBRACE] = ACTIONS(3604), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3606), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1068] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1742), + [anon_sym_RBRACE] = ACTIONS(3586), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3608), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1069] = { + [sym_file_descriptor] = ACTIONS(1992), + [sym__concat] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(3041), + [anon_sym_RPAREN] = ACTIONS(1992), + [anon_sym_PIPE_AMP] = ACTIONS(1992), + [anon_sym_AMP_AMP] = ACTIONS(1992), + [anon_sym_PIPE_PIPE] = ACTIONS(1992), + [anon_sym_EQ_TILDE] = ACTIONS(3041), + [anon_sym_LT] = ACTIONS(3041), + [anon_sym_GT] = ACTIONS(3041), + [anon_sym_GT_GT] = ACTIONS(1992), + [anon_sym_AMP_GT] = ACTIONS(3041), + [anon_sym_AMP_GT_GT] = ACTIONS(1992), + [anon_sym_LT_AMP] = ACTIONS(1992), + [anon_sym_GT_AMP] = ACTIONS(1992), + [anon_sym_LT_LT] = ACTIONS(3041), + [anon_sym_LT_LT_DASH] = ACTIONS(1992), + [anon_sym_LT_LT_LT] = ACTIONS(1992), + [sym__special_characters] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(1992), + [anon_sym_DOLLAR] = ACTIONS(3041), + [sym_raw_string] = ACTIONS(1992), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1992), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1992), + [anon_sym_BQUOTE] = ACTIONS(1992), + [anon_sym_LT_LPAREN] = ACTIONS(1992), + [anon_sym_GT_LPAREN] = ACTIONS(1992), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1994), + }, + [1070] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3610), + }, + [1071] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3612), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1072] = { + [sym_file_descriptor] = ACTIONS(2000), + [sym__concat] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(3047), + [anon_sym_RPAREN] = ACTIONS(2000), + [anon_sym_PIPE_AMP] = ACTIONS(2000), + [anon_sym_AMP_AMP] = ACTIONS(2000), + [anon_sym_PIPE_PIPE] = ACTIONS(2000), + [anon_sym_EQ_TILDE] = ACTIONS(3047), + [anon_sym_LT] = ACTIONS(3047), + [anon_sym_GT] = ACTIONS(3047), + [anon_sym_GT_GT] = ACTIONS(2000), + [anon_sym_AMP_GT] = ACTIONS(3047), + [anon_sym_AMP_GT_GT] = ACTIONS(2000), + [anon_sym_LT_AMP] = ACTIONS(2000), + [anon_sym_GT_AMP] = ACTIONS(2000), + [anon_sym_LT_LT] = ACTIONS(3047), + [anon_sym_LT_LT_DASH] = ACTIONS(2000), + [anon_sym_LT_LT_LT] = ACTIONS(2000), + [sym__special_characters] = ACTIONS(3047), + [anon_sym_DQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(3047), + [sym_raw_string] = ACTIONS(2000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2000), + [anon_sym_BQUOTE] = ACTIONS(2000), + [anon_sym_LT_LPAREN] = ACTIONS(2000), + [anon_sym_GT_LPAREN] = ACTIONS(2000), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2002), + }, + [1073] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3614), + }, + [1074] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3586), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1075] = { + [sym_file_descriptor] = ACTIONS(2156), + [sym__concat] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_RPAREN] = ACTIONS(2156), + [anon_sym_PIPE_AMP] = ACTIONS(2156), + [anon_sym_AMP_AMP] = ACTIONS(2156), + [anon_sym_PIPE_PIPE] = ACTIONS(2156), + [anon_sym_EQ_TILDE] = ACTIONS(3051), + [anon_sym_LT] = ACTIONS(3051), + [anon_sym_GT] = ACTIONS(3051), + [anon_sym_GT_GT] = ACTIONS(2156), + [anon_sym_AMP_GT] = ACTIONS(3051), + [anon_sym_AMP_GT_GT] = ACTIONS(2156), + [anon_sym_LT_AMP] = ACTIONS(2156), + [anon_sym_GT_AMP] = ACTIONS(2156), + [anon_sym_LT_LT] = ACTIONS(3051), + [anon_sym_LT_LT_DASH] = ACTIONS(2156), + [anon_sym_LT_LT_LT] = ACTIONS(2156), + [sym__special_characters] = ACTIONS(3051), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_DOLLAR] = ACTIONS(3051), + [sym_raw_string] = ACTIONS(2156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2156), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2156), + [anon_sym_LT_LPAREN] = ACTIONS(2156), + [anon_sym_GT_LPAREN] = ACTIONS(2156), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2158), + }, + [1076] = { + [sym_file_descriptor] = ACTIONS(2358), + [sym__concat] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(3053), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_PIPE_AMP] = ACTIONS(2358), + [anon_sym_AMP_AMP] = ACTIONS(2358), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [anon_sym_EQ_TILDE] = ACTIONS(3053), + [anon_sym_LT] = ACTIONS(3053), + [anon_sym_GT] = ACTIONS(3053), + [anon_sym_GT_GT] = ACTIONS(2358), + [anon_sym_AMP_GT] = ACTIONS(3053), + [anon_sym_AMP_GT_GT] = ACTIONS(2358), + [anon_sym_LT_AMP] = ACTIONS(2358), + [anon_sym_GT_AMP] = ACTIONS(2358), + [anon_sym_LT_LT] = ACTIONS(3053), + [anon_sym_LT_LT_DASH] = ACTIONS(2358), + [anon_sym_LT_LT_LT] = ACTIONS(2358), + [sym__special_characters] = ACTIONS(3053), + [anon_sym_DQUOTE] = ACTIONS(2358), + [anon_sym_DOLLAR] = ACTIONS(3053), + [sym_raw_string] = ACTIONS(2358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2358), + [anon_sym_BQUOTE] = ACTIONS(2358), + [anon_sym_LT_LPAREN] = ACTIONS(2358), + [anon_sym_GT_LPAREN] = ACTIONS(2358), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2360), + }, + [1077] = { + [sym_compound_statement] = STATE(1746), + [anon_sym_LBRACE] = ACTIONS(2046), + [sym_comment] = ACTIONS(56), + }, + [1078] = { + [anon_sym_PIPE] = ACTIONS(3616), + [anon_sym_RPAREN] = ACTIONS(3618), + [anon_sym_PIPE_AMP] = ACTIONS(3618), + [anon_sym_AMP_AMP] = ACTIONS(3618), + [anon_sym_PIPE_PIPE] = ACTIONS(3618), + [anon_sym_BQUOTE] = ACTIONS(3618), + [sym_comment] = ACTIONS(56), + }, + [1079] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(3616), + [anon_sym_RPAREN] = ACTIONS(3618), + [anon_sym_PIPE_AMP] = ACTIONS(3618), + [anon_sym_AMP_AMP] = ACTIONS(3618), + [anon_sym_PIPE_PIPE] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1080] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(3620), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_PIPE_PIPE] = ACTIONS(3620), + [sym_comment] = ACTIONS(56), + }, + [1081] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(3620), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_PIPE_PIPE] = ACTIONS(3620), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1082] = { + [sym_concatenation] = STATE(1749), + [sym_string] = STATE(1748), + [sym_simple_expansion] = STATE(1748), + [sym_string_expansion] = STATE(1748), + [sym_expansion] = STATE(1748), + [sym_command_substitution] = STATE(1748), + [sym_process_substitution] = STATE(1748), + [sym__special_characters] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_DOLLAR] = ACTIONS(2186), + [sym_raw_string] = ACTIONS(3624), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2194), + [anon_sym_LT_LPAREN] = ACTIONS(2196), + [anon_sym_GT_LPAREN] = ACTIONS(2196), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3626), + }, + [1083] = { + [aux_sym_concatenation_repeat1] = STATE(511), + [sym_file_descriptor] = ACTIONS(1525), + [sym__concat] = ACTIONS(928), + [anon_sym_PIPE] = ACTIONS(1523), + [anon_sym_RPAREN] = ACTIONS(1525), + [anon_sym_PIPE_AMP] = ACTIONS(1525), + [anon_sym_AMP_AMP] = ACTIONS(1525), + [anon_sym_PIPE_PIPE] = ACTIONS(1525), + [anon_sym_EQ_TILDE] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_GT_GT] = ACTIONS(1525), + [anon_sym_AMP_GT] = ACTIONS(1523), + [anon_sym_AMP_GT_GT] = ACTIONS(1525), + [anon_sym_LT_AMP] = ACTIONS(1525), + [anon_sym_GT_AMP] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1523), + [anon_sym_LT_LT_DASH] = ACTIONS(1525), + [anon_sym_LT_LT_LT] = ACTIONS(1525), + [sym__special_characters] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(1523), + [sym_raw_string] = ACTIONS(1525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1525), + [anon_sym_BQUOTE] = ACTIONS(1525), + [anon_sym_LT_LPAREN] = ACTIONS(1525), + [anon_sym_GT_LPAREN] = ACTIONS(1525), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1527), + }, + [1084] = { + [aux_sym_concatenation_repeat1] = STATE(511), + [sym_file_descriptor] = ACTIONS(1531), + [sym__concat] = ACTIONS(928), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_RPAREN] = ACTIONS(1531), + [anon_sym_PIPE_AMP] = ACTIONS(1531), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE_PIPE] = ACTIONS(1531), + [anon_sym_EQ_TILDE] = ACTIONS(1529), + [anon_sym_LT] = ACTIONS(1529), + [anon_sym_GT] = ACTIONS(1529), + [anon_sym_GT_GT] = ACTIONS(1531), + [anon_sym_AMP_GT] = ACTIONS(1529), + [anon_sym_AMP_GT_GT] = ACTIONS(1531), + [anon_sym_LT_AMP] = ACTIONS(1531), + [anon_sym_GT_AMP] = ACTIONS(1531), + [anon_sym_LT_LT] = ACTIONS(1529), + [anon_sym_LT_LT_DASH] = ACTIONS(1531), + [anon_sym_LT_LT_LT] = ACTIONS(1531), + [sym__special_characters] = ACTIONS(1529), + [anon_sym_DQUOTE] = ACTIONS(1531), + [anon_sym_DOLLAR] = ACTIONS(1529), + [sym_raw_string] = ACTIONS(1531), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1531), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1531), + [anon_sym_BQUOTE] = ACTIONS(1531), + [anon_sym_LT_LPAREN] = ACTIONS(1531), + [anon_sym_GT_LPAREN] = ACTIONS(1531), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1533), + }, + [1085] = { + [sym_file_descriptor] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_RPAREN] = ACTIONS(1531), + [anon_sym_PIPE_AMP] = ACTIONS(1531), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE_PIPE] = ACTIONS(1531), + [anon_sym_EQ_TILDE] = ACTIONS(1529), + [anon_sym_LT] = ACTIONS(1529), + [anon_sym_GT] = ACTIONS(1529), + [anon_sym_GT_GT] = ACTIONS(1531), + [anon_sym_AMP_GT] = ACTIONS(1529), + [anon_sym_AMP_GT_GT] = ACTIONS(1531), + [anon_sym_LT_AMP] = ACTIONS(1531), + [anon_sym_GT_AMP] = ACTIONS(1531), + [anon_sym_LT_LT] = ACTIONS(1529), + [anon_sym_LT_LT_DASH] = ACTIONS(1531), + [anon_sym_LT_LT_LT] = ACTIONS(1531), + [sym__special_characters] = ACTIONS(1529), + [anon_sym_DQUOTE] = ACTIONS(1531), + [anon_sym_DOLLAR] = ACTIONS(1529), + [sym_raw_string] = ACTIONS(1531), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1531), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1531), + [anon_sym_BQUOTE] = ACTIONS(1531), + [anon_sym_LT_LPAREN] = ACTIONS(1531), + [anon_sym_GT_LPAREN] = ACTIONS(1531), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1533), + }, + [1086] = { + [aux_sym_concatenation_repeat1] = STATE(1751), + [sym_file_descriptor] = ACTIONS(740), + [sym__concat] = ACTIONS(3628), + [anon_sym_PIPE] = ACTIONS(744), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_PIPE_AMP] = ACTIONS(740), + [anon_sym_AMP_AMP] = ACTIONS(740), + [anon_sym_PIPE_PIPE] = ACTIONS(740), + [anon_sym_LT] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(744), + [anon_sym_GT_GT] = ACTIONS(740), + [anon_sym_AMP_GT] = ACTIONS(744), + [anon_sym_AMP_GT_GT] = ACTIONS(740), + [anon_sym_LT_AMP] = ACTIONS(740), + [anon_sym_GT_AMP] = ACTIONS(740), + [anon_sym_LT_LT] = ACTIONS(744), + [anon_sym_LT_LT_DASH] = ACTIONS(740), + [anon_sym_LT_LT_LT] = ACTIONS(740), + [sym_comment] = ACTIONS(56), + }, + [1087] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(1753), + [anon_sym_DQUOTE] = ACTIONS(3630), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [1088] = { + [sym_string] = STATE(1756), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_DOLLAR] = ACTIONS(3632), + [anon_sym_POUND] = ACTIONS(3632), + [anon_sym_DASH] = ACTIONS(3632), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3634), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_AT] = ACTIONS(3632), + [anon_sym_QMARK] = ACTIONS(3632), + [anon_sym_0] = ACTIONS(3636), + [anon_sym__] = ACTIONS(3636), + }, + [1089] = { + [aux_sym_concatenation_repeat1] = STATE(1751), + [sym_file_descriptor] = ACTIONS(754), + [sym__concat] = ACTIONS(3628), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_RPAREN] = ACTIONS(754), + [anon_sym_PIPE_AMP] = ACTIONS(754), + [anon_sym_AMP_AMP] = ACTIONS(754), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(754), + [anon_sym_AMP_GT] = ACTIONS(756), + [anon_sym_AMP_GT_GT] = ACTIONS(754), + [anon_sym_LT_AMP] = ACTIONS(754), + [anon_sym_GT_AMP] = ACTIONS(754), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_LT_LT_DASH] = ACTIONS(754), + [anon_sym_LT_LT_LT] = ACTIONS(754), + [sym_comment] = ACTIONS(56), + }, + [1090] = { + [sym_subscript] = STATE(1761), + [sym_variable_name] = ACTIONS(3638), + [anon_sym_DOLLAR] = ACTIONS(3640), + [anon_sym_POUND] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3640), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3640), + [anon_sym_AT] = ACTIONS(3640), + [anon_sym_QMARK] = ACTIONS(3640), + [anon_sym_0] = ACTIONS(3646), + [anon_sym__] = ACTIONS(3646), + }, + [1091] = { + [sym_for_statement] = STATE(1762), + [sym_while_statement] = STATE(1762), + [sym_if_statement] = STATE(1762), + [sym_case_statement] = STATE(1762), + [sym_function_definition] = STATE(1762), + [sym_subshell] = STATE(1762), + [sym_pipeline] = STATE(1762), + [sym_list] = STATE(1762), + [sym_command] = STATE(1762), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1762), + [sym_variable_assignment] = STATE(1763), + [sym_declaration_command] = STATE(1762), + [sym_unset_command] = STATE(1762), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [1092] = { + [sym_for_statement] = STATE(1764), + [sym_while_statement] = STATE(1764), + [sym_if_statement] = STATE(1764), + [sym_case_statement] = STATE(1764), + [sym_function_definition] = STATE(1764), + [sym_subshell] = STATE(1764), + [sym_pipeline] = STATE(1764), + [sym_list] = STATE(1764), + [sym_command] = STATE(1764), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(1764), + [sym_variable_assignment] = STATE(1765), + [sym_declaration_command] = STATE(1764), + [sym_unset_command] = STATE(1764), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), + }, + [1093] = { + [sym_for_statement] = STATE(1766), + [sym_while_statement] = STATE(1766), + [sym_if_statement] = STATE(1766), + [sym_case_statement] = STATE(1766), + [sym_function_definition] = STATE(1766), + [sym_subshell] = STATE(1766), + [sym_pipeline] = STATE(1766), + [sym_list] = STATE(1766), + [sym_command] = STATE(1766), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1766), + [sym_variable_assignment] = STATE(1767), + [sym_declaration_command] = STATE(1766), + [sym_unset_command] = STATE(1766), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [1094] = { + [sym_file_descriptor] = ACTIONS(754), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_RPAREN] = ACTIONS(754), + [anon_sym_PIPE_AMP] = ACTIONS(754), + [anon_sym_AMP_AMP] = ACTIONS(754), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(754), + [anon_sym_AMP_GT] = ACTIONS(756), + [anon_sym_AMP_GT_GT] = ACTIONS(754), + [anon_sym_LT_AMP] = ACTIONS(754), + [anon_sym_GT_AMP] = ACTIONS(754), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_LT_LT_DASH] = ACTIONS(754), + [anon_sym_LT_LT_LT] = ACTIONS(754), + [anon_sym_BQUOTE] = ACTIONS(754), + [sym_comment] = ACTIONS(56), + }, + [1095] = { + [sym_file_descriptor] = ACTIONS(2396), + [anon_sym_PIPE] = ACTIONS(3648), + [anon_sym_RPAREN] = ACTIONS(2396), + [anon_sym_PIPE_AMP] = ACTIONS(2396), + [anon_sym_AMP_AMP] = ACTIONS(2396), + [anon_sym_PIPE_PIPE] = ACTIONS(2396), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_GT] = ACTIONS(3648), + [anon_sym_GT_GT] = ACTIONS(2396), + [anon_sym_AMP_GT] = ACTIONS(3648), + [anon_sym_AMP_GT_GT] = ACTIONS(2396), + [anon_sym_LT_AMP] = ACTIONS(2396), + [anon_sym_GT_AMP] = ACTIONS(2396), + [anon_sym_LT_LT] = ACTIONS(3648), + [anon_sym_LT_LT_DASH] = ACTIONS(2396), + [anon_sym_LT_LT_LT] = ACTIONS(2396), + [anon_sym_BQUOTE] = ACTIONS(2396), + [sym_comment] = ACTIONS(56), + }, + [1096] = { + [sym_simple_expansion] = STATE(1218), + [sym_expansion] = STATE(1218), + [aux_sym_heredoc_repeat1] = STATE(1769), + [sym__heredoc_middle] = ACTIONS(2400), + [sym__heredoc_end] = ACTIONS(3650), + [anon_sym_DOLLAR] = ACTIONS(2404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2406), + [sym_comment] = ACTIONS(56), + }, + [1097] = { + [sym_file_descriptor] = ACTIONS(2408), + [anon_sym_PIPE] = ACTIONS(3652), + [anon_sym_RPAREN] = ACTIONS(2408), + [anon_sym_PIPE_AMP] = ACTIONS(2408), + [anon_sym_AMP_AMP] = ACTIONS(2408), + [anon_sym_PIPE_PIPE] = ACTIONS(2408), + [anon_sym_LT] = ACTIONS(3652), + [anon_sym_GT] = ACTIONS(3652), + [anon_sym_GT_GT] = ACTIONS(2408), + [anon_sym_AMP_GT] = ACTIONS(3652), + [anon_sym_AMP_GT_GT] = ACTIONS(2408), + [anon_sym_LT_AMP] = ACTIONS(2408), + [anon_sym_GT_AMP] = ACTIONS(2408), + [anon_sym_LT_LT] = ACTIONS(3652), + [anon_sym_LT_LT_DASH] = ACTIONS(2408), + [anon_sym_LT_LT_LT] = ACTIONS(2408), + [anon_sym_BQUOTE] = ACTIONS(2408), + [sym_comment] = ACTIONS(56), + }, + [1098] = { + [aux_sym_concatenation_repeat1] = STATE(1751), + [sym_file_descriptor] = ACTIONS(2412), + [sym__concat] = ACTIONS(3628), + [anon_sym_PIPE] = ACTIONS(3654), + [anon_sym_RPAREN] = ACTIONS(2412), + [anon_sym_PIPE_AMP] = ACTIONS(2412), + [anon_sym_AMP_AMP] = ACTIONS(2412), + [anon_sym_PIPE_PIPE] = ACTIONS(2412), + [anon_sym_LT] = ACTIONS(3654), + [anon_sym_GT] = ACTIONS(3654), + [anon_sym_GT_GT] = ACTIONS(2412), + [anon_sym_AMP_GT] = ACTIONS(3654), + [anon_sym_AMP_GT_GT] = ACTIONS(2412), + [anon_sym_LT_AMP] = ACTIONS(2412), + [anon_sym_GT_AMP] = ACTIONS(2412), + [anon_sym_LT_LT] = ACTIONS(3654), + [anon_sym_LT_LT_DASH] = ACTIONS(2412), + [anon_sym_LT_LT_LT] = ACTIONS(2412), + [sym_comment] = ACTIONS(56), + }, + [1099] = { + [aux_sym_concatenation_repeat1] = STATE(1751), + [sym_file_descriptor] = ACTIONS(2416), + [sym__concat] = ACTIONS(3628), + [anon_sym_PIPE] = ACTIONS(3656), + [anon_sym_RPAREN] = ACTIONS(2416), + [anon_sym_PIPE_AMP] = ACTIONS(2416), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_GT] = ACTIONS(3656), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_AMP_GT] = ACTIONS(3656), + [anon_sym_AMP_GT_GT] = ACTIONS(2416), + [anon_sym_LT_AMP] = ACTIONS(2416), + [anon_sym_GT_AMP] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(3656), + [anon_sym_LT_LT_DASH] = ACTIONS(2416), + [anon_sym_LT_LT_LT] = ACTIONS(2416), + [sym_comment] = ACTIONS(56), + }, + [1100] = { + [sym_file_descriptor] = ACTIONS(2416), + [anon_sym_PIPE] = ACTIONS(3656), + [anon_sym_RPAREN] = ACTIONS(2416), + [anon_sym_PIPE_AMP] = ACTIONS(2416), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_GT] = ACTIONS(3656), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_AMP_GT] = ACTIONS(3656), + [anon_sym_AMP_GT_GT] = ACTIONS(2416), + [anon_sym_LT_AMP] = ACTIONS(2416), + [anon_sym_GT_AMP] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(3656), + [anon_sym_LT_LT_DASH] = ACTIONS(2416), + [anon_sym_LT_LT_LT] = ACTIONS(2416), + [anon_sym_BQUOTE] = ACTIONS(2416), + [sym_comment] = ACTIONS(56), + }, + [1101] = { + [sym_file_redirect] = STATE(539), + [sym_heredoc_redirect] = STATE(539), + [sym_herestring_redirect] = STATE(539), + [aux_sym_while_statement_repeat1] = STATE(1101), + [sym_file_descriptor] = ACTIONS(3658), + [anon_sym_PIPE] = ACTIONS(3661), + [anon_sym_RPAREN] = ACTIONS(3663), + [anon_sym_PIPE_AMP] = ACTIONS(3663), + [anon_sym_AMP_AMP] = ACTIONS(3663), + [anon_sym_PIPE_PIPE] = ACTIONS(3663), + [anon_sym_LT] = ACTIONS(3665), + [anon_sym_GT] = ACTIONS(3665), + [anon_sym_GT_GT] = ACTIONS(3668), + [anon_sym_AMP_GT] = ACTIONS(3665), + [anon_sym_AMP_GT_GT] = ACTIONS(3668), + [anon_sym_LT_AMP] = ACTIONS(3668), + [anon_sym_GT_AMP] = ACTIONS(3668), + [anon_sym_LT_LT] = ACTIONS(3671), + [anon_sym_LT_LT_DASH] = ACTIONS(3674), + [anon_sym_LT_LT_LT] = ACTIONS(3677), + [sym_comment] = ACTIONS(56), + }, + [1102] = { + [sym_file_redirect] = STATE(539), + [sym_heredoc_redirect] = STATE(539), + [sym_herestring_redirect] = STATE(539), + [aux_sym_while_statement_repeat1] = STATE(1101), + [sym_file_descriptor] = ACTIONS(962), + [anon_sym_PIPE] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3682), + [anon_sym_PIPE_AMP] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3682), + [anon_sym_LT] = ACTIONS(970), + [anon_sym_GT] = ACTIONS(970), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_AMP_GT] = ACTIONS(970), + [anon_sym_AMP_GT_GT] = ACTIONS(972), + [anon_sym_LT_AMP] = ACTIONS(972), + [anon_sym_GT_AMP] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_LT_LT_DASH] = ACTIONS(976), + [anon_sym_LT_LT_LT] = ACTIONS(978), + [sym_comment] = ACTIONS(56), + }, + [1103] = { + [sym_concatenation] = STATE(540), + [sym_string] = STATE(538), + [sym_simple_expansion] = STATE(538), + [sym_string_expansion] = STATE(538), + [sym_expansion] = STATE(538), + [sym_command_substitution] = STATE(538), + [sym_process_substitution] = STATE(538), + [aux_sym_command_repeat2] = STATE(1103), + [sym_file_descriptor] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_RPAREN] = ACTIONS(1531), + [anon_sym_PIPE_AMP] = ACTIONS(1531), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE_PIPE] = ACTIONS(1531), + [anon_sym_EQ_TILDE] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(1529), + [anon_sym_GT] = ACTIONS(1529), + [anon_sym_GT_GT] = ACTIONS(1531), + [anon_sym_AMP_GT] = ACTIONS(1529), + [anon_sym_AMP_GT_GT] = ACTIONS(1531), + [anon_sym_LT_AMP] = ACTIONS(1531), + [anon_sym_GT_AMP] = ACTIONS(1531), + [anon_sym_LT_LT] = ACTIONS(1529), + [anon_sym_LT_LT_DASH] = ACTIONS(1531), + [anon_sym_LT_LT_LT] = ACTIONS(1531), + [sym__special_characters] = ACTIONS(3687), + [anon_sym_DQUOTE] = ACTIONS(3690), + [anon_sym_DOLLAR] = ACTIONS(3693), + [sym_raw_string] = ACTIONS(3696), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3699), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3702), + [anon_sym_BQUOTE] = ACTIONS(3705), + [anon_sym_LT_LPAREN] = ACTIONS(3708), + [anon_sym_GT_LPAREN] = ACTIONS(3708), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3711), + }, + [1104] = { + [sym_file_redirect] = STATE(539), + [sym_heredoc_redirect] = STATE(539), + [sym_herestring_redirect] = STATE(539), + [sym_concatenation] = STATE(540), + [sym_string] = STATE(538), + [sym_simple_expansion] = STATE(538), + [sym_string_expansion] = STATE(538), + [sym_expansion] = STATE(538), + [sym_command_substitution] = STATE(538), + [sym_process_substitution] = STATE(538), + [aux_sym_while_statement_repeat1] = STATE(1770), + [aux_sym_command_repeat2] = STATE(1103), + [sym_file_descriptor] = ACTIONS(962), + [anon_sym_PIPE] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3682), + [anon_sym_PIPE_AMP] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3682), + [anon_sym_EQ_TILDE] = ACTIONS(968), + [anon_sym_LT] = ACTIONS(970), + [anon_sym_GT] = ACTIONS(970), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_AMP_GT] = ACTIONS(970), + [anon_sym_AMP_GT_GT] = ACTIONS(972), + [anon_sym_LT_AMP] = ACTIONS(972), + [anon_sym_GT_AMP] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_LT_LT_DASH] = ACTIONS(976), + [anon_sym_LT_LT_LT] = ACTIONS(978), + [sym__special_characters] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(982), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(984), + }, + [1105] = { + [aux_sym_concatenation_repeat1] = STATE(1772), + [sym_file_descriptor] = ACTIONS(1279), + [sym__concat] = ACTIONS(3714), + [sym_variable_name] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(3374), + [anon_sym_PIPE_AMP] = ACTIONS(1279), + [anon_sym_AMP_AMP] = ACTIONS(1279), + [anon_sym_PIPE_PIPE] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(3374), + [anon_sym_GT] = ACTIONS(3374), + [anon_sym_GT_GT] = ACTIONS(1279), + [anon_sym_AMP_GT] = ACTIONS(3374), + [anon_sym_AMP_GT_GT] = ACTIONS(1279), + [anon_sym_LT_AMP] = ACTIONS(1279), + [anon_sym_GT_AMP] = ACTIONS(1279), + [sym__special_characters] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(3374), + [sym_raw_string] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_LT_LPAREN] = ACTIONS(1279), + [anon_sym_GT_LPAREN] = ACTIONS(1279), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3374), + }, + [1106] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(1774), + [anon_sym_DQUOTE] = ACTIONS(3716), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [1107] = { + [sym_string] = STATE(1777), + [anon_sym_DQUOTE] = ACTIONS(2218), + [anon_sym_DOLLAR] = ACTIONS(3718), + [anon_sym_POUND] = ACTIONS(3718), + [anon_sym_DASH] = ACTIONS(3718), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3720), + [anon_sym_STAR] = ACTIONS(3718), + [anon_sym_AT] = ACTIONS(3718), + [anon_sym_QMARK] = ACTIONS(3718), + [anon_sym_0] = ACTIONS(3722), + [anon_sym__] = ACTIONS(3722), + }, + [1108] = { + [aux_sym_concatenation_repeat1] = STATE(1772), + [sym_file_descriptor] = ACTIONS(1255), + [sym__concat] = ACTIONS(3714), + [sym_variable_name] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(3368), + [anon_sym_PIPE_AMP] = ACTIONS(1255), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_AMP_GT] = ACTIONS(3368), + [anon_sym_AMP_GT_GT] = ACTIONS(1255), + [anon_sym_LT_AMP] = ACTIONS(1255), + [anon_sym_GT_AMP] = ACTIONS(1255), + [sym__special_characters] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(1255), + [anon_sym_DOLLAR] = ACTIONS(3368), + [sym_raw_string] = ACTIONS(1255), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1255), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1255), + [anon_sym_BQUOTE] = ACTIONS(1255), + [anon_sym_LT_LPAREN] = ACTIONS(1255), + [anon_sym_GT_LPAREN] = ACTIONS(1255), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3368), + }, + [1109] = { + [sym_subscript] = STATE(1782), + [sym_variable_name] = ACTIONS(3724), + [anon_sym_DOLLAR] = ACTIONS(3726), + [anon_sym_POUND] = ACTIONS(3728), + [anon_sym_DASH] = ACTIONS(3726), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3730), + [anon_sym_STAR] = ACTIONS(3726), + [anon_sym_AT] = ACTIONS(3726), + [anon_sym_QMARK] = ACTIONS(3726), + [anon_sym_0] = ACTIONS(3732), + [anon_sym__] = ACTIONS(3732), + }, + [1110] = { + [sym_for_statement] = STATE(1783), + [sym_while_statement] = STATE(1783), + [sym_if_statement] = STATE(1783), + [sym_case_statement] = STATE(1783), + [sym_function_definition] = STATE(1783), + [sym_subshell] = STATE(1783), + [sym_pipeline] = STATE(1783), + [sym_list] = STATE(1783), + [sym_command] = STATE(1783), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1783), + [sym_variable_assignment] = STATE(1784), + [sym_declaration_command] = STATE(1783), + [sym_unset_command] = STATE(1783), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [1111] = { + [sym_for_statement] = STATE(1785), + [sym_while_statement] = STATE(1785), + [sym_if_statement] = STATE(1785), + [sym_case_statement] = STATE(1785), + [sym_function_definition] = STATE(1785), + [sym_subshell] = STATE(1785), + [sym_pipeline] = STATE(1785), + [sym_list] = STATE(1785), + [sym_command] = STATE(1785), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(1785), + [sym_variable_assignment] = STATE(1786), + [sym_declaration_command] = STATE(1785), + [sym_unset_command] = STATE(1785), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), + }, + [1112] = { + [sym_for_statement] = STATE(1787), + [sym_while_statement] = STATE(1787), + [sym_if_statement] = STATE(1787), + [sym_case_statement] = STATE(1787), + [sym_function_definition] = STATE(1787), + [sym_subshell] = STATE(1787), + [sym_pipeline] = STATE(1787), + [sym_list] = STATE(1787), + [sym_command] = STATE(1787), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1787), + [sym_variable_assignment] = STATE(1788), + [sym_declaration_command] = STATE(1787), + [sym_unset_command] = STATE(1787), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [1113] = { + [sym_file_redirect] = STATE(539), + [sym_heredoc_redirect] = STATE(539), + [sym_herestring_redirect] = STATE(539), + [aux_sym_while_statement_repeat1] = STATE(1789), + [sym_file_descriptor] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(3396), + [anon_sym_PIPE_AMP] = ACTIONS(3398), + [anon_sym_AMP_AMP] = ACTIONS(3398), + [anon_sym_PIPE_PIPE] = ACTIONS(3398), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1060), + [anon_sym_GT_GT] = ACTIONS(1062), + [anon_sym_AMP_GT] = ACTIONS(1060), + [anon_sym_AMP_GT_GT] = ACTIONS(1062), + [anon_sym_LT_AMP] = ACTIONS(1062), + [anon_sym_GT_AMP] = ACTIONS(1062), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_LT_LT_DASH] = ACTIONS(976), + [anon_sym_LT_LT_LT] = ACTIONS(1064), + [anon_sym_BQUOTE] = ACTIONS(3398), + [sym_comment] = ACTIONS(56), + }, + [1114] = { + [anon_sym_RPAREN] = ACTIONS(3734), + [sym_comment] = ACTIONS(56), + }, + [1115] = { + [sym_file_redirect] = STATE(1682), + [sym_file_descriptor] = ACTIONS(3736), + [anon_sym_PIPE] = ACTIONS(3416), + [anon_sym_PIPE_AMP] = ACTIONS(3418), + [anon_sym_AMP_AMP] = ACTIONS(3418), + [anon_sym_PIPE_PIPE] = ACTIONS(3418), + [anon_sym_LT] = ACTIONS(3738), + [anon_sym_GT] = ACTIONS(3738), + [anon_sym_GT_GT] = ACTIONS(3740), + [anon_sym_AMP_GT] = ACTIONS(3738), + [anon_sym_AMP_GT_GT] = ACTIONS(3740), + [anon_sym_LT_AMP] = ACTIONS(3740), + [anon_sym_GT_AMP] = ACTIONS(3740), + [anon_sym_BQUOTE] = ACTIONS(3418), + [sym_comment] = ACTIONS(56), + }, + [1116] = { + [sym_file_redirect] = STATE(539), + [sym_heredoc_redirect] = STATE(539), + [sym_herestring_redirect] = STATE(539), + [aux_sym_while_statement_repeat1] = STATE(1793), + [sym_file_descriptor] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(3434), + [anon_sym_PIPE_AMP] = ACTIONS(3436), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3436), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1060), + [anon_sym_GT_GT] = ACTIONS(1062), + [anon_sym_AMP_GT] = ACTIONS(1060), + [anon_sym_AMP_GT_GT] = ACTIONS(1062), + [anon_sym_LT_AMP] = ACTIONS(1062), + [anon_sym_GT_AMP] = ACTIONS(1062), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_LT_LT_DASH] = ACTIONS(976), + [anon_sym_LT_LT_LT] = ACTIONS(1064), + [anon_sym_BQUOTE] = ACTIONS(3436), + [sym_comment] = ACTIONS(56), + }, + [1117] = { + [sym_concatenation] = STATE(1686), + [sym_string] = STATE(1795), + [sym_array] = STATE(1686), + [sym_simple_expansion] = STATE(1795), + [sym_string_expansion] = STATE(1795), + [sym_expansion] = STATE(1795), + [sym_command_substitution] = STATE(1795), + [sym_process_substitution] = STATE(1795), + [sym__empty_value] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3440), + [sym__special_characters] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1000), + [sym_raw_string] = ACTIONS(3744), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1004), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1006), + [anon_sym_BQUOTE] = ACTIONS(3746), + [anon_sym_LT_LPAREN] = ACTIONS(1008), + [anon_sym_GT_LPAREN] = ACTIONS(1008), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3748), + }, + [1118] = { + [sym_string] = STATE(1796), + [sym_simple_expansion] = STATE(1796), + [sym_string_expansion] = STATE(1796), + [sym_expansion] = STATE(1796), + [sym_command_substitution] = STATE(1796), + [sym_process_substitution] = STATE(1796), + [sym__special_characters] = ACTIONS(3750), + [anon_sym_DQUOTE] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(1000), + [sym_raw_string] = ACTIONS(3752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1004), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1006), + [anon_sym_BQUOTE] = ACTIONS(3746), + [anon_sym_LT_LPAREN] = ACTIONS(1008), + [anon_sym_GT_LPAREN] = ACTIONS(1008), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3750), + }, + [1119] = { + [aux_sym_concatenation_repeat1] = STATE(1797), + [sym__concat] = ACTIONS(2240), + [sym_variable_name] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(1539), + [anon_sym_PIPE_AMP] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(772), + [anon_sym_PIPE_PIPE] = ACTIONS(772), + [sym__special_characters] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(1539), + [sym_raw_string] = ACTIONS(772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(772), + [anon_sym_BQUOTE] = ACTIONS(772), + [anon_sym_LT_LPAREN] = ACTIONS(772), + [anon_sym_GT_LPAREN] = ACTIONS(772), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1539), + [sym_word] = ACTIONS(774), + }, + [1120] = { + [sym__concat] = ACTIONS(776), + [sym_variable_name] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_PIPE_AMP] = ACTIONS(776), + [anon_sym_AMP_AMP] = ACTIONS(776), + [anon_sym_PIPE_PIPE] = ACTIONS(776), + [sym__special_characters] = ACTIONS(1541), + [anon_sym_DQUOTE] = ACTIONS(776), + [anon_sym_DOLLAR] = ACTIONS(1541), + [sym_raw_string] = ACTIONS(776), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(776), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(776), + [anon_sym_BQUOTE] = ACTIONS(776), + [anon_sym_LT_LPAREN] = ACTIONS(776), + [anon_sym_GT_LPAREN] = ACTIONS(776), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1541), + [sym_word] = ACTIONS(778), + }, + [1121] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(3754), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [1122] = { + [sym__concat] = ACTIONS(808), + [sym_variable_name] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PIPE_AMP] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [sym__special_characters] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(808), + [anon_sym_DOLLAR] = ACTIONS(1545), + [sym_raw_string] = ACTIONS(808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(808), + [anon_sym_BQUOTE] = ACTIONS(808), + [anon_sym_LT_LPAREN] = ACTIONS(808), + [anon_sym_GT_LPAREN] = ACTIONS(808), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1545), + [sym_word] = ACTIONS(810), + }, + [1123] = { + [sym__concat] = ACTIONS(812), + [sym_variable_name] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(1547), + [anon_sym_PIPE_AMP] = ACTIONS(812), + [anon_sym_AMP_AMP] = ACTIONS(812), + [anon_sym_PIPE_PIPE] = ACTIONS(812), + [sym__special_characters] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR] = ACTIONS(1547), + [sym_raw_string] = ACTIONS(812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(812), + [anon_sym_BQUOTE] = ACTIONS(812), + [anon_sym_LT_LPAREN] = ACTIONS(812), + [anon_sym_GT_LPAREN] = ACTIONS(812), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1547), + [sym_word] = ACTIONS(814), + }, + [1124] = { + [sym__concat] = ACTIONS(816), + [sym_variable_name] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_PIPE_AMP] = ACTIONS(816), + [anon_sym_AMP_AMP] = ACTIONS(816), + [anon_sym_PIPE_PIPE] = ACTIONS(816), + [sym__special_characters] = ACTIONS(1549), + [anon_sym_DQUOTE] = ACTIONS(816), + [anon_sym_DOLLAR] = ACTIONS(1549), + [sym_raw_string] = ACTIONS(816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(816), + [anon_sym_BQUOTE] = ACTIONS(816), + [anon_sym_LT_LPAREN] = ACTIONS(816), + [anon_sym_GT_LPAREN] = ACTIONS(816), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1549), + [sym_word] = ACTIONS(818), + }, + [1125] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(3756), + [sym_comment] = ACTIONS(56), + }, + [1126] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1802), + [anon_sym_RBRACE] = ACTIONS(3758), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3760), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1127] = { + [sym_subscript] = STATE(1806), + [sym_variable_name] = ACTIONS(3762), + [anon_sym_DOLLAR] = ACTIONS(3764), + [anon_sym_DASH] = ACTIONS(3764), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(3764), + [anon_sym_AT] = ACTIONS(3764), + [anon_sym_QMARK] = ACTIONS(3764), + [anon_sym_0] = ACTIONS(3768), + [anon_sym__] = ACTIONS(3768), + }, + [1128] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1809), + [anon_sym_RBRACE] = ACTIONS(3770), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3772), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1129] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1812), + [anon_sym_RBRACE] = ACTIONS(3774), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3776), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1130] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(3778), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [1131] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(3778), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1132] = { + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(3778), + [sym_comment] = ACTIONS(56), + }, + [1133] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(3778), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1134] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(3780), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [1135] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(3780), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1136] = { + [sym_variable_assignment] = STATE(496), + [sym_subscript] = STATE(558), + [sym_concatenation] = STATE(496), + [sym_string] = STATE(553), + [sym_simple_expansion] = STATE(553), + [sym_string_expansion] = STATE(553), + [sym_expansion] = STATE(553), + [sym_command_substitution] = STATE(553), + [sym_process_substitution] = STATE(553), + [aux_sym_declaration_command_repeat1] = STATE(1136), + [sym_variable_name] = ACTIONS(3782), + [anon_sym_PIPE] = ACTIONS(3483), + [anon_sym_PIPE_AMP] = ACTIONS(3485), + [anon_sym_AMP_AMP] = ACTIONS(3485), + [anon_sym_PIPE_PIPE] = ACTIONS(3485), + [sym__special_characters] = ACTIONS(3785), + [anon_sym_DQUOTE] = ACTIONS(3788), + [anon_sym_DOLLAR] = ACTIONS(3791), + [sym_raw_string] = ACTIONS(3794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3797), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3800), + [anon_sym_BQUOTE] = ACTIONS(3803), + [anon_sym_LT_LPAREN] = ACTIONS(3806), + [anon_sym_GT_LPAREN] = ACTIONS(3806), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3511), + [sym_word] = ACTIONS(3809), + }, + [1137] = { + [sym_string] = STATE(1815), + [sym_simple_expansion] = STATE(1815), + [sym_string_expansion] = STATE(1815), + [sym_expansion] = STATE(1815), + [sym_command_substitution] = STATE(1815), + [sym_process_substitution] = STATE(1815), + [sym__special_characters] = ACTIONS(3812), + [anon_sym_DQUOTE] = ACTIONS(1014), + [anon_sym_DOLLAR] = ACTIONS(1016), + [sym_raw_string] = ACTIONS(3814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1020), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1022), + [anon_sym_BQUOTE] = ACTIONS(3816), + [anon_sym_LT_LPAREN] = ACTIONS(1024), + [anon_sym_GT_LPAREN] = ACTIONS(1024), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3812), + }, + [1138] = { + [aux_sym_concatenation_repeat1] = STATE(1816), + [sym__concat] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(1539), + [anon_sym_PIPE_AMP] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(772), + [anon_sym_PIPE_PIPE] = ACTIONS(772), + [sym__special_characters] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(1539), + [sym_raw_string] = ACTIONS(772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(772), + [anon_sym_BQUOTE] = ACTIONS(772), + [anon_sym_LT_LPAREN] = ACTIONS(772), + [anon_sym_GT_LPAREN] = ACTIONS(772), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1539), + [sym_word] = ACTIONS(774), + }, + [1139] = { + [sym__concat] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_PIPE_AMP] = ACTIONS(776), + [anon_sym_AMP_AMP] = ACTIONS(776), + [anon_sym_PIPE_PIPE] = ACTIONS(776), + [sym__special_characters] = ACTIONS(1541), + [anon_sym_DQUOTE] = ACTIONS(776), + [anon_sym_DOLLAR] = ACTIONS(1541), + [sym_raw_string] = ACTIONS(776), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(776), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(776), + [anon_sym_BQUOTE] = ACTIONS(776), + [anon_sym_LT_LPAREN] = ACTIONS(776), + [anon_sym_GT_LPAREN] = ACTIONS(776), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1541), + [sym_word] = ACTIONS(778), + }, + [1140] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(3818), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [1141] = { + [sym__concat] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PIPE_AMP] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [sym__special_characters] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(808), + [anon_sym_DOLLAR] = ACTIONS(1545), + [sym_raw_string] = ACTIONS(808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(808), + [anon_sym_BQUOTE] = ACTIONS(808), + [anon_sym_LT_LPAREN] = ACTIONS(808), + [anon_sym_GT_LPAREN] = ACTIONS(808), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1545), + [sym_word] = ACTIONS(810), + }, + [1142] = { + [sym__concat] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(1547), + [anon_sym_PIPE_AMP] = ACTIONS(812), + [anon_sym_AMP_AMP] = ACTIONS(812), + [anon_sym_PIPE_PIPE] = ACTIONS(812), + [sym__special_characters] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR] = ACTIONS(1547), + [sym_raw_string] = ACTIONS(812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(812), + [anon_sym_BQUOTE] = ACTIONS(812), + [anon_sym_LT_LPAREN] = ACTIONS(812), + [anon_sym_GT_LPAREN] = ACTIONS(812), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1547), + [sym_word] = ACTIONS(814), + }, + [1143] = { + [sym__concat] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_PIPE_AMP] = ACTIONS(816), + [anon_sym_AMP_AMP] = ACTIONS(816), + [anon_sym_PIPE_PIPE] = ACTIONS(816), + [sym__special_characters] = ACTIONS(1549), + [anon_sym_DQUOTE] = ACTIONS(816), + [anon_sym_DOLLAR] = ACTIONS(1549), + [sym_raw_string] = ACTIONS(816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(816), + [anon_sym_BQUOTE] = ACTIONS(816), + [anon_sym_LT_LPAREN] = ACTIONS(816), + [anon_sym_GT_LPAREN] = ACTIONS(816), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1549), + [sym_word] = ACTIONS(818), + }, + [1144] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(3820), + [sym_comment] = ACTIONS(56), + }, + [1145] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1821), + [anon_sym_RBRACE] = ACTIONS(3822), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3824), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1146] = { + [sym_subscript] = STATE(1825), + [sym_variable_name] = ACTIONS(3826), + [anon_sym_DOLLAR] = ACTIONS(3828), + [anon_sym_DASH] = ACTIONS(3828), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3830), + [anon_sym_STAR] = ACTIONS(3828), + [anon_sym_AT] = ACTIONS(3828), + [anon_sym_QMARK] = ACTIONS(3828), + [anon_sym_0] = ACTIONS(3832), + [anon_sym__] = ACTIONS(3832), + }, + [1147] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1828), + [anon_sym_RBRACE] = ACTIONS(3834), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3836), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1148] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1831), + [anon_sym_RBRACE] = ACTIONS(3838), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3840), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1149] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(3842), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [1150] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(3842), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1151] = { + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(3842), + [sym_comment] = ACTIONS(56), + }, + [1152] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(3842), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1153] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(3844), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [1154] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(3844), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1155] = { + [sym_concatenation] = STATE(508), + [sym_string] = STATE(563), + [sym_simple_expansion] = STATE(563), + [sym_string_expansion] = STATE(563), + [sym_expansion] = STATE(563), + [sym_command_substitution] = STATE(563), + [sym_process_substitution] = STATE(563), + [aux_sym_unset_command_repeat1] = STATE(1155), + [anon_sym_PIPE] = ACTIONS(3549), + [anon_sym_PIPE_AMP] = ACTIONS(3551), + [anon_sym_AMP_AMP] = ACTIONS(3551), + [anon_sym_PIPE_PIPE] = ACTIONS(3551), + [sym__special_characters] = ACTIONS(3846), + [anon_sym_DQUOTE] = ACTIONS(3849), + [anon_sym_DOLLAR] = ACTIONS(3852), + [sym_raw_string] = ACTIONS(3855), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3861), + [anon_sym_BQUOTE] = ACTIONS(3864), + [anon_sym_LT_LPAREN] = ACTIONS(3867), + [anon_sym_GT_LPAREN] = ACTIONS(3867), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3577), + [sym_word] = ACTIONS(3870), + }, + [1156] = { + [sym_file_descriptor] = ACTIONS(1858), + [sym__concat] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_PIPE_AMP] = ACTIONS(1858), + [anon_sym_AMP_AMP] = ACTIONS(1858), + [anon_sym_PIPE_PIPE] = ACTIONS(1858), + [anon_sym_EQ_TILDE] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3008), + [anon_sym_GT] = ACTIONS(3008), + [anon_sym_GT_GT] = ACTIONS(1858), + [anon_sym_AMP_GT] = ACTIONS(3008), + [anon_sym_AMP_GT_GT] = ACTIONS(1858), + [anon_sym_LT_AMP] = ACTIONS(1858), + [anon_sym_GT_AMP] = ACTIONS(1858), + [anon_sym_LT_LT] = ACTIONS(3008), + [anon_sym_LT_LT_DASH] = ACTIONS(1858), + [anon_sym_LT_LT_LT] = ACTIONS(1858), + [sym__special_characters] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), + [anon_sym_BQUOTE] = ACTIONS(1858), + [anon_sym_LT_LPAREN] = ACTIONS(1858), + [anon_sym_GT_LPAREN] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1860), + }, + [1157] = { + [aux_sym_concatenation_repeat1] = STATE(1157), + [sym_file_descriptor] = ACTIONS(1858), + [sym__concat] = ACTIONS(3873), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_PIPE_AMP] = ACTIONS(1858), + [anon_sym_AMP_AMP] = ACTIONS(1858), + [anon_sym_PIPE_PIPE] = ACTIONS(1858), + [anon_sym_EQ_TILDE] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3008), + [anon_sym_GT] = ACTIONS(3008), + [anon_sym_GT_GT] = ACTIONS(1858), + [anon_sym_AMP_GT] = ACTIONS(3008), + [anon_sym_AMP_GT_GT] = ACTIONS(1858), + [anon_sym_LT_AMP] = ACTIONS(1858), + [anon_sym_GT_AMP] = ACTIONS(1858), + [anon_sym_LT_LT] = ACTIONS(3008), + [anon_sym_LT_LT_DASH] = ACTIONS(1858), + [anon_sym_LT_LT_LT] = ACTIONS(1858), + [sym__special_characters] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), + [anon_sym_BQUOTE] = ACTIONS(1858), + [anon_sym_LT_LPAREN] = ACTIONS(1858), + [anon_sym_GT_LPAREN] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1860), + }, + [1158] = { + [sym_file_descriptor] = ACTIONS(1895), + [sym__concat] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_PIPE_AMP] = ACTIONS(1895), + [anon_sym_AMP_AMP] = ACTIONS(1895), + [anon_sym_PIPE_PIPE] = ACTIONS(1895), + [anon_sym_EQ_TILDE] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_GT_GT] = ACTIONS(1895), + [anon_sym_AMP_GT] = ACTIONS(3013), + [anon_sym_AMP_GT_GT] = ACTIONS(1895), + [anon_sym_LT_AMP] = ACTIONS(1895), + [anon_sym_GT_AMP] = ACTIONS(1895), + [anon_sym_LT_LT] = ACTIONS(3013), + [anon_sym_LT_LT_DASH] = ACTIONS(1895), + [anon_sym_LT_LT_LT] = ACTIONS(1895), + [sym__special_characters] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(3013), + [sym_raw_string] = ACTIONS(1895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1895), + [anon_sym_BQUOTE] = ACTIONS(1895), + [anon_sym_LT_LPAREN] = ACTIONS(1895), + [anon_sym_GT_LPAREN] = ACTIONS(1895), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1897), + }, + [1159] = { + [sym_concatenation] = STATE(1837), + [sym_string] = STATE(1836), + [sym_simple_expansion] = STATE(1836), + [sym_string_expansion] = STATE(1836), + [sym_expansion] = STATE(1836), + [sym_command_substitution] = STATE(1836), + [sym_process_substitution] = STATE(1836), + [anon_sym_RBRACE] = ACTIONS(3876), + [sym__special_characters] = ACTIONS(3878), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(3880), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3882), + }, + [1160] = { + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(3023), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_EQ_TILDE] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_GT] = ACTIONS(3023), + [anon_sym_GT_GT] = ACTIONS(1940), + [anon_sym_AMP_GT] = ACTIONS(3023), + [anon_sym_AMP_GT_GT] = ACTIONS(1940), + [anon_sym_LT_AMP] = ACTIONS(1940), + [anon_sym_GT_AMP] = ACTIONS(1940), + [anon_sym_LT_LT] = ACTIONS(3023), + [anon_sym_LT_LT_DASH] = ACTIONS(1940), + [anon_sym_LT_LT_LT] = ACTIONS(1940), + [sym__special_characters] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(3023), + [sym_raw_string] = ACTIONS(1940), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1940), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [anon_sym_LT_LPAREN] = ACTIONS(1940), + [anon_sym_GT_LPAREN] = ACTIONS(1940), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1942), + }, + [1161] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3884), + }, + [1162] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3886), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1163] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(3888), + [sym_comment] = ACTIONS(56), + }, + [1164] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1843), + [anon_sym_RBRACE] = ACTIONS(3890), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3892), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1165] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1846), + [anon_sym_RBRACE] = ACTIONS(3894), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3896), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1166] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1848), + [anon_sym_RBRACE] = ACTIONS(3876), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3898), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1167] = { + [sym_file_descriptor] = ACTIONS(1992), + [sym__concat] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(3041), + [anon_sym_PIPE_AMP] = ACTIONS(1992), + [anon_sym_AMP_AMP] = ACTIONS(1992), + [anon_sym_PIPE_PIPE] = ACTIONS(1992), + [anon_sym_EQ_TILDE] = ACTIONS(3041), + [anon_sym_LT] = ACTIONS(3041), + [anon_sym_GT] = ACTIONS(3041), + [anon_sym_GT_GT] = ACTIONS(1992), + [anon_sym_AMP_GT] = ACTIONS(3041), + [anon_sym_AMP_GT_GT] = ACTIONS(1992), + [anon_sym_LT_AMP] = ACTIONS(1992), + [anon_sym_GT_AMP] = ACTIONS(1992), + [anon_sym_LT_LT] = ACTIONS(3041), + [anon_sym_LT_LT_DASH] = ACTIONS(1992), + [anon_sym_LT_LT_LT] = ACTIONS(1992), + [sym__special_characters] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(1992), + [anon_sym_DOLLAR] = ACTIONS(3041), + [sym_raw_string] = ACTIONS(1992), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1992), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1992), + [anon_sym_BQUOTE] = ACTIONS(1992), + [anon_sym_LT_LPAREN] = ACTIONS(1992), + [anon_sym_GT_LPAREN] = ACTIONS(1992), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1994), + }, + [1168] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3900), + }, + [1169] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3902), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1170] = { + [sym_file_descriptor] = ACTIONS(2000), + [sym__concat] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(3047), + [anon_sym_PIPE_AMP] = ACTIONS(2000), + [anon_sym_AMP_AMP] = ACTIONS(2000), + [anon_sym_PIPE_PIPE] = ACTIONS(2000), + [anon_sym_EQ_TILDE] = ACTIONS(3047), + [anon_sym_LT] = ACTIONS(3047), + [anon_sym_GT] = ACTIONS(3047), + [anon_sym_GT_GT] = ACTIONS(2000), + [anon_sym_AMP_GT] = ACTIONS(3047), + [anon_sym_AMP_GT_GT] = ACTIONS(2000), + [anon_sym_LT_AMP] = ACTIONS(2000), + [anon_sym_GT_AMP] = ACTIONS(2000), + [anon_sym_LT_LT] = ACTIONS(3047), + [anon_sym_LT_LT_DASH] = ACTIONS(2000), + [anon_sym_LT_LT_LT] = ACTIONS(2000), + [sym__special_characters] = ACTIONS(3047), + [anon_sym_DQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(3047), + [sym_raw_string] = ACTIONS(2000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2000), + [anon_sym_BQUOTE] = ACTIONS(2000), + [anon_sym_LT_LPAREN] = ACTIONS(2000), + [anon_sym_GT_LPAREN] = ACTIONS(2000), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2002), + }, + [1171] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3904), + }, + [1172] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(3876), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1173] = { + [sym_file_descriptor] = ACTIONS(2156), + [sym__concat] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_PIPE_AMP] = ACTIONS(2156), + [anon_sym_AMP_AMP] = ACTIONS(2156), + [anon_sym_PIPE_PIPE] = ACTIONS(2156), + [anon_sym_EQ_TILDE] = ACTIONS(3051), + [anon_sym_LT] = ACTIONS(3051), + [anon_sym_GT] = ACTIONS(3051), + [anon_sym_GT_GT] = ACTIONS(2156), + [anon_sym_AMP_GT] = ACTIONS(3051), + [anon_sym_AMP_GT_GT] = ACTIONS(2156), + [anon_sym_LT_AMP] = ACTIONS(2156), + [anon_sym_GT_AMP] = ACTIONS(2156), + [anon_sym_LT_LT] = ACTIONS(3051), + [anon_sym_LT_LT_DASH] = ACTIONS(2156), + [anon_sym_LT_LT_LT] = ACTIONS(2156), + [sym__special_characters] = ACTIONS(3051), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_DOLLAR] = ACTIONS(3051), + [sym_raw_string] = ACTIONS(2156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2156), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2156), + [anon_sym_LT_LPAREN] = ACTIONS(2156), + [anon_sym_GT_LPAREN] = ACTIONS(2156), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2158), + }, + [1174] = { + [sym_file_descriptor] = ACTIONS(2358), + [sym__concat] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(3053), + [anon_sym_PIPE_AMP] = ACTIONS(2358), + [anon_sym_AMP_AMP] = ACTIONS(2358), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [anon_sym_EQ_TILDE] = ACTIONS(3053), + [anon_sym_LT] = ACTIONS(3053), + [anon_sym_GT] = ACTIONS(3053), + [anon_sym_GT_GT] = ACTIONS(2358), + [anon_sym_AMP_GT] = ACTIONS(3053), + [anon_sym_AMP_GT_GT] = ACTIONS(2358), + [anon_sym_LT_AMP] = ACTIONS(2358), + [anon_sym_GT_AMP] = ACTIONS(2358), + [anon_sym_LT_LT] = ACTIONS(3053), + [anon_sym_LT_LT_DASH] = ACTIONS(2358), + [anon_sym_LT_LT_LT] = ACTIONS(2358), + [sym__special_characters] = ACTIONS(3053), + [anon_sym_DQUOTE] = ACTIONS(2358), + [anon_sym_DOLLAR] = ACTIONS(3053), + [sym_raw_string] = ACTIONS(2358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2358), + [anon_sym_BQUOTE] = ACTIONS(2358), + [anon_sym_LT_LPAREN] = ACTIONS(2358), + [anon_sym_GT_LPAREN] = ACTIONS(2358), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2360), + }, + [1175] = { + [sym_compound_statement] = STATE(1852), + [anon_sym_LBRACE] = ACTIONS(2046), + [sym_comment] = ACTIONS(56), + }, + [1176] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(3616), + [anon_sym_PIPE_AMP] = ACTIONS(3618), + [anon_sym_AMP_AMP] = ACTIONS(3618), + [anon_sym_PIPE_PIPE] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(3618), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1177] = { + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_PIPE_PIPE] = ACTIONS(3620), + [anon_sym_BQUOTE] = ACTIONS(3620), + [sym_comment] = ACTIONS(56), + }, + [1178] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(3620), + [anon_sym_PIPE_PIPE] = ACTIONS(3620), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1179] = { + [sym_concatenation] = STATE(1749), + [sym_string] = STATE(1854), + [sym_simple_expansion] = STATE(1854), + [sym_string_expansion] = STATE(1854), + [sym_expansion] = STATE(1854), + [sym_command_substitution] = STATE(1854), + [sym_process_substitution] = STATE(1854), + [sym__special_characters] = ACTIONS(3906), + [anon_sym_DQUOTE] = ACTIONS(2336), + [anon_sym_DOLLAR] = ACTIONS(2338), + [sym_raw_string] = ACTIONS(3908), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2344), + [anon_sym_BQUOTE] = ACTIONS(2346), + [anon_sym_LT_LPAREN] = ACTIONS(2348), + [anon_sym_GT_LPAREN] = ACTIONS(2348), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3910), + }, + [1180] = { + [aux_sym_concatenation_repeat1] = STATE(570), + [sym_file_descriptor] = ACTIONS(1525), + [sym__concat] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(1523), + [anon_sym_PIPE_AMP] = ACTIONS(1525), + [anon_sym_AMP_AMP] = ACTIONS(1525), + [anon_sym_PIPE_PIPE] = ACTIONS(1525), + [anon_sym_EQ_TILDE] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(1523), + [anon_sym_GT] = ACTIONS(1523), + [anon_sym_GT_GT] = ACTIONS(1525), + [anon_sym_AMP_GT] = ACTIONS(1523), + [anon_sym_AMP_GT_GT] = ACTIONS(1525), + [anon_sym_LT_AMP] = ACTIONS(1525), + [anon_sym_GT_AMP] = ACTIONS(1525), + [anon_sym_LT_LT] = ACTIONS(1523), + [anon_sym_LT_LT_DASH] = ACTIONS(1525), + [anon_sym_LT_LT_LT] = ACTIONS(1525), + [sym__special_characters] = ACTIONS(1523), + [anon_sym_DQUOTE] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(1523), + [sym_raw_string] = ACTIONS(1525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1525), + [anon_sym_BQUOTE] = ACTIONS(1525), + [anon_sym_LT_LPAREN] = ACTIONS(1525), + [anon_sym_GT_LPAREN] = ACTIONS(1525), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1527), + }, + [1181] = { + [aux_sym_concatenation_repeat1] = STATE(570), + [sym_file_descriptor] = ACTIONS(1531), + [sym__concat] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_PIPE_AMP] = ACTIONS(1531), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE_PIPE] = ACTIONS(1531), + [anon_sym_EQ_TILDE] = ACTIONS(1529), + [anon_sym_LT] = ACTIONS(1529), + [anon_sym_GT] = ACTIONS(1529), + [anon_sym_GT_GT] = ACTIONS(1531), + [anon_sym_AMP_GT] = ACTIONS(1529), + [anon_sym_AMP_GT_GT] = ACTIONS(1531), + [anon_sym_LT_AMP] = ACTIONS(1531), + [anon_sym_GT_AMP] = ACTIONS(1531), + [anon_sym_LT_LT] = ACTIONS(1529), + [anon_sym_LT_LT_DASH] = ACTIONS(1531), + [anon_sym_LT_LT_LT] = ACTIONS(1531), + [sym__special_characters] = ACTIONS(1529), + [anon_sym_DQUOTE] = ACTIONS(1531), + [anon_sym_DOLLAR] = ACTIONS(1529), + [sym_raw_string] = ACTIONS(1531), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1531), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1531), + [anon_sym_BQUOTE] = ACTIONS(1531), + [anon_sym_LT_LPAREN] = ACTIONS(1531), + [anon_sym_GT_LPAREN] = ACTIONS(1531), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1533), + }, + [1182] = { + [aux_sym_concatenation_repeat1] = STATE(1856), + [sym_file_descriptor] = ACTIONS(740), + [sym__concat] = ACTIONS(3912), + [anon_sym_PIPE] = ACTIONS(744), + [anon_sym_PIPE_AMP] = ACTIONS(740), + [anon_sym_AMP_AMP] = ACTIONS(740), + [anon_sym_PIPE_PIPE] = ACTIONS(740), + [anon_sym_LT] = ACTIONS(744), + [anon_sym_GT] = ACTIONS(744), + [anon_sym_GT_GT] = ACTIONS(740), + [anon_sym_AMP_GT] = ACTIONS(744), + [anon_sym_AMP_GT_GT] = ACTIONS(740), + [anon_sym_LT_AMP] = ACTIONS(740), + [anon_sym_GT_AMP] = ACTIONS(740), + [anon_sym_LT_LT] = ACTIONS(744), + [anon_sym_LT_LT_DASH] = ACTIONS(740), + [anon_sym_LT_LT_LT] = ACTIONS(740), + [anon_sym_BQUOTE] = ACTIONS(740), + [sym_comment] = ACTIONS(56), + }, + [1183] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(1858), + [anon_sym_DQUOTE] = ACTIONS(3914), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [1184] = { + [sym_string] = STATE(1861), + [anon_sym_DQUOTE] = ACTIONS(2336), + [anon_sym_DOLLAR] = ACTIONS(3916), + [anon_sym_POUND] = ACTIONS(3916), + [anon_sym_DASH] = ACTIONS(3916), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3918), + [anon_sym_STAR] = ACTIONS(3916), + [anon_sym_AT] = ACTIONS(3916), + [anon_sym_QMARK] = ACTIONS(3916), + [anon_sym_0] = ACTIONS(3920), + [anon_sym__] = ACTIONS(3920), + }, + [1185] = { + [aux_sym_concatenation_repeat1] = STATE(1856), + [sym_file_descriptor] = ACTIONS(754), + [sym__concat] = ACTIONS(3912), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PIPE_AMP] = ACTIONS(754), + [anon_sym_AMP_AMP] = ACTIONS(754), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_LT] = ACTIONS(756), + [anon_sym_GT] = ACTIONS(756), + [anon_sym_GT_GT] = ACTIONS(754), + [anon_sym_AMP_GT] = ACTIONS(756), + [anon_sym_AMP_GT_GT] = ACTIONS(754), + [anon_sym_LT_AMP] = ACTIONS(754), + [anon_sym_GT_AMP] = ACTIONS(754), + [anon_sym_LT_LT] = ACTIONS(756), + [anon_sym_LT_LT_DASH] = ACTIONS(754), + [anon_sym_LT_LT_LT] = ACTIONS(754), + [anon_sym_BQUOTE] = ACTIONS(754), + [sym_comment] = ACTIONS(56), + }, + [1186] = { + [sym_subscript] = STATE(1866), + [sym_variable_name] = ACTIONS(3922), + [anon_sym_DOLLAR] = ACTIONS(3924), + [anon_sym_POUND] = ACTIONS(3926), + [anon_sym_DASH] = ACTIONS(3924), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3928), + [anon_sym_STAR] = ACTIONS(3924), + [anon_sym_AT] = ACTIONS(3924), + [anon_sym_QMARK] = ACTIONS(3924), + [anon_sym_0] = ACTIONS(3930), + [anon_sym__] = ACTIONS(3930), + }, + [1187] = { + [sym_for_statement] = STATE(1867), + [sym_while_statement] = STATE(1867), + [sym_if_statement] = STATE(1867), + [sym_case_statement] = STATE(1867), + [sym_function_definition] = STATE(1867), + [sym_subshell] = STATE(1867), + [sym_pipeline] = STATE(1867), + [sym_list] = STATE(1867), + [sym_command] = STATE(1867), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1867), + [sym_variable_assignment] = STATE(1868), + [sym_declaration_command] = STATE(1867), + [sym_unset_command] = STATE(1867), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [1188] = { + [sym_for_statement] = STATE(1869), + [sym_while_statement] = STATE(1869), + [sym_if_statement] = STATE(1869), + [sym_case_statement] = STATE(1869), + [sym_function_definition] = STATE(1869), + [sym_subshell] = STATE(1869), + [sym_pipeline] = STATE(1869), + [sym_list] = STATE(1869), + [sym_command] = STATE(1869), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(1869), + [sym_variable_assignment] = STATE(1870), + [sym_declaration_command] = STATE(1869), + [sym_unset_command] = STATE(1869), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), + }, + [1189] = { + [sym_for_statement] = STATE(1871), + [sym_while_statement] = STATE(1871), + [sym_if_statement] = STATE(1871), + [sym_case_statement] = STATE(1871), + [sym_function_definition] = STATE(1871), + [sym_subshell] = STATE(1871), + [sym_pipeline] = STATE(1871), + [sym_list] = STATE(1871), + [sym_command] = STATE(1871), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1871), + [sym_variable_assignment] = STATE(1872), + [sym_declaration_command] = STATE(1871), + [sym_unset_command] = STATE(1871), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [1190] = { + [aux_sym_concatenation_repeat1] = STATE(1856), + [sym_file_descriptor] = ACTIONS(2412), + [sym__concat] = ACTIONS(3912), + [anon_sym_PIPE] = ACTIONS(3654), + [anon_sym_PIPE_AMP] = ACTIONS(2412), + [anon_sym_AMP_AMP] = ACTIONS(2412), + [anon_sym_PIPE_PIPE] = ACTIONS(2412), + [anon_sym_LT] = ACTIONS(3654), + [anon_sym_GT] = ACTIONS(3654), + [anon_sym_GT_GT] = ACTIONS(2412), + [anon_sym_AMP_GT] = ACTIONS(3654), + [anon_sym_AMP_GT_GT] = ACTIONS(2412), + [anon_sym_LT_AMP] = ACTIONS(2412), + [anon_sym_GT_AMP] = ACTIONS(2412), + [anon_sym_LT_LT] = ACTIONS(3654), + [anon_sym_LT_LT_DASH] = ACTIONS(2412), + [anon_sym_LT_LT_LT] = ACTIONS(2412), + [anon_sym_BQUOTE] = ACTIONS(2412), + [sym_comment] = ACTIONS(56), + }, + [1191] = { + [aux_sym_concatenation_repeat1] = STATE(1856), + [sym_file_descriptor] = ACTIONS(2416), + [sym__concat] = ACTIONS(3912), + [anon_sym_PIPE] = ACTIONS(3656), + [anon_sym_PIPE_AMP] = ACTIONS(2416), + [anon_sym_AMP_AMP] = ACTIONS(2416), + [anon_sym_PIPE_PIPE] = ACTIONS(2416), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_GT] = ACTIONS(3656), + [anon_sym_GT_GT] = ACTIONS(2416), + [anon_sym_AMP_GT] = ACTIONS(3656), + [anon_sym_AMP_GT_GT] = ACTIONS(2416), + [anon_sym_LT_AMP] = ACTIONS(2416), + [anon_sym_GT_AMP] = ACTIONS(2416), + [anon_sym_LT_LT] = ACTIONS(3656), + [anon_sym_LT_LT_DASH] = ACTIONS(2416), + [anon_sym_LT_LT_LT] = ACTIONS(2416), + [anon_sym_BQUOTE] = ACTIONS(2416), + [sym_comment] = ACTIONS(56), + }, + [1192] = { + [sym_file_redirect] = STATE(539), + [sym_heredoc_redirect] = STATE(539), + [sym_herestring_redirect] = STATE(539), + [aux_sym_while_statement_repeat1] = STATE(1192), + [sym_file_descriptor] = ACTIONS(3932), + [anon_sym_PIPE] = ACTIONS(3661), + [anon_sym_PIPE_AMP] = ACTIONS(3663), + [anon_sym_AMP_AMP] = ACTIONS(3663), + [anon_sym_PIPE_PIPE] = ACTIONS(3663), + [anon_sym_LT] = ACTIONS(3935), + [anon_sym_GT] = ACTIONS(3935), + [anon_sym_GT_GT] = ACTIONS(3938), + [anon_sym_AMP_GT] = ACTIONS(3935), + [anon_sym_AMP_GT_GT] = ACTIONS(3938), + [anon_sym_LT_AMP] = ACTIONS(3938), + [anon_sym_GT_AMP] = ACTIONS(3938), + [anon_sym_LT_LT] = ACTIONS(3671), + [anon_sym_LT_LT_DASH] = ACTIONS(3674), + [anon_sym_LT_LT_LT] = ACTIONS(3941), + [anon_sym_BQUOTE] = ACTIONS(3663), + [sym_comment] = ACTIONS(56), + }, + [1193] = { + [sym_file_redirect] = STATE(539), + [sym_heredoc_redirect] = STATE(539), + [sym_herestring_redirect] = STATE(539), + [aux_sym_while_statement_repeat1] = STATE(1192), + [sym_file_descriptor] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(3680), + [anon_sym_PIPE_AMP] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3682), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1060), + [anon_sym_GT_GT] = ACTIONS(1062), + [anon_sym_AMP_GT] = ACTIONS(1060), + [anon_sym_AMP_GT_GT] = ACTIONS(1062), + [anon_sym_LT_AMP] = ACTIONS(1062), + [anon_sym_GT_AMP] = ACTIONS(1062), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_LT_LT_DASH] = ACTIONS(976), + [anon_sym_LT_LT_LT] = ACTIONS(1064), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_comment] = ACTIONS(56), + }, + [1194] = { + [sym_concatenation] = STATE(540), + [sym_string] = STATE(595), + [sym_simple_expansion] = STATE(595), + [sym_string_expansion] = STATE(595), + [sym_expansion] = STATE(595), + [sym_command_substitution] = STATE(595), + [sym_process_substitution] = STATE(595), + [aux_sym_command_repeat2] = STATE(1194), + [sym_file_descriptor] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1529), + [anon_sym_PIPE_AMP] = ACTIONS(1531), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE_PIPE] = ACTIONS(1531), + [anon_sym_EQ_TILDE] = ACTIONS(3944), + [anon_sym_LT] = ACTIONS(1529), + [anon_sym_GT] = ACTIONS(1529), + [anon_sym_GT_GT] = ACTIONS(1531), + [anon_sym_AMP_GT] = ACTIONS(1529), + [anon_sym_AMP_GT_GT] = ACTIONS(1531), + [anon_sym_LT_AMP] = ACTIONS(1531), + [anon_sym_GT_AMP] = ACTIONS(1531), + [anon_sym_LT_LT] = ACTIONS(1529), + [anon_sym_LT_LT_DASH] = ACTIONS(1531), + [anon_sym_LT_LT_LT] = ACTIONS(1531), + [sym__special_characters] = ACTIONS(3947), + [anon_sym_DQUOTE] = ACTIONS(3950), + [anon_sym_DOLLAR] = ACTIONS(3953), + [sym_raw_string] = ACTIONS(3956), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3962), + [anon_sym_BQUOTE] = ACTIONS(3965), + [anon_sym_LT_LPAREN] = ACTIONS(3968), + [anon_sym_GT_LPAREN] = ACTIONS(3968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3971), + }, + [1195] = { + [sym_file_redirect] = STATE(539), + [sym_heredoc_redirect] = STATE(539), + [sym_herestring_redirect] = STATE(539), + [sym_concatenation] = STATE(540), + [sym_string] = STATE(595), + [sym_simple_expansion] = STATE(595), + [sym_string_expansion] = STATE(595), + [sym_expansion] = STATE(595), + [sym_command_substitution] = STATE(595), + [sym_process_substitution] = STATE(595), + [aux_sym_while_statement_repeat1] = STATE(1873), + [aux_sym_command_repeat2] = STATE(1194), + [sym_file_descriptor] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(3680), + [anon_sym_PIPE_AMP] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3682), + [anon_sym_EQ_TILDE] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1060), + [anon_sym_GT_GT] = ACTIONS(1062), + [anon_sym_AMP_GT] = ACTIONS(1060), + [anon_sym_AMP_GT_GT] = ACTIONS(1062), + [anon_sym_LT_AMP] = ACTIONS(1062), + [anon_sym_GT_AMP] = ACTIONS(1062), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_LT_LT_DASH] = ACTIONS(976), + [anon_sym_LT_LT_LT] = ACTIONS(1064), + [sym__special_characters] = ACTIONS(1066), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(1068), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(3682), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1070), + }, + [1196] = { + [sym_file_redirect] = STATE(1874), + [sym_file_descriptor] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(2740), + [anon_sym_SEMI_SEMI] = ACTIONS(2740), + [anon_sym_PIPE_AMP] = ACTIONS(2740), + [anon_sym_AMP_AMP] = ACTIONS(2740), + [anon_sym_PIPE_PIPE] = ACTIONS(2740), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_GT_GT] = ACTIONS(1379), + [anon_sym_AMP_GT] = ACTIONS(1379), + [anon_sym_AMP_GT_GT] = ACTIONS(1379), + [anon_sym_LT_AMP] = ACTIONS(1379), + [anon_sym_GT_AMP] = ACTIONS(1379), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2740), + [anon_sym_LF] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(2740), + }, + [1197] = { + [aux_sym_concatenation_repeat1] = STATE(1201), + [sym_file_descriptor] = ACTIONS(1219), + [sym__concat] = ACTIONS(2372), + [anon_sym_PIPE] = ACTIONS(3974), + [anon_sym_SEMI_SEMI] = ACTIONS(3974), + [anon_sym_PIPE_AMP] = ACTIONS(3974), + [anon_sym_AMP_AMP] = ACTIONS(3974), + [anon_sym_PIPE_PIPE] = ACTIONS(3974), + [anon_sym_LT] = ACTIONS(3974), + [anon_sym_GT] = ACTIONS(3974), + [anon_sym_GT_GT] = ACTIONS(3974), + [anon_sym_AMP_GT] = ACTIONS(3974), + [anon_sym_AMP_GT_GT] = ACTIONS(3974), + [anon_sym_LT_AMP] = ACTIONS(3974), + [anon_sym_GT_AMP] = ACTIONS(3974), + [anon_sym_LT_LT] = ACTIONS(3974), + [anon_sym_LT_LT_DASH] = ACTIONS(3974), + [anon_sym_LT_LT_LT] = ACTIONS(3974), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3974), + [anon_sym_LF] = ACTIONS(3974), + [anon_sym_AMP] = ACTIONS(3974), + }, + [1198] = { + [aux_sym_concatenation_repeat1] = STATE(1201), + [sym_file_descriptor] = ACTIONS(1223), + [sym__concat] = ACTIONS(2372), + [anon_sym_PIPE] = ACTIONS(3976), + [anon_sym_SEMI_SEMI] = ACTIONS(3976), + [anon_sym_PIPE_AMP] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3976), + [anon_sym_PIPE_PIPE] = ACTIONS(3976), + [anon_sym_LT] = ACTIONS(3976), + [anon_sym_GT] = ACTIONS(3976), + [anon_sym_GT_GT] = ACTIONS(3976), + [anon_sym_AMP_GT] = ACTIONS(3976), + [anon_sym_AMP_GT_GT] = ACTIONS(3976), + [anon_sym_LT_AMP] = ACTIONS(3976), + [anon_sym_GT_AMP] = ACTIONS(3976), + [anon_sym_LT_LT] = ACTIONS(3976), + [anon_sym_LT_LT_DASH] = ACTIONS(3976), + [anon_sym_LT_LT_LT] = ACTIONS(3976), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3976), + [anon_sym_LF] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3976), + }, + [1199] = { + [sym_file_descriptor] = ACTIONS(1223), + [anon_sym_PIPE] = ACTIONS(3976), + [anon_sym_RPAREN] = ACTIONS(3976), + [anon_sym_SEMI_SEMI] = ACTIONS(3976), + [anon_sym_PIPE_AMP] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3976), + [anon_sym_PIPE_PIPE] = ACTIONS(3976), + [anon_sym_LT] = ACTIONS(3976), + [anon_sym_GT] = ACTIONS(3976), + [anon_sym_GT_GT] = ACTIONS(3976), + [anon_sym_AMP_GT] = ACTIONS(3976), + [anon_sym_AMP_GT_GT] = ACTIONS(3976), + [anon_sym_LT_AMP] = ACTIONS(3976), + [anon_sym_GT_AMP] = ACTIONS(3976), + [anon_sym_LT_LT] = ACTIONS(3976), + [anon_sym_LT_LT_DASH] = ACTIONS(3976), + [anon_sym_LT_LT_LT] = ACTIONS(3976), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3976), + [anon_sym_LF] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3976), + }, + [1200] = { + [sym_string] = STATE(1875), + [sym_simple_expansion] = STATE(1875), + [sym_string_expansion] = STATE(1875), + [sym_expansion] = STATE(1875), + [sym_command_substitution] = STATE(1875), + [sym_process_substitution] = STATE(1875), + [sym__special_characters] = ACTIONS(3978), + [anon_sym_DQUOTE] = ACTIONS(1098), + [anon_sym_DOLLAR] = ACTIONS(1100), + [sym_raw_string] = ACTIONS(3980), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1104), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1106), + [anon_sym_BQUOTE] = ACTIONS(1108), + [anon_sym_LT_LPAREN] = ACTIONS(1110), + [anon_sym_GT_LPAREN] = ACTIONS(1110), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3978), + }, + [1201] = { + [aux_sym_concatenation_repeat1] = STATE(1876), + [sym_file_descriptor] = ACTIONS(772), + [sym__concat] = ACTIONS(2372), + [anon_sym_PIPE] = ACTIONS(774), + [anon_sym_SEMI_SEMI] = ACTIONS(774), + [anon_sym_PIPE_AMP] = ACTIONS(774), + [anon_sym_AMP_AMP] = ACTIONS(774), + [anon_sym_PIPE_PIPE] = ACTIONS(774), + [anon_sym_LT] = ACTIONS(774), + [anon_sym_GT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(774), + [anon_sym_AMP_GT] = ACTIONS(774), + [anon_sym_AMP_GT_GT] = ACTIONS(774), + [anon_sym_LT_AMP] = ACTIONS(774), + [anon_sym_GT_AMP] = ACTIONS(774), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_LT_LT_DASH] = ACTIONS(774), + [anon_sym_LT_LT_LT] = ACTIONS(774), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(774), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_AMP] = ACTIONS(774), + }, + [1202] = { + [sym_file_descriptor] = ACTIONS(776), + [sym__concat] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(778), + [anon_sym_SEMI_SEMI] = ACTIONS(778), + [anon_sym_PIPE_AMP] = ACTIONS(778), + [anon_sym_AMP_AMP] = ACTIONS(778), + [anon_sym_PIPE_PIPE] = ACTIONS(778), + [anon_sym_LT] = ACTIONS(778), + [anon_sym_GT] = ACTIONS(778), + [anon_sym_GT_GT] = ACTIONS(778), + [anon_sym_AMP_GT] = ACTIONS(778), + [anon_sym_AMP_GT_GT] = ACTIONS(778), + [anon_sym_LT_AMP] = ACTIONS(778), + [anon_sym_GT_AMP] = ACTIONS(778), + [anon_sym_LT_LT] = ACTIONS(778), + [anon_sym_LT_LT_DASH] = ACTIONS(778), + [anon_sym_LT_LT_LT] = ACTIONS(778), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(778), + [anon_sym_LF] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(778), + }, + [1203] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(3982), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [1204] = { + [sym_file_descriptor] = ACTIONS(808), + [sym__concat] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(810), + [anon_sym_SEMI_SEMI] = ACTIONS(810), + [anon_sym_PIPE_AMP] = ACTIONS(810), + [anon_sym_AMP_AMP] = ACTIONS(810), + [anon_sym_PIPE_PIPE] = ACTIONS(810), + [anon_sym_LT] = ACTIONS(810), + [anon_sym_GT] = ACTIONS(810), + [anon_sym_GT_GT] = ACTIONS(810), + [anon_sym_AMP_GT] = ACTIONS(810), + [anon_sym_AMP_GT_GT] = ACTIONS(810), + [anon_sym_LT_AMP] = ACTIONS(810), + [anon_sym_GT_AMP] = ACTIONS(810), + [anon_sym_LT_LT] = ACTIONS(810), + [anon_sym_LT_LT_DASH] = ACTIONS(810), + [anon_sym_LT_LT_LT] = ACTIONS(810), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(810), + [anon_sym_LF] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(810), + }, + [1205] = { + [sym_file_descriptor] = ACTIONS(812), + [sym__concat] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(814), + [anon_sym_SEMI_SEMI] = ACTIONS(814), + [anon_sym_PIPE_AMP] = ACTIONS(814), + [anon_sym_AMP_AMP] = ACTIONS(814), + [anon_sym_PIPE_PIPE] = ACTIONS(814), + [anon_sym_LT] = ACTIONS(814), + [anon_sym_GT] = ACTIONS(814), + [anon_sym_GT_GT] = ACTIONS(814), + [anon_sym_AMP_GT] = ACTIONS(814), + [anon_sym_AMP_GT_GT] = ACTIONS(814), + [anon_sym_LT_AMP] = ACTIONS(814), + [anon_sym_GT_AMP] = ACTIONS(814), + [anon_sym_LT_LT] = ACTIONS(814), + [anon_sym_LT_LT_DASH] = ACTIONS(814), + [anon_sym_LT_LT_LT] = ACTIONS(814), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(814), + [anon_sym_LF] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(814), + }, + [1206] = { + [sym_file_descriptor] = ACTIONS(816), + [sym__concat] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_SEMI_SEMI] = ACTIONS(818), + [anon_sym_PIPE_AMP] = ACTIONS(818), + [anon_sym_AMP_AMP] = ACTIONS(818), + [anon_sym_PIPE_PIPE] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(818), + [anon_sym_GT] = ACTIONS(818), + [anon_sym_GT_GT] = ACTIONS(818), + [anon_sym_AMP_GT] = ACTIONS(818), + [anon_sym_AMP_GT_GT] = ACTIONS(818), + [anon_sym_LT_AMP] = ACTIONS(818), + [anon_sym_GT_AMP] = ACTIONS(818), + [anon_sym_LT_LT] = ACTIONS(818), + [anon_sym_LT_LT_DASH] = ACTIONS(818), + [anon_sym_LT_LT_LT] = ACTIONS(818), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_LF] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(818), + }, + [1207] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(3984), + [sym_comment] = ACTIONS(56), + }, + [1208] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1881), + [anon_sym_RBRACE] = ACTIONS(3986), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(3988), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1209] = { + [sym_subscript] = STATE(1885), + [sym_variable_name] = ACTIONS(3990), + [anon_sym_DOLLAR] = ACTIONS(3992), + [anon_sym_DASH] = ACTIONS(3992), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3994), + [anon_sym_STAR] = ACTIONS(3992), + [anon_sym_AT] = ACTIONS(3992), + [anon_sym_QMARK] = ACTIONS(3992), + [anon_sym_0] = ACTIONS(3996), + [anon_sym__] = ACTIONS(3996), + }, + [1210] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1888), + [anon_sym_RBRACE] = ACTIONS(3998), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4000), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1211] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1891), + [anon_sym_RBRACE] = ACTIONS(4002), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4004), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1212] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4006), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [1213] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4006), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1214] = { + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(4006), + [sym_comment] = ACTIONS(56), + }, + [1215] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(4006), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1216] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4008), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [1217] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4008), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1218] = { + [sym__heredoc_middle] = ACTIONS(4010), + [sym__heredoc_end] = ACTIONS(4010), + [anon_sym_DOLLAR] = ACTIONS(4012), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4010), + [sym_comment] = ACTIONS(56), + }, + [1219] = { + [sym_file_descriptor] = ACTIONS(4014), + [anon_sym_PIPE] = ACTIONS(4016), + [anon_sym_RPAREN] = ACTIONS(4016), + [anon_sym_SEMI_SEMI] = ACTIONS(4016), + [anon_sym_PIPE_AMP] = ACTIONS(4016), + [anon_sym_AMP_AMP] = ACTIONS(4016), + [anon_sym_PIPE_PIPE] = ACTIONS(4016), + [anon_sym_LT] = ACTIONS(4016), + [anon_sym_GT] = ACTIONS(4016), + [anon_sym_GT_GT] = ACTIONS(4016), + [anon_sym_AMP_GT] = ACTIONS(4016), + [anon_sym_AMP_GT_GT] = ACTIONS(4016), + [anon_sym_LT_AMP] = ACTIONS(4016), + [anon_sym_GT_AMP] = ACTIONS(4016), + [anon_sym_LT_LT] = ACTIONS(4016), + [anon_sym_LT_LT_DASH] = ACTIONS(4016), + [anon_sym_LT_LT_LT] = ACTIONS(4016), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4016), + [anon_sym_LF] = ACTIONS(4016), + [anon_sym_AMP] = ACTIONS(4016), + }, + [1220] = { + [anon_sym_DOLLAR] = ACTIONS(4018), + [anon_sym_POUND] = ACTIONS(4018), + [anon_sym_DASH] = ACTIONS(4018), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4020), + [anon_sym_STAR] = ACTIONS(4018), + [anon_sym_AT] = ACTIONS(4018), + [anon_sym_QMARK] = ACTIONS(4018), + [anon_sym_0] = ACTIONS(4022), + [anon_sym__] = ACTIONS(4022), + }, + [1221] = { + [sym_subscript] = STATE(1900), + [sym_variable_name] = ACTIONS(4024), + [anon_sym_DOLLAR] = ACTIONS(4026), + [anon_sym_POUND] = ACTIONS(4028), + [anon_sym_DASH] = ACTIONS(4026), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4026), + [anon_sym_AT] = ACTIONS(4026), + [anon_sym_QMARK] = ACTIONS(4026), + [anon_sym_0] = ACTIONS(4032), + [anon_sym__] = ACTIONS(4032), + }, + [1222] = { + [sym_simple_expansion] = STATE(1218), + [sym_expansion] = STATE(1218), + [aux_sym_heredoc_repeat1] = STATE(1902), + [sym__heredoc_middle] = ACTIONS(2400), + [sym__heredoc_end] = ACTIONS(4034), + [anon_sym_DOLLAR] = ACTIONS(2404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2406), + [sym_comment] = ACTIONS(56), + }, + [1223] = { + [aux_sym_concatenation_repeat1] = STATE(414), + [sym_file_descriptor] = ACTIONS(1279), + [sym__concat] = ACTIONS(742), + [sym_variable_name] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(3374), + [anon_sym_GT] = ACTIONS(3374), + [anon_sym_GT_GT] = ACTIONS(1279), + [anon_sym_AMP_GT] = ACTIONS(3374), + [anon_sym_AMP_GT_GT] = ACTIONS(1279), + [anon_sym_LT_AMP] = ACTIONS(1279), + [anon_sym_GT_AMP] = ACTIONS(1279), + [sym__special_characters] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(3374), + [sym_raw_string] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_LT_LPAREN] = ACTIONS(1279), + [anon_sym_GT_LPAREN] = ACTIONS(1279), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3374), + }, + [1224] = { + [aux_sym_concatenation_repeat1] = STATE(414), + [sym_file_descriptor] = ACTIONS(1255), + [sym__concat] = ACTIONS(742), + [sym_variable_name] = ACTIONS(1255), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3368), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_AMP_GT] = ACTIONS(3368), + [anon_sym_AMP_GT_GT] = ACTIONS(1255), + [anon_sym_LT_AMP] = ACTIONS(1255), + [anon_sym_GT_AMP] = ACTIONS(1255), + [sym__special_characters] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(1255), + [anon_sym_DOLLAR] = ACTIONS(3368), + [sym_raw_string] = ACTIONS(1255), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1255), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1255), + [anon_sym_BQUOTE] = ACTIONS(1255), + [anon_sym_LT_LPAREN] = ACTIONS(1255), + [anon_sym_GT_LPAREN] = ACTIONS(1255), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3368), + }, + [1225] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(624), + [sym_file_descriptor] = ACTIONS(350), + [anon_sym_PIPE] = ACTIONS(4036), + [anon_sym_SEMI_SEMI] = ACTIONS(4036), + [anon_sym_PIPE_AMP] = ACTIONS(4036), + [anon_sym_AMP_AMP] = ACTIONS(4036), + [anon_sym_PIPE_PIPE] = ACTIONS(4036), + [anon_sym_LT] = ACTIONS(356), + [anon_sym_GT] = ACTIONS(356), + [anon_sym_GT_GT] = ACTIONS(356), + [anon_sym_AMP_GT] = ACTIONS(356), + [anon_sym_AMP_GT_GT] = ACTIONS(356), + [anon_sym_LT_AMP] = ACTIONS(356), + [anon_sym_GT_AMP] = ACTIONS(356), + [anon_sym_LT_LT] = ACTIONS(358), + [anon_sym_LT_LT_DASH] = ACTIONS(358), + [anon_sym_LT_LT_LT] = ACTIONS(360), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4036), + [anon_sym_LF] = ACTIONS(4036), + [anon_sym_AMP] = ACTIONS(4036), + }, + [1226] = { + [sym__concat] = ACTIONS(4038), + [anon_sym_EQ] = ACTIONS(4040), + [anon_sym_PLUS_EQ] = ACTIONS(4040), + [sym_comment] = ACTIONS(56), + }, + [1227] = { + [sym__concat] = ACTIONS(1858), + [anon_sym_RBRACK] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + }, + [1228] = { + [anon_sym_EQ] = ACTIONS(4040), + [anon_sym_PLUS_EQ] = ACTIONS(4040), + [sym_comment] = ACTIONS(56), + }, + [1229] = { + [sym_string] = STATE(1227), + [sym_simple_expansion] = STATE(1227), + [sym_string_expansion] = STATE(1227), + [sym_expansion] = STATE(1227), + [sym_command_substitution] = STATE(1227), + [sym_process_substitution] = STATE(1227), + [sym__special_characters] = ACTIONS(2475), + [anon_sym_DQUOTE] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(402), + [sym_raw_string] = ACTIONS(2473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(406), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(408), + [anon_sym_BQUOTE] = ACTIONS(410), + [anon_sym_LT_LPAREN] = ACTIONS(412), + [anon_sym_GT_LPAREN] = ACTIONS(412), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2475), + }, + [1230] = { + [aux_sym_concatenation_repeat1] = STATE(1230), + [sym__concat] = ACTIONS(4042), + [anon_sym_RBRACK] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + }, + [1231] = { + [sym__concat] = ACTIONS(1895), + [anon_sym_RBRACK] = ACTIONS(1895), + [sym_comment] = ACTIONS(56), + }, + [1232] = { + [sym__concat] = ACTIONS(4045), + [anon_sym_EQ] = ACTIONS(4047), + [anon_sym_PLUS_EQ] = ACTIONS(4047), + [sym_comment] = ACTIONS(56), + }, + [1233] = { + [anon_sym_EQ] = ACTIONS(4047), + [anon_sym_PLUS_EQ] = ACTIONS(4047), + [sym_comment] = ACTIONS(56), + }, + [1234] = { + [sym_concatenation] = STATE(1908), + [sym_string] = STATE(1907), + [sym_simple_expansion] = STATE(1907), + [sym_string_expansion] = STATE(1907), + [sym_expansion] = STATE(1907), + [sym_command_substitution] = STATE(1907), + [sym_process_substitution] = STATE(1907), + [anon_sym_RBRACE] = ACTIONS(4049), + [sym__special_characters] = ACTIONS(4051), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(4053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4055), + }, + [1235] = { + [sym__concat] = ACTIONS(1940), + [anon_sym_RBRACK] = ACTIONS(1940), + [sym_comment] = ACTIONS(56), + }, + [1236] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4057), + }, + [1237] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4059), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1238] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(4061), + [sym_comment] = ACTIONS(56), + }, + [1239] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1914), + [anon_sym_RBRACE] = ACTIONS(4063), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4065), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1240] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1917), + [anon_sym_RBRACE] = ACTIONS(4067), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4069), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1241] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1919), + [anon_sym_RBRACE] = ACTIONS(4049), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4071), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1242] = { + [sym__concat] = ACTIONS(1992), + [anon_sym_RBRACK] = ACTIONS(1992), + [sym_comment] = ACTIONS(56), + }, + [1243] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4073), + }, + [1244] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4075), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1245] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_RBRACK] = ACTIONS(2000), + [sym_comment] = ACTIONS(56), + }, + [1246] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4077), + }, + [1247] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4049), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1248] = { + [sym__concat] = ACTIONS(2156), + [anon_sym_RBRACK] = ACTIONS(2156), + [sym_comment] = ACTIONS(56), + }, + [1249] = { + [sym__concat] = ACTIONS(2358), + [anon_sym_RBRACK] = ACTIONS(2358), + [sym_comment] = ACTIONS(56), + }, + [1250] = { + [sym_string] = STATE(1923), + [sym_simple_expansion] = STATE(1923), + [sym_string_expansion] = STATE(1923), + [sym_expansion] = STATE(1923), + [sym_command_substitution] = STATE(1923), + [sym_process_substitution] = STATE(1923), + [sym__special_characters] = ACTIONS(4079), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_DOLLAR] = ACTIONS(1265), + [sym_raw_string] = ACTIONS(4081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1269), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1273), + [anon_sym_LT_LPAREN] = ACTIONS(1275), + [anon_sym_GT_LPAREN] = ACTIONS(1275), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4079), + }, + [1251] = { + [aux_sym_concatenation_repeat1] = STATE(1924), + [sym__concat] = ACTIONS(2521), + [anon_sym_RPAREN] = ACTIONS(772), + [sym__special_characters] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(1539), + [sym_raw_string] = ACTIONS(772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(772), + [anon_sym_BQUOTE] = ACTIONS(772), + [anon_sym_LT_LPAREN] = ACTIONS(772), + [anon_sym_GT_LPAREN] = ACTIONS(772), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1539), + }, + [1252] = { + [sym__concat] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(776), + [sym__special_characters] = ACTIONS(1541), + [anon_sym_DQUOTE] = ACTIONS(776), + [anon_sym_DOLLAR] = ACTIONS(1541), + [sym_raw_string] = ACTIONS(776), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(776), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(776), + [anon_sym_BQUOTE] = ACTIONS(776), + [anon_sym_LT_LPAREN] = ACTIONS(776), + [anon_sym_GT_LPAREN] = ACTIONS(776), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1541), + }, + [1253] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(4083), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [1254] = { + [sym__concat] = ACTIONS(808), + [anon_sym_RPAREN] = ACTIONS(808), + [sym__special_characters] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(808), + [anon_sym_DOLLAR] = ACTIONS(1545), + [sym_raw_string] = ACTIONS(808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(808), + [anon_sym_BQUOTE] = ACTIONS(808), + [anon_sym_LT_LPAREN] = ACTIONS(808), + [anon_sym_GT_LPAREN] = ACTIONS(808), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1545), + }, + [1255] = { + [sym__concat] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(812), + [sym__special_characters] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR] = ACTIONS(1547), + [sym_raw_string] = ACTIONS(812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(812), + [anon_sym_BQUOTE] = ACTIONS(812), + [anon_sym_LT_LPAREN] = ACTIONS(812), + [anon_sym_GT_LPAREN] = ACTIONS(812), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1547), + }, + [1256] = { + [sym__concat] = ACTIONS(816), + [anon_sym_RPAREN] = ACTIONS(816), + [sym__special_characters] = ACTIONS(1549), + [anon_sym_DQUOTE] = ACTIONS(816), + [anon_sym_DOLLAR] = ACTIONS(1549), + [sym_raw_string] = ACTIONS(816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(816), + [anon_sym_BQUOTE] = ACTIONS(816), + [anon_sym_LT_LPAREN] = ACTIONS(816), + [anon_sym_GT_LPAREN] = ACTIONS(816), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1549), + }, + [1257] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(4085), + [sym_comment] = ACTIONS(56), + }, + [1258] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1929), + [anon_sym_RBRACE] = ACTIONS(4087), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4089), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1259] = { + [sym_subscript] = STATE(1933), + [sym_variable_name] = ACTIONS(4091), + [anon_sym_DOLLAR] = ACTIONS(4093), + [anon_sym_DASH] = ACTIONS(4093), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4095), + [anon_sym_STAR] = ACTIONS(4093), + [anon_sym_AT] = ACTIONS(4093), + [anon_sym_QMARK] = ACTIONS(4093), + [anon_sym_0] = ACTIONS(4097), + [anon_sym__] = ACTIONS(4097), + }, + [1260] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1936), + [anon_sym_RBRACE] = ACTIONS(4099), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4101), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1261] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1939), + [anon_sym_RBRACE] = ACTIONS(4103), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4105), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1262] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [1263] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4107), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1264] = { + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(4107), + [sym_comment] = ACTIONS(56), + }, + [1265] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(4107), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1266] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4109), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [1267] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4109), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1268] = { + [sym_file_descriptor] = ACTIONS(4111), + [sym_variable_name] = ACTIONS(4111), + [anon_sym_PIPE] = ACTIONS(4113), + [anon_sym_RPAREN] = ACTIONS(4113), + [anon_sym_SEMI_SEMI] = ACTIONS(4113), + [anon_sym_PIPE_AMP] = ACTIONS(4113), + [anon_sym_AMP_AMP] = ACTIONS(4113), + [anon_sym_PIPE_PIPE] = ACTIONS(4113), + [anon_sym_LT] = ACTIONS(4113), + [anon_sym_GT] = ACTIONS(4113), + [anon_sym_GT_GT] = ACTIONS(4113), + [anon_sym_AMP_GT] = ACTIONS(4113), + [anon_sym_AMP_GT_GT] = ACTIONS(4113), + [anon_sym_LT_AMP] = ACTIONS(4113), + [anon_sym_GT_AMP] = ACTIONS(4113), + [sym__special_characters] = ACTIONS(4113), + [anon_sym_DQUOTE] = ACTIONS(4113), + [anon_sym_DOLLAR] = ACTIONS(4113), + [sym_raw_string] = ACTIONS(4113), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4113), + [anon_sym_BQUOTE] = ACTIONS(4113), + [anon_sym_LT_LPAREN] = ACTIONS(4113), + [anon_sym_GT_LPAREN] = ACTIONS(4113), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4113), + [anon_sym_SEMI] = ACTIONS(4113), + [anon_sym_LF] = ACTIONS(4113), + [anon_sym_AMP] = ACTIONS(4113), + }, + [1269] = { + [sym_concatenation] = STATE(660), + [sym_string] = STATE(655), + [sym_simple_expansion] = STATE(655), + [sym_string_expansion] = STATE(655), + [sym_expansion] = STATE(655), + [sym_command_substitution] = STATE(655), + [sym_process_substitution] = STATE(655), + [aux_sym_for_statement_repeat1] = STATE(1269), + [anon_sym_RPAREN] = ACTIONS(4115), + [sym__special_characters] = ACTIONS(4117), + [anon_sym_DQUOTE] = ACTIONS(4120), + [anon_sym_DOLLAR] = ACTIONS(4123), + [sym_raw_string] = ACTIONS(4126), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4129), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4132), + [anon_sym_BQUOTE] = ACTIONS(4135), + [anon_sym_LT_LPAREN] = ACTIONS(4138), + [anon_sym_GT_LPAREN] = ACTIONS(4138), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4141), + }, + [1270] = { + [sym_file_descriptor] = ACTIONS(1858), + [sym__concat] = ACTIONS(1858), + [sym_variable_name] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [anon_sym_PIPE_AMP] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1860), + [anon_sym_PIPE_PIPE] = ACTIONS(1860), + [anon_sym_LT] = ACTIONS(1860), + [anon_sym_GT] = ACTIONS(1860), + [anon_sym_GT_GT] = ACTIONS(1860), + [anon_sym_AMP_GT] = ACTIONS(1860), + [anon_sym_AMP_GT_GT] = ACTIONS(1860), + [anon_sym_LT_AMP] = ACTIONS(1860), + [anon_sym_GT_AMP] = ACTIONS(1860), + [sym__special_characters] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1860), + [anon_sym_DOLLAR] = ACTIONS(1860), + [sym_raw_string] = ACTIONS(1860), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1860), + [anon_sym_BQUOTE] = ACTIONS(1860), + [anon_sym_LT_LPAREN] = ACTIONS(1860), + [anon_sym_GT_LPAREN] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + }, + [1271] = { + [aux_sym_concatenation_repeat1] = STATE(1271), + [sym_file_descriptor] = ACTIONS(1858), + [sym__concat] = ACTIONS(4144), + [sym_variable_name] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [anon_sym_PIPE_AMP] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1860), + [anon_sym_PIPE_PIPE] = ACTIONS(1860), + [anon_sym_LT] = ACTIONS(1860), + [anon_sym_GT] = ACTIONS(1860), + [anon_sym_GT_GT] = ACTIONS(1860), + [anon_sym_AMP_GT] = ACTIONS(1860), + [anon_sym_AMP_GT_GT] = ACTIONS(1860), + [anon_sym_LT_AMP] = ACTIONS(1860), + [anon_sym_GT_AMP] = ACTIONS(1860), + [sym__special_characters] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1860), + [anon_sym_DOLLAR] = ACTIONS(1860), + [sym_raw_string] = ACTIONS(1860), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1860), + [anon_sym_BQUOTE] = ACTIONS(1860), + [anon_sym_LT_LPAREN] = ACTIONS(1860), + [anon_sym_GT_LPAREN] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + }, + [1272] = { + [sym_file_descriptor] = ACTIONS(1895), + [sym__concat] = ACTIONS(1895), + [sym_variable_name] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_SEMI_SEMI] = ACTIONS(1897), + [anon_sym_PIPE_AMP] = ACTIONS(1897), + [anon_sym_AMP_AMP] = ACTIONS(1897), + [anon_sym_PIPE_PIPE] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1897), + [anon_sym_GT] = ACTIONS(1897), + [anon_sym_GT_GT] = ACTIONS(1897), + [anon_sym_AMP_GT] = ACTIONS(1897), + [anon_sym_AMP_GT_GT] = ACTIONS(1897), + [anon_sym_LT_AMP] = ACTIONS(1897), + [anon_sym_GT_AMP] = ACTIONS(1897), + [sym__special_characters] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [anon_sym_DOLLAR] = ACTIONS(1897), + [sym_raw_string] = ACTIONS(1897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1897), + [anon_sym_BQUOTE] = ACTIONS(1897), + [anon_sym_LT_LPAREN] = ACTIONS(1897), + [anon_sym_GT_LPAREN] = ACTIONS(1897), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_LF] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), + }, + [1273] = { + [sym_concatenation] = STATE(1945), + [sym_string] = STATE(1944), + [sym_simple_expansion] = STATE(1944), + [sym_string_expansion] = STATE(1944), + [sym_expansion] = STATE(1944), + [sym_command_substitution] = STATE(1944), + [sym_process_substitution] = STATE(1944), + [anon_sym_RBRACE] = ACTIONS(4147), + [sym__special_characters] = ACTIONS(4149), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(4151), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4153), + }, + [1274] = { + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(1940), + [sym_variable_name] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1942), + [anon_sym_PIPE_AMP] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1942), + [anon_sym_PIPE_PIPE] = ACTIONS(1942), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_GT_GT] = ACTIONS(1942), + [anon_sym_AMP_GT] = ACTIONS(1942), + [anon_sym_AMP_GT_GT] = ACTIONS(1942), + [anon_sym_LT_AMP] = ACTIONS(1942), + [anon_sym_GT_AMP] = ACTIONS(1942), + [sym__special_characters] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [anon_sym_DOLLAR] = ACTIONS(1942), + [sym_raw_string] = ACTIONS(1942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1942), + [anon_sym_BQUOTE] = ACTIONS(1942), + [anon_sym_LT_LPAREN] = ACTIONS(1942), + [anon_sym_GT_LPAREN] = ACTIONS(1942), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + }, + [1275] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4155), + }, + [1276] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4157), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1277] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(4159), + [sym_comment] = ACTIONS(56), + }, + [1278] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1951), + [anon_sym_RBRACE] = ACTIONS(4161), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4163), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1279] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1954), + [anon_sym_RBRACE] = ACTIONS(4165), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4167), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1280] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1956), + [anon_sym_RBRACE] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4169), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1281] = { + [sym_file_descriptor] = ACTIONS(1992), + [sym__concat] = ACTIONS(1992), + [sym_variable_name] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(1994), + [anon_sym_SEMI_SEMI] = ACTIONS(1994), + [anon_sym_PIPE_AMP] = ACTIONS(1994), + [anon_sym_AMP_AMP] = ACTIONS(1994), + [anon_sym_PIPE_PIPE] = ACTIONS(1994), + [anon_sym_LT] = ACTIONS(1994), + [anon_sym_GT] = ACTIONS(1994), + [anon_sym_GT_GT] = ACTIONS(1994), + [anon_sym_AMP_GT] = ACTIONS(1994), + [anon_sym_AMP_GT_GT] = ACTIONS(1994), + [anon_sym_LT_AMP] = ACTIONS(1994), + [anon_sym_GT_AMP] = ACTIONS(1994), + [sym__special_characters] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [anon_sym_DOLLAR] = ACTIONS(1994), + [sym_raw_string] = ACTIONS(1994), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1994), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1994), + [anon_sym_BQUOTE] = ACTIONS(1994), + [anon_sym_LT_LPAREN] = ACTIONS(1994), + [anon_sym_GT_LPAREN] = ACTIONS(1994), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_LF] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + }, + [1282] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4171), + }, + [1283] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1284] = { + [sym_file_descriptor] = ACTIONS(2000), + [sym__concat] = ACTIONS(2000), + [sym_variable_name] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [anon_sym_PIPE_AMP] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_PIPE_PIPE] = ACTIONS(2002), + [anon_sym_LT] = ACTIONS(2002), + [anon_sym_GT] = ACTIONS(2002), + [anon_sym_GT_GT] = ACTIONS(2002), + [anon_sym_AMP_GT] = ACTIONS(2002), + [anon_sym_AMP_GT_GT] = ACTIONS(2002), + [anon_sym_LT_AMP] = ACTIONS(2002), + [anon_sym_GT_AMP] = ACTIONS(2002), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2002), + [anon_sym_BQUOTE] = ACTIONS(2002), + [anon_sym_LT_LPAREN] = ACTIONS(2002), + [anon_sym_GT_LPAREN] = ACTIONS(2002), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2002), + }, + [1285] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4175), + }, + [1286] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4147), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1287] = { + [sym_file_descriptor] = ACTIONS(2156), + [sym__concat] = ACTIONS(2156), + [sym_variable_name] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_SEMI_SEMI] = ACTIONS(2158), + [anon_sym_PIPE_AMP] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_PIPE_PIPE] = ACTIONS(2158), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_GT] = ACTIONS(2158), + [anon_sym_GT_GT] = ACTIONS(2158), + [anon_sym_AMP_GT] = ACTIONS(2158), + [anon_sym_AMP_GT_GT] = ACTIONS(2158), + [anon_sym_LT_AMP] = ACTIONS(2158), + [anon_sym_GT_AMP] = ACTIONS(2158), + [sym__special_characters] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2158), + [anon_sym_DOLLAR] = ACTIONS(2158), + [sym_raw_string] = ACTIONS(2158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2158), + [anon_sym_BQUOTE] = ACTIONS(2158), + [anon_sym_LT_LPAREN] = ACTIONS(2158), + [anon_sym_GT_LPAREN] = ACTIONS(2158), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym_LF] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2158), + }, + [1288] = { + [sym_file_descriptor] = ACTIONS(2358), + [sym__concat] = ACTIONS(2358), + [sym_variable_name] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_SEMI_SEMI] = ACTIONS(2360), + [anon_sym_PIPE_AMP] = ACTIONS(2360), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_AMP_GT] = ACTIONS(2360), + [anon_sym_AMP_GT_GT] = ACTIONS(2360), + [anon_sym_LT_AMP] = ACTIONS(2360), + [anon_sym_GT_AMP] = ACTIONS(2360), + [sym__special_characters] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [anon_sym_DOLLAR] = ACTIONS(2360), + [sym_raw_string] = ACTIONS(2360), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2360), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2360), + [anon_sym_BQUOTE] = ACTIONS(2360), + [anon_sym_LT_LPAREN] = ACTIONS(2360), + [anon_sym_GT_LPAREN] = ACTIONS(2360), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + }, + [1289] = { + [sym_string] = STATE(1960), + [sym_simple_expansion] = STATE(1960), + [sym_string_expansion] = STATE(1960), + [sym_expansion] = STATE(1960), + [sym_command_substitution] = STATE(1960), + [sym_process_substitution] = STATE(1960), + [sym__special_characters] = ACTIONS(4177), + [anon_sym_DQUOTE] = ACTIONS(1305), + [anon_sym_DOLLAR] = ACTIONS(1307), + [sym_raw_string] = ACTIONS(4179), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1311), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1313), + [anon_sym_BQUOTE] = ACTIONS(1315), + [anon_sym_LT_LPAREN] = ACTIONS(1317), + [anon_sym_GT_LPAREN] = ACTIONS(1317), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4177), + }, + [1290] = { + [aux_sym_concatenation_repeat1] = STATE(1961), + [sym__concat] = ACTIONS(2583), + [anon_sym_SEMI_SEMI] = ACTIONS(774), + [sym__special_characters] = ACTIONS(774), + [anon_sym_DQUOTE] = ACTIONS(774), + [anon_sym_DOLLAR] = ACTIONS(774), + [sym_raw_string] = ACTIONS(774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(774), + [anon_sym_BQUOTE] = ACTIONS(774), + [anon_sym_LT_LPAREN] = ACTIONS(774), + [anon_sym_GT_LPAREN] = ACTIONS(774), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(774), + [anon_sym_SEMI] = ACTIONS(774), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_AMP] = ACTIONS(774), + }, + [1291] = { + [sym__concat] = ACTIONS(776), + [anon_sym_SEMI_SEMI] = ACTIONS(778), + [sym__special_characters] = ACTIONS(778), + [anon_sym_DQUOTE] = ACTIONS(778), + [anon_sym_DOLLAR] = ACTIONS(778), + [sym_raw_string] = ACTIONS(778), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(778), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(778), + [anon_sym_BQUOTE] = ACTIONS(778), + [anon_sym_LT_LPAREN] = ACTIONS(778), + [anon_sym_GT_LPAREN] = ACTIONS(778), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(778), + [anon_sym_SEMI] = ACTIONS(778), + [anon_sym_LF] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(778), + }, + [1292] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(4181), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [1293] = { + [sym__concat] = ACTIONS(808), + [anon_sym_SEMI_SEMI] = ACTIONS(810), + [sym__special_characters] = ACTIONS(810), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_DOLLAR] = ACTIONS(810), + [sym_raw_string] = ACTIONS(810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(810), + [anon_sym_BQUOTE] = ACTIONS(810), + [anon_sym_LT_LPAREN] = ACTIONS(810), + [anon_sym_GT_LPAREN] = ACTIONS(810), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(810), + [anon_sym_LF] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(810), + }, + [1294] = { + [sym__concat] = ACTIONS(812), + [anon_sym_SEMI_SEMI] = ACTIONS(814), + [sym__special_characters] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_DOLLAR] = ACTIONS(814), + [sym_raw_string] = ACTIONS(814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(814), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(814), + [anon_sym_BQUOTE] = ACTIONS(814), + [anon_sym_LT_LPAREN] = ACTIONS(814), + [anon_sym_GT_LPAREN] = ACTIONS(814), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(814), + [anon_sym_SEMI] = ACTIONS(814), + [anon_sym_LF] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(814), + }, + [1295] = { + [sym__concat] = ACTIONS(816), + [anon_sym_SEMI_SEMI] = ACTIONS(818), + [sym__special_characters] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(818), + [anon_sym_DOLLAR] = ACTIONS(818), + [sym_raw_string] = ACTIONS(818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(818), + [anon_sym_BQUOTE] = ACTIONS(818), + [anon_sym_LT_LPAREN] = ACTIONS(818), + [anon_sym_GT_LPAREN] = ACTIONS(818), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_LF] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(818), + }, + [1296] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(4183), + [sym_comment] = ACTIONS(56), + }, + [1297] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1966), + [anon_sym_RBRACE] = ACTIONS(4185), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4187), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1298] = { + [sym_subscript] = STATE(1970), + [sym_variable_name] = ACTIONS(4189), + [anon_sym_DOLLAR] = ACTIONS(4191), + [anon_sym_DASH] = ACTIONS(4191), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4193), + [anon_sym_STAR] = ACTIONS(4191), + [anon_sym_AT] = ACTIONS(4191), + [anon_sym_QMARK] = ACTIONS(4191), + [anon_sym_0] = ACTIONS(4195), + [anon_sym__] = ACTIONS(4195), + }, + [1299] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1973), + [anon_sym_RBRACE] = ACTIONS(4197), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4199), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1300] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(1976), + [anon_sym_RBRACE] = ACTIONS(4201), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4203), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1301] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4205), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [1302] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4205), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1303] = { + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(4205), + [sym_comment] = ACTIONS(56), + }, + [1304] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(4205), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1305] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4207), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [1306] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4207), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1307] = { + [sym_do_group] = STATE(1980), + [anon_sym_do] = ACTIONS(4209), + [sym_comment] = ACTIONS(56), + }, + [1308] = { + [sym_concatenation] = STATE(688), + [sym_string] = STATE(683), + [sym_simple_expansion] = STATE(683), + [sym_string_expansion] = STATE(683), + [sym_expansion] = STATE(683), + [sym_command_substitution] = STATE(683), + [sym_process_substitution] = STATE(683), + [aux_sym_for_statement_repeat1] = STATE(1308), + [anon_sym_SEMI_SEMI] = ACTIONS(4211), + [sym__special_characters] = ACTIONS(4213), + [anon_sym_DQUOTE] = ACTIONS(4216), + [anon_sym_DOLLAR] = ACTIONS(4219), + [sym_raw_string] = ACTIONS(4222), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4225), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4228), + [anon_sym_BQUOTE] = ACTIONS(4231), + [anon_sym_LT_LPAREN] = ACTIONS(4234), + [anon_sym_GT_LPAREN] = ACTIONS(4234), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4222), + [anon_sym_SEMI] = ACTIONS(4211), + [anon_sym_LF] = ACTIONS(4211), + [anon_sym_AMP] = ACTIONS(4211), + }, + [1309] = { + [sym_file_descriptor] = ACTIONS(1080), + [sym_variable_name] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_done] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1080), + [anon_sym_declare] = ACTIONS(1082), + [anon_sym_typeset] = ACTIONS(1082), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_readonly] = ACTIONS(1082), + [anon_sym_local] = ACTIONS(1082), + [anon_sym_unset] = ACTIONS(1082), + [anon_sym_unsetenv] = ACTIONS(1082), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1080), + [anon_sym_LT_AMP] = ACTIONS(1080), + [anon_sym_GT_AMP] = ACTIONS(1080), + [sym__special_characters] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(1080), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1080), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1080), + [anon_sym_BQUOTE] = ACTIONS(1080), + [anon_sym_LT_LPAREN] = ACTIONS(1080), + [anon_sym_GT_LPAREN] = ACTIONS(1080), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1084), + }, + [1310] = { + [sym_file_descriptor] = ACTIONS(4237), + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [anon_sym_SEMI_SEMI] = ACTIONS(4239), + [anon_sym_PIPE_AMP] = ACTIONS(4239), + [anon_sym_AMP_AMP] = ACTIONS(4239), + [anon_sym_PIPE_PIPE] = ACTIONS(4239), + [anon_sym_LT] = ACTIONS(4239), + [anon_sym_GT] = ACTIONS(4239), + [anon_sym_GT_GT] = ACTIONS(4239), + [anon_sym_AMP_GT] = ACTIONS(4239), + [anon_sym_AMP_GT_GT] = ACTIONS(4239), + [anon_sym_LT_AMP] = ACTIONS(4239), + [anon_sym_GT_AMP] = ACTIONS(4239), + [anon_sym_LT_LT] = ACTIONS(4239), + [anon_sym_LT_LT_DASH] = ACTIONS(4239), + [anon_sym_LT_LT_LT] = ACTIONS(4239), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_LF] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4239), + }, + [1311] = { + [sym__terminated_statement] = STATE(691), + [sym_for_statement] = STATE(692), + [sym_while_statement] = STATE(692), + [sym_if_statement] = STATE(692), + [sym_case_statement] = STATE(692), + [sym_function_definition] = STATE(692), + [sym_subshell] = STATE(692), + [sym_pipeline] = STATE(692), + [sym_list] = STATE(692), + [sym_command] = STATE(692), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(692), + [sym_variable_assignment] = STATE(693), + [sym_declaration_command] = STATE(692), + [sym_unset_command] = STATE(692), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1311), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(1130), + [sym_variable_name] = ACTIONS(1133), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_done] = ACTIONS(4241), + [anon_sym_if] = ACTIONS(1144), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_function] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1162), + [anon_sym_typeset] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(1162), + [anon_sym_readonly] = ACTIONS(1162), + [anon_sym_local] = ACTIONS(1162), + [anon_sym_unset] = ACTIONS(1165), + [anon_sym_unsetenv] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(1168), + [anon_sym_GT] = ACTIONS(1168), + [anon_sym_GT_GT] = ACTIONS(1171), + [anon_sym_AMP_GT] = ACTIONS(1168), + [anon_sym_AMP_GT_GT] = ACTIONS(1171), + [anon_sym_LT_AMP] = ACTIONS(1171), + [anon_sym_GT_AMP] = ACTIONS(1171), + [sym__special_characters] = ACTIONS(1174), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1180), + [sym_raw_string] = ACTIONS(1183), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1186), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1189), + [anon_sym_BQUOTE] = ACTIONS(1192), + [anon_sym_LT_LPAREN] = ACTIONS(1195), + [anon_sym_GT_LPAREN] = ACTIONS(1195), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1198), + }, + [1312] = { + [anon_sym_then] = ACTIONS(4243), + [sym_comment] = ACTIONS(56), + }, + [1313] = { + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(338), + [anon_sym_for] = ACTIONS(340), + [anon_sym_while] = ACTIONS(340), + [anon_sym_if] = ACTIONS(340), + [anon_sym_fi] = ACTIONS(340), + [anon_sym_case] = ACTIONS(340), + [anon_sym_function] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(338), + [anon_sym_LBRACK] = ACTIONS(340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(338), + [anon_sym_declare] = ACTIONS(340), + [anon_sym_typeset] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_readonly] = ACTIONS(340), + [anon_sym_local] = ACTIONS(340), + [anon_sym_unset] = ACTIONS(340), + [anon_sym_unsetenv] = ACTIONS(340), + [anon_sym_LT] = ACTIONS(340), + [anon_sym_GT] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_AMP_GT] = ACTIONS(340), + [anon_sym_AMP_GT_GT] = ACTIONS(338), + [anon_sym_LT_AMP] = ACTIONS(338), + [anon_sym_GT_AMP] = ACTIONS(338), + [sym__special_characters] = ACTIONS(342), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_DOLLAR] = ACTIONS(340), + [sym_raw_string] = ACTIONS(338), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(338), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(338), + [anon_sym_BQUOTE] = ACTIONS(338), + [anon_sym_LT_LPAREN] = ACTIONS(338), + [anon_sym_GT_LPAREN] = ACTIONS(338), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(342), + }, + [1314] = { + [anon_sym_PIPE] = ACTIONS(344), + [anon_sym_SEMI_SEMI] = ACTIONS(4245), + [anon_sym_PIPE_AMP] = ACTIONS(344), + [anon_sym_AMP_AMP] = ACTIONS(348), + [anon_sym_PIPE_PIPE] = ACTIONS(348), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4245), + [anon_sym_LF] = ACTIONS(4245), + [anon_sym_AMP] = ACTIONS(4245), + }, + [1315] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(344), + [anon_sym_SEMI_SEMI] = ACTIONS(4245), + [anon_sym_PIPE_AMP] = ACTIONS(344), + [anon_sym_AMP_AMP] = ACTIONS(348), + [anon_sym_PIPE_PIPE] = ACTIONS(348), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(380), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(380), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(380), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(4245), + [anon_sym_LF] = ACTIONS(4245), + [anon_sym_AMP] = ACTIONS(4245), + }, + [1316] = { + [sym__terminated_statement] = STATE(1313), + [sym_for_statement] = STATE(1314), + [sym_while_statement] = STATE(1314), + [sym_if_statement] = STATE(1314), + [sym_case_statement] = STATE(1314), + [sym_function_definition] = STATE(1314), + [sym_subshell] = STATE(1314), + [sym_pipeline] = STATE(1314), + [sym_list] = STATE(1314), + [sym_command] = STATE(1314), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(1314), + [sym_variable_assignment] = STATE(1315), + [sym_declaration_command] = STATE(1314), + [sym_unset_command] = STATE(1314), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1983), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_fi] = ACTIONS(4247), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [1317] = { + [sym_file_descriptor] = ACTIONS(1080), + [sym_variable_name] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_fi] = ACTIONS(1082), + [anon_sym_elif] = ACTIONS(1082), + [anon_sym_else] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1080), + [anon_sym_declare] = ACTIONS(1082), + [anon_sym_typeset] = ACTIONS(1082), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_readonly] = ACTIONS(1082), + [anon_sym_local] = ACTIONS(1082), + [anon_sym_unset] = ACTIONS(1082), + [anon_sym_unsetenv] = ACTIONS(1082), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1080), + [anon_sym_LT_AMP] = ACTIONS(1080), + [anon_sym_GT_AMP] = ACTIONS(1080), + [sym__special_characters] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(1080), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1080), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1080), + [anon_sym_BQUOTE] = ACTIONS(1080), + [anon_sym_LT_LPAREN] = ACTIONS(1080), + [anon_sym_GT_LPAREN] = ACTIONS(1080), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1084), + }, + [1318] = { + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_RPAREN] = ACTIONS(4249), + [anon_sym_SEMI_SEMI] = ACTIONS(4249), + [anon_sym_PIPE_AMP] = ACTIONS(4249), + [anon_sym_AMP_AMP] = ACTIONS(4249), + [anon_sym_PIPE_PIPE] = ACTIONS(4249), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4249), + [anon_sym_LF] = ACTIONS(4249), + [anon_sym_AMP] = ACTIONS(4249), + }, + [1319] = { + [anon_sym_fi] = ACTIONS(4251), + [sym_comment] = ACTIONS(56), + }, + [1320] = { + [sym__terminated_statement] = STATE(699), + [sym_for_statement] = STATE(700), + [sym_while_statement] = STATE(700), + [sym_if_statement] = STATE(700), + [sym_case_statement] = STATE(700), + [sym_function_definition] = STATE(700), + [sym_subshell] = STATE(700), + [sym_pipeline] = STATE(700), + [sym_list] = STATE(700), + [sym_command] = STATE(700), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(700), + [sym_variable_assignment] = STATE(703), + [sym_declaration_command] = STATE(700), + [sym_unset_command] = STATE(700), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1320), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(1130), + [sym_variable_name] = ACTIONS(1133), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_if] = ACTIONS(1144), + [anon_sym_fi] = ACTIONS(4241), + [anon_sym_elif] = ACTIONS(4241), + [anon_sym_else] = ACTIONS(4241), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_function] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1162), + [anon_sym_typeset] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(1162), + [anon_sym_readonly] = ACTIONS(1162), + [anon_sym_local] = ACTIONS(1162), + [anon_sym_unset] = ACTIONS(1165), + [anon_sym_unsetenv] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(1168), + [anon_sym_GT] = ACTIONS(1168), + [anon_sym_GT_GT] = ACTIONS(1171), + [anon_sym_AMP_GT] = ACTIONS(1168), + [anon_sym_AMP_GT_GT] = ACTIONS(1171), + [anon_sym_LT_AMP] = ACTIONS(1171), + [anon_sym_GT_AMP] = ACTIONS(1171), + [sym__special_characters] = ACTIONS(1174), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1180), + [sym_raw_string] = ACTIONS(1183), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1186), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1189), + [anon_sym_BQUOTE] = ACTIONS(1192), + [anon_sym_LT_LPAREN] = ACTIONS(1195), + [anon_sym_GT_LPAREN] = ACTIONS(1195), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1198), + }, + [1321] = { + [sym_elif_clause] = STATE(701), + [sym_else_clause] = STATE(1985), + [aux_sym_if_statement_repeat1] = STATE(1322), + [anon_sym_fi] = ACTIONS(4251), + [anon_sym_elif] = ACTIONS(2647), + [anon_sym_else] = ACTIONS(2649), + [sym_comment] = ACTIONS(56), + }, + [1322] = { + [sym_elif_clause] = STATE(701), + [aux_sym_if_statement_repeat1] = STATE(1322), + [anon_sym_fi] = ACTIONS(4253), + [anon_sym_elif] = ACTIONS(4255), + [anon_sym_else] = ACTIONS(4253), + [sym_comment] = ACTIONS(56), + }, + [1323] = { + [anon_sym_PIPE] = ACTIONS(4258), + [anon_sym_RPAREN] = ACTIONS(4258), + [anon_sym_SEMI_SEMI] = ACTIONS(4258), + [anon_sym_PIPE_AMP] = ACTIONS(4258), + [anon_sym_AMP_AMP] = ACTIONS(4258), + [anon_sym_PIPE_PIPE] = ACTIONS(4258), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4258), + [anon_sym_LF] = ACTIONS(4258), + [anon_sym_AMP] = ACTIONS(4258), + }, + [1324] = { + [aux_sym_case_item_repeat1] = STATE(1989), + [aux_sym_concatenation_repeat1] = STATE(1990), + [sym__concat] = ACTIONS(4260), + [anon_sym_PIPE] = ACTIONS(4262), + [anon_sym_RPAREN] = ACTIONS(4264), + [sym_comment] = ACTIONS(56), + }, + [1325] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(1992), + [anon_sym_DQUOTE] = ACTIONS(4266), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [1326] = { + [sym_string] = STATE(1995), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(4268), + [anon_sym_POUND] = ACTIONS(4268), + [anon_sym_DASH] = ACTIONS(4268), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4270), + [anon_sym_STAR] = ACTIONS(4268), + [anon_sym_AT] = ACTIONS(4268), + [anon_sym_QMARK] = ACTIONS(4268), + [anon_sym_0] = ACTIONS(4272), + [anon_sym__] = ACTIONS(4272), + }, + [1327] = { + [aux_sym_case_item_repeat1] = STATE(1997), + [aux_sym_concatenation_repeat1] = STATE(1990), + [sym__concat] = ACTIONS(4260), + [anon_sym_PIPE] = ACTIONS(4262), + [anon_sym_RPAREN] = ACTIONS(4274), + [sym_comment] = ACTIONS(56), + }, + [1328] = { + [sym_subscript] = STATE(2002), + [sym_variable_name] = ACTIONS(4276), + [anon_sym_DOLLAR] = ACTIONS(4278), + [anon_sym_POUND] = ACTIONS(4280), + [anon_sym_DASH] = ACTIONS(4278), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4282), + [anon_sym_STAR] = ACTIONS(4278), + [anon_sym_AT] = ACTIONS(4278), + [anon_sym_QMARK] = ACTIONS(4278), + [anon_sym_0] = ACTIONS(4284), + [anon_sym__] = ACTIONS(4284), + }, + [1329] = { + [sym_for_statement] = STATE(2003), + [sym_while_statement] = STATE(2003), + [sym_if_statement] = STATE(2003), + [sym_case_statement] = STATE(2003), + [sym_function_definition] = STATE(2003), + [sym_subshell] = STATE(2003), + [sym_pipeline] = STATE(2003), + [sym_list] = STATE(2003), + [sym_command] = STATE(2003), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(2003), + [sym_variable_assignment] = STATE(2004), + [sym_declaration_command] = STATE(2003), + [sym_unset_command] = STATE(2003), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [1330] = { + [sym_for_statement] = STATE(2005), + [sym_while_statement] = STATE(2005), + [sym_if_statement] = STATE(2005), + [sym_case_statement] = STATE(2005), + [sym_function_definition] = STATE(2005), + [sym_subshell] = STATE(2005), + [sym_pipeline] = STATE(2005), + [sym_list] = STATE(2005), + [sym_command] = STATE(2005), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(2005), + [sym_variable_assignment] = STATE(2006), + [sym_declaration_command] = STATE(2005), + [sym_unset_command] = STATE(2005), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), + }, + [1331] = { + [sym_for_statement] = STATE(2007), + [sym_while_statement] = STATE(2007), + [sym_if_statement] = STATE(2007), + [sym_case_statement] = STATE(2007), + [sym_function_definition] = STATE(2007), + [sym_subshell] = STATE(2007), + [sym_pipeline] = STATE(2007), + [sym_list] = STATE(2007), + [sym_command] = STATE(2007), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(2007), + [sym_variable_assignment] = STATE(2008), + [sym_declaration_command] = STATE(2007), + [sym_unset_command] = STATE(2007), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [1332] = { + [sym__special_characters] = ACTIONS(4286), + [anon_sym_DQUOTE] = ACTIONS(4288), + [anon_sym_DOLLAR] = ACTIONS(4286), + [sym_raw_string] = ACTIONS(4288), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4288), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4288), + [anon_sym_BQUOTE] = ACTIONS(4288), + [anon_sym_LT_LPAREN] = ACTIONS(4288), + [anon_sym_GT_LPAREN] = ACTIONS(4288), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4286), + }, + [1333] = { + [anon_sym_esac] = ACTIONS(4290), + [sym_comment] = ACTIONS(56), + }, + [1334] = { + [aux_sym_case_item_repeat1] = STATE(1997), + [anon_sym_PIPE] = ACTIONS(4262), + [anon_sym_RPAREN] = ACTIONS(4274), + [sym_comment] = ACTIONS(56), + }, + [1335] = { + [sym_case_item] = STATE(1332), + [sym_last_case_item] = STATE(2010), + [sym_concatenation] = STATE(1334), + [sym_string] = STATE(1327), + [sym_simple_expansion] = STATE(1327), + [sym_string_expansion] = STATE(1327), + [sym_expansion] = STATE(1327), + [sym_command_substitution] = STATE(1327), + [sym_process_substitution] = STATE(1327), + [aux_sym_case_statement_repeat1] = STATE(2011), + [sym__special_characters] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2657), + [sym_raw_string] = ACTIONS(2659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2663), + [anon_sym_BQUOTE] = ACTIONS(2665), + [anon_sym_LT_LPAREN] = ACTIONS(2667), + [anon_sym_GT_LPAREN] = ACTIONS(2667), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4292), + }, + [1336] = { + [sym_case_item] = STATE(1332), + [sym_last_case_item] = STATE(2010), + [sym_concatenation] = STATE(1334), + [sym_string] = STATE(1327), + [sym_simple_expansion] = STATE(1327), + [sym_string_expansion] = STATE(1327), + [sym_expansion] = STATE(1327), + [sym_command_substitution] = STATE(1327), + [sym_process_substitution] = STATE(1327), + [aux_sym_case_statement_repeat1] = STATE(2013), + [anon_sym_esac] = ACTIONS(4294), + [sym__special_characters] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2657), + [sym_raw_string] = ACTIONS(2659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2663), + [anon_sym_BQUOTE] = ACTIONS(2665), + [anon_sym_LT_LPAREN] = ACTIONS(2667), + [anon_sym_GT_LPAREN] = ACTIONS(2667), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2669), + }, + [1337] = { + [anon_sym_PIPE] = ACTIONS(4296), + [anon_sym_RPAREN] = ACTIONS(4296), + [anon_sym_SEMI_SEMI] = ACTIONS(4296), + [anon_sym_PIPE_AMP] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_LF] = ACTIONS(4296), + [anon_sym_AMP] = ACTIONS(4296), + }, + [1338] = { + [anon_sym_esac] = ACTIONS(4298), + [sym_comment] = ACTIONS(56), + }, + [1339] = { + [sym_case_item] = STATE(1332), + [sym_last_case_item] = STATE(2015), + [sym_concatenation] = STATE(1334), + [sym_string] = STATE(1327), + [sym_simple_expansion] = STATE(1327), + [sym_string_expansion] = STATE(1327), + [sym_expansion] = STATE(1327), + [sym_command_substitution] = STATE(1327), + [sym_process_substitution] = STATE(1327), + [aux_sym_case_statement_repeat1] = STATE(2011), + [sym__special_characters] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2657), + [sym_raw_string] = ACTIONS(2659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2663), + [anon_sym_BQUOTE] = ACTIONS(2665), + [anon_sym_LT_LPAREN] = ACTIONS(2667), + [anon_sym_GT_LPAREN] = ACTIONS(2667), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4292), + }, + [1340] = { + [sym_case_item] = STATE(1332), + [sym_last_case_item] = STATE(2015), + [sym_concatenation] = STATE(1334), + [sym_string] = STATE(1327), + [sym_simple_expansion] = STATE(1327), + [sym_string_expansion] = STATE(1327), + [sym_expansion] = STATE(1327), + [sym_command_substitution] = STATE(1327), + [sym_process_substitution] = STATE(1327), + [aux_sym_case_statement_repeat1] = STATE(2017), + [anon_sym_esac] = ACTIONS(4300), + [sym__special_characters] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2657), + [sym_raw_string] = ACTIONS(2659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2663), + [anon_sym_BQUOTE] = ACTIONS(2665), + [anon_sym_LT_LPAREN] = ACTIONS(2667), + [anon_sym_GT_LPAREN] = ACTIONS(2667), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2669), + }, + [1341] = { + [sym__concat] = ACTIONS(3235), + [anon_sym_in] = ACTIONS(3237), + [anon_sym_SEMI_SEMI] = ACTIONS(3237), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_LF] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), + }, + [1342] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(4302), + [sym_comment] = ACTIONS(56), + }, + [1343] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(4304), + [sym_comment] = ACTIONS(56), + }, + [1344] = { + [anon_sym_RBRACE] = ACTIONS(4304), + [sym_comment] = ACTIONS(56), + }, + [1345] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2021), + [anon_sym_RBRACE] = ACTIONS(4306), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1346] = { + [sym__concat] = ACTIONS(3297), + [anon_sym_in] = ACTIONS(3299), + [anon_sym_SEMI_SEMI] = ACTIONS(3299), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_LF] = ACTIONS(3299), + [anon_sym_AMP] = ACTIONS(3299), + }, + [1347] = { + [sym_concatenation] = STATE(2024), + [sym_string] = STATE(2023), + [sym_simple_expansion] = STATE(2023), + [sym_string_expansion] = STATE(2023), + [sym_expansion] = STATE(2023), + [sym_command_substitution] = STATE(2023), + [sym_process_substitution] = STATE(2023), + [anon_sym_RBRACE] = ACTIONS(4304), + [sym__special_characters] = ACTIONS(4308), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(4310), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4312), + }, + [1348] = { + [sym__concat] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_SEMI_SEMI] = ACTIONS(3344), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_LF] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3344), + }, + [1349] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4314), + }, + [1350] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4316), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1351] = { + [sym__concat] = ACTIONS(3350), + [anon_sym_in] = ACTIONS(3352), + [anon_sym_SEMI_SEMI] = ACTIONS(3352), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3352), + [anon_sym_LF] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3352), + }, + [1352] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4318), + }, + [1353] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4320), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1354] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4322), + }, + [1355] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4304), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1356] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2031), + [anon_sym_RBRACE] = ACTIONS(4324), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1357] = { + [sym__concat] = ACTIONS(3362), + [anon_sym_in] = ACTIONS(3364), + [anon_sym_SEMI_SEMI] = ACTIONS(3364), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_LF] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3364), + }, + [1358] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2033), + [anon_sym_RBRACE] = ACTIONS(4326), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1359] = { + [sym_file_redirect] = STATE(2034), + [sym_file_descriptor] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(4328), + [anon_sym_SEMI_SEMI] = ACTIONS(4328), + [anon_sym_PIPE_AMP] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1379), + [anon_sym_GT_GT] = ACTIONS(1379), + [anon_sym_AMP_GT] = ACTIONS(1379), + [anon_sym_AMP_GT_GT] = ACTIONS(1379), + [anon_sym_LT_AMP] = ACTIONS(1379), + [anon_sym_GT_AMP] = ACTIONS(1379), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_LF] = ACTIONS(4328), + [anon_sym_AMP] = ACTIONS(4328), + }, + [1360] = { + [sym_file_descriptor] = ACTIONS(1080), + [sym_variable_name] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_RBRACE] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1080), + [anon_sym_declare] = ACTIONS(1082), + [anon_sym_typeset] = ACTIONS(1082), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_readonly] = ACTIONS(1082), + [anon_sym_local] = ACTIONS(1082), + [anon_sym_unset] = ACTIONS(1082), + [anon_sym_unsetenv] = ACTIONS(1082), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1080), + [anon_sym_LT_AMP] = ACTIONS(1080), + [anon_sym_GT_AMP] = ACTIONS(1080), + [sym__special_characters] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(1080), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1080), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1080), + [anon_sym_BQUOTE] = ACTIONS(1080), + [anon_sym_LT_LPAREN] = ACTIONS(1080), + [anon_sym_GT_LPAREN] = ACTIONS(1080), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1084), + }, + [1361] = { + [sym_file_descriptor] = ACTIONS(4330), + [anon_sym_PIPE] = ACTIONS(4332), + [anon_sym_RPAREN] = ACTIONS(4332), + [anon_sym_SEMI_SEMI] = ACTIONS(4332), + [anon_sym_PIPE_AMP] = ACTIONS(4332), + [anon_sym_AMP_AMP] = ACTIONS(4332), + [anon_sym_PIPE_PIPE] = ACTIONS(4332), + [anon_sym_LT] = ACTIONS(4332), + [anon_sym_GT] = ACTIONS(4332), + [anon_sym_GT_GT] = ACTIONS(4332), + [anon_sym_AMP_GT] = ACTIONS(4332), + [anon_sym_AMP_GT_GT] = ACTIONS(4332), + [anon_sym_LT_AMP] = ACTIONS(4332), + [anon_sym_GT_AMP] = ACTIONS(4332), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4332), + [anon_sym_LF] = ACTIONS(4332), + [anon_sym_AMP] = ACTIONS(4332), + }, + [1362] = { + [sym__terminated_statement] = STATE(731), + [sym_for_statement] = STATE(732), + [sym_while_statement] = STATE(732), + [sym_if_statement] = STATE(732), + [sym_case_statement] = STATE(732), + [sym_function_definition] = STATE(732), + [sym_subshell] = STATE(732), + [sym_pipeline] = STATE(732), + [sym_list] = STATE(732), + [sym_command] = STATE(732), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(732), + [sym_variable_assignment] = STATE(733), + [sym_declaration_command] = STATE(732), + [sym_unset_command] = STATE(732), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1362), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(1130), + [sym_variable_name] = ACTIONS(1133), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_if] = ACTIONS(1144), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_function] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_RBRACE] = ACTIONS(1136), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1162), + [anon_sym_typeset] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(1162), + [anon_sym_readonly] = ACTIONS(1162), + [anon_sym_local] = ACTIONS(1162), + [anon_sym_unset] = ACTIONS(1165), + [anon_sym_unsetenv] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(1168), + [anon_sym_GT] = ACTIONS(1168), + [anon_sym_GT_GT] = ACTIONS(1171), + [anon_sym_AMP_GT] = ACTIONS(1168), + [anon_sym_AMP_GT_GT] = ACTIONS(1171), + [anon_sym_LT_AMP] = ACTIONS(1171), + [anon_sym_GT_AMP] = ACTIONS(1171), + [sym__special_characters] = ACTIONS(1174), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1180), + [sym_raw_string] = ACTIONS(1183), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1186), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1189), + [anon_sym_BQUOTE] = ACTIONS(1192), + [anon_sym_LT_LPAREN] = ACTIONS(1195), + [anon_sym_GT_LPAREN] = ACTIONS(1195), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1198), + }, + [1363] = { + [sym_concatenation] = STATE(2037), + [sym_string] = STATE(2036), + [sym_simple_expansion] = STATE(2036), + [sym_string_expansion] = STATE(2036), + [sym_expansion] = STATE(2036), + [sym_command_substitution] = STATE(2036), + [sym_process_substitution] = STATE(2036), + [sym__special_characters] = ACTIONS(4334), + [anon_sym_DQUOTE] = ACTIONS(2724), + [anon_sym_DOLLAR] = ACTIONS(2726), + [sym_raw_string] = ACTIONS(4336), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2732), + [anon_sym_BQUOTE] = ACTIONS(2734), + [anon_sym_LT_LPAREN] = ACTIONS(2736), + [anon_sym_GT_LPAREN] = ACTIONS(2736), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4338), + }, + [1364] = { + [aux_sym_concatenation_repeat1] = STATE(2039), + [sym__concat] = ACTIONS(4340), + [anon_sym_PIPE] = ACTIONS(2374), + [anon_sym_SEMI_SEMI] = ACTIONS(2374), + [anon_sym_PIPE_AMP] = ACTIONS(2374), + [anon_sym_AMP_AMP] = ACTIONS(2374), + [anon_sym_PIPE_PIPE] = ACTIONS(2374), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_LF] = ACTIONS(2374), + [anon_sym_AMP] = ACTIONS(2374), + }, + [1365] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(2041), + [anon_sym_DQUOTE] = ACTIONS(4342), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [1366] = { + [sym_string] = STATE(2044), + [anon_sym_DQUOTE] = ACTIONS(2724), + [anon_sym_DOLLAR] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4344), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4346), + [anon_sym_STAR] = ACTIONS(4344), + [anon_sym_AT] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [anon_sym_0] = ACTIONS(4348), + [anon_sym__] = ACTIONS(4348), + }, + [1367] = { + [aux_sym_concatenation_repeat1] = STATE(2039), + [sym__concat] = ACTIONS(4340), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_SEMI_SEMI] = ACTIONS(2384), + [anon_sym_PIPE_AMP] = ACTIONS(2384), + [anon_sym_AMP_AMP] = ACTIONS(2384), + [anon_sym_PIPE_PIPE] = ACTIONS(2384), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2384), + [anon_sym_LF] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + }, + [1368] = { + [sym_subscript] = STATE(2049), + [sym_variable_name] = ACTIONS(4350), + [anon_sym_DOLLAR] = ACTIONS(4352), + [anon_sym_POUND] = ACTIONS(4354), + [anon_sym_DASH] = ACTIONS(4352), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4356), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_AT] = ACTIONS(4352), + [anon_sym_QMARK] = ACTIONS(4352), + [anon_sym_0] = ACTIONS(4358), + [anon_sym__] = ACTIONS(4358), + }, + [1369] = { + [sym_for_statement] = STATE(2050), + [sym_while_statement] = STATE(2050), + [sym_if_statement] = STATE(2050), + [sym_case_statement] = STATE(2050), + [sym_function_definition] = STATE(2050), + [sym_subshell] = STATE(2050), + [sym_pipeline] = STATE(2050), + [sym_list] = STATE(2050), + [sym_command] = STATE(2050), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(2050), + [sym_variable_assignment] = STATE(2051), + [sym_declaration_command] = STATE(2050), + [sym_unset_command] = STATE(2050), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [1370] = { + [sym_for_statement] = STATE(2052), + [sym_while_statement] = STATE(2052), + [sym_if_statement] = STATE(2052), + [sym_case_statement] = STATE(2052), + [sym_function_definition] = STATE(2052), + [sym_subshell] = STATE(2052), + [sym_pipeline] = STATE(2052), + [sym_list] = STATE(2052), + [sym_command] = STATE(2052), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(2052), + [sym_variable_assignment] = STATE(2053), + [sym_declaration_command] = STATE(2052), + [sym_unset_command] = STATE(2052), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), + }, + [1371] = { + [sym_for_statement] = STATE(2054), + [sym_while_statement] = STATE(2054), + [sym_if_statement] = STATE(2054), + [sym_case_statement] = STATE(2054), + [sym_function_definition] = STATE(2054), + [sym_subshell] = STATE(2054), + [sym_pipeline] = STATE(2054), + [sym_list] = STATE(2054), + [sym_command] = STATE(2054), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(2054), + [sym_variable_assignment] = STATE(2055), + [sym_declaration_command] = STATE(2054), + [sym_unset_command] = STATE(2054), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [1372] = { + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_RPAREN] = ACTIONS(2384), + [anon_sym_SEMI_SEMI] = ACTIONS(2384), + [anon_sym_PIPE_AMP] = ACTIONS(2384), + [anon_sym_AMP_AMP] = ACTIONS(2384), + [anon_sym_PIPE_PIPE] = ACTIONS(2384), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2384), + [anon_sym_LF] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + }, + [1373] = { + [sym_string] = STATE(2056), + [sym_simple_expansion] = STATE(2056), + [sym_string_expansion] = STATE(2056), + [sym_expansion] = STATE(2056), + [sym_command_substitution] = STATE(2056), + [sym_process_substitution] = STATE(2056), + [sym__special_characters] = ACTIONS(4360), + [anon_sym_DQUOTE] = ACTIONS(1383), + [anon_sym_DOLLAR] = ACTIONS(1385), + [sym_raw_string] = ACTIONS(4362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1389), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1391), + [anon_sym_BQUOTE] = ACTIONS(1393), + [anon_sym_LT_LPAREN] = ACTIONS(1395), + [anon_sym_GT_LPAREN] = ACTIONS(1395), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4360), + }, + [1374] = { + [aux_sym_concatenation_repeat1] = STATE(2057), + [sym_file_descriptor] = ACTIONS(772), + [sym__concat] = ACTIONS(2742), + [sym_variable_name] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(774), + [anon_sym_RPAREN] = ACTIONS(774), + [anon_sym_SEMI_SEMI] = ACTIONS(774), + [anon_sym_PIPE_AMP] = ACTIONS(774), + [anon_sym_AMP_AMP] = ACTIONS(774), + [anon_sym_PIPE_PIPE] = ACTIONS(774), + [anon_sym_LT] = ACTIONS(774), + [anon_sym_GT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(774), + [anon_sym_AMP_GT] = ACTIONS(774), + [anon_sym_AMP_GT_GT] = ACTIONS(774), + [anon_sym_LT_AMP] = ACTIONS(774), + [anon_sym_GT_AMP] = ACTIONS(774), + [sym__special_characters] = ACTIONS(774), + [anon_sym_DQUOTE] = ACTIONS(774), + [anon_sym_DOLLAR] = ACTIONS(774), + [sym_raw_string] = ACTIONS(774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(774), + [anon_sym_BQUOTE] = ACTIONS(774), + [anon_sym_LT_LPAREN] = ACTIONS(774), + [anon_sym_GT_LPAREN] = ACTIONS(774), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(774), + [anon_sym_SEMI] = ACTIONS(774), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_AMP] = ACTIONS(774), + }, + [1375] = { + [sym_file_descriptor] = ACTIONS(776), + [sym__concat] = ACTIONS(776), + [sym_variable_name] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(778), + [anon_sym_RPAREN] = ACTIONS(778), + [anon_sym_SEMI_SEMI] = ACTIONS(778), + [anon_sym_PIPE_AMP] = ACTIONS(778), + [anon_sym_AMP_AMP] = ACTIONS(778), + [anon_sym_PIPE_PIPE] = ACTIONS(778), + [anon_sym_LT] = ACTIONS(778), + [anon_sym_GT] = ACTIONS(778), + [anon_sym_GT_GT] = ACTIONS(778), + [anon_sym_AMP_GT] = ACTIONS(778), + [anon_sym_AMP_GT_GT] = ACTIONS(778), + [anon_sym_LT_AMP] = ACTIONS(778), + [anon_sym_GT_AMP] = ACTIONS(778), + [sym__special_characters] = ACTIONS(778), + [anon_sym_DQUOTE] = ACTIONS(778), + [anon_sym_DOLLAR] = ACTIONS(778), + [sym_raw_string] = ACTIONS(778), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(778), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(778), + [anon_sym_BQUOTE] = ACTIONS(778), + [anon_sym_LT_LPAREN] = ACTIONS(778), + [anon_sym_GT_LPAREN] = ACTIONS(778), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(778), + [anon_sym_SEMI] = ACTIONS(778), + [anon_sym_LF] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(778), + }, + [1376] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(4364), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [1377] = { + [sym_file_descriptor] = ACTIONS(808), + [sym__concat] = ACTIONS(808), + [sym_variable_name] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(810), + [anon_sym_SEMI_SEMI] = ACTIONS(810), + [anon_sym_PIPE_AMP] = ACTIONS(810), + [anon_sym_AMP_AMP] = ACTIONS(810), + [anon_sym_PIPE_PIPE] = ACTIONS(810), + [anon_sym_LT] = ACTIONS(810), + [anon_sym_GT] = ACTIONS(810), + [anon_sym_GT_GT] = ACTIONS(810), + [anon_sym_AMP_GT] = ACTIONS(810), + [anon_sym_AMP_GT_GT] = ACTIONS(810), + [anon_sym_LT_AMP] = ACTIONS(810), + [anon_sym_GT_AMP] = ACTIONS(810), + [sym__special_characters] = ACTIONS(810), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_DOLLAR] = ACTIONS(810), + [sym_raw_string] = ACTIONS(810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(810), + [anon_sym_BQUOTE] = ACTIONS(810), + [anon_sym_LT_LPAREN] = ACTIONS(810), + [anon_sym_GT_LPAREN] = ACTIONS(810), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(810), + [anon_sym_SEMI] = ACTIONS(810), + [anon_sym_LF] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(810), + }, + [1378] = { + [sym_file_descriptor] = ACTIONS(812), + [sym__concat] = ACTIONS(812), + [sym_variable_name] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(814), + [anon_sym_RPAREN] = ACTIONS(814), + [anon_sym_SEMI_SEMI] = ACTIONS(814), + [anon_sym_PIPE_AMP] = ACTIONS(814), + [anon_sym_AMP_AMP] = ACTIONS(814), + [anon_sym_PIPE_PIPE] = ACTIONS(814), + [anon_sym_LT] = ACTIONS(814), + [anon_sym_GT] = ACTIONS(814), + [anon_sym_GT_GT] = ACTIONS(814), + [anon_sym_AMP_GT] = ACTIONS(814), + [anon_sym_AMP_GT_GT] = ACTIONS(814), + [anon_sym_LT_AMP] = ACTIONS(814), + [anon_sym_GT_AMP] = ACTIONS(814), + [sym__special_characters] = ACTIONS(814), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_DOLLAR] = ACTIONS(814), + [sym_raw_string] = ACTIONS(814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(814), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(814), + [anon_sym_BQUOTE] = ACTIONS(814), + [anon_sym_LT_LPAREN] = ACTIONS(814), + [anon_sym_GT_LPAREN] = ACTIONS(814), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(814), + [anon_sym_SEMI] = ACTIONS(814), + [anon_sym_LF] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(814), + }, + [1379] = { + [sym_file_descriptor] = ACTIONS(816), + [sym__concat] = ACTIONS(816), + [sym_variable_name] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(818), + [anon_sym_SEMI_SEMI] = ACTIONS(818), + [anon_sym_PIPE_AMP] = ACTIONS(818), + [anon_sym_AMP_AMP] = ACTIONS(818), + [anon_sym_PIPE_PIPE] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(818), + [anon_sym_GT] = ACTIONS(818), + [anon_sym_GT_GT] = ACTIONS(818), + [anon_sym_AMP_GT] = ACTIONS(818), + [anon_sym_AMP_GT_GT] = ACTIONS(818), + [anon_sym_LT_AMP] = ACTIONS(818), + [anon_sym_GT_AMP] = ACTIONS(818), + [sym__special_characters] = ACTIONS(818), + [anon_sym_DQUOTE] = ACTIONS(818), + [anon_sym_DOLLAR] = ACTIONS(818), + [sym_raw_string] = ACTIONS(818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(818), + [anon_sym_BQUOTE] = ACTIONS(818), + [anon_sym_LT_LPAREN] = ACTIONS(818), + [anon_sym_GT_LPAREN] = ACTIONS(818), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(818), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_LF] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(818), + }, + [1380] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(4366), + [sym_comment] = ACTIONS(56), + }, + [1381] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2062), + [anon_sym_RBRACE] = ACTIONS(4368), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4370), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1382] = { + [sym_subscript] = STATE(2066), + [sym_variable_name] = ACTIONS(4372), + [anon_sym_DOLLAR] = ACTIONS(4374), + [anon_sym_DASH] = ACTIONS(4374), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4376), + [anon_sym_STAR] = ACTIONS(4374), + [anon_sym_AT] = ACTIONS(4374), + [anon_sym_QMARK] = ACTIONS(4374), + [anon_sym_0] = ACTIONS(4378), + [anon_sym__] = ACTIONS(4378), + }, + [1383] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2069), + [anon_sym_RBRACE] = ACTIONS(4380), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4382), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1384] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2072), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4386), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1385] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4388), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [1386] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4388), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1387] = { + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(4388), + [sym_comment] = ACTIONS(56), + }, + [1388] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(4388), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1389] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4390), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [1390] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4390), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1391] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(825), + [sym_file_descriptor] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(2633), + [anon_sym_RPAREN] = ACTIONS(2633), + [anon_sym_SEMI_SEMI] = ACTIONS(2633), + [anon_sym_PIPE_AMP] = ACTIONS(2633), + [anon_sym_AMP_AMP] = ACTIONS(2633), + [anon_sym_PIPE_PIPE] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_AMP_GT] = ACTIONS(554), + [anon_sym_AMP_GT_GT] = ACTIONS(554), + [anon_sym_LT_AMP] = ACTIONS(554), + [anon_sym_GT_AMP] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(358), + [anon_sym_LT_LT_DASH] = ACTIONS(358), + [anon_sym_LT_LT_LT] = ACTIONS(556), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym_LF] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2633), + }, + [1392] = { + [sym_compound_statement] = STATE(2075), + [anon_sym_LBRACE] = ACTIONS(480), + [sym_comment] = ACTIONS(56), + }, + [1393] = { + [anon_sym_LT] = ACTIONS(4392), + [anon_sym_GT] = ACTIONS(4392), + [anon_sym_GT_GT] = ACTIONS(4394), + [anon_sym_AMP_GT] = ACTIONS(4392), + [anon_sym_AMP_GT_GT] = ACTIONS(4394), + [anon_sym_LT_AMP] = ACTIONS(4394), + [anon_sym_GT_AMP] = ACTIONS(4394), + [sym_comment] = ACTIONS(56), + }, + [1394] = { + [sym_concatenation] = STATE(1372), + [sym_string] = STATE(2080), + [sym_simple_expansion] = STATE(2080), + [sym_string_expansion] = STATE(2080), + [sym_expansion] = STATE(2080), + [sym_command_substitution] = STATE(2080), + [sym_process_substitution] = STATE(2080), + [sym__special_characters] = ACTIONS(4396), + [anon_sym_DQUOTE] = ACTIONS(4398), + [anon_sym_DOLLAR] = ACTIONS(4400), + [sym_raw_string] = ACTIONS(4402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4406), + [anon_sym_BQUOTE] = ACTIONS(4408), + [anon_sym_LT_LPAREN] = ACTIONS(4410), + [anon_sym_GT_LPAREN] = ACTIONS(4410), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4412), + }, + [1395] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(825), + [sym_file_descriptor] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(3055), + [anon_sym_RPAREN] = ACTIONS(3055), + [anon_sym_SEMI_SEMI] = ACTIONS(3055), + [anon_sym_PIPE_AMP] = ACTIONS(3055), + [anon_sym_AMP_AMP] = ACTIONS(3055), + [anon_sym_PIPE_PIPE] = ACTIONS(3055), + [anon_sym_LT] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_AMP_GT] = ACTIONS(554), + [anon_sym_AMP_GT_GT] = ACTIONS(554), + [anon_sym_LT_AMP] = ACTIONS(554), + [anon_sym_GT_AMP] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(358), + [anon_sym_LT_LT_DASH] = ACTIONS(358), + [anon_sym_LT_LT_LT] = ACTIONS(556), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3055), + [anon_sym_LF] = ACTIONS(3055), + [anon_sym_AMP] = ACTIONS(3055), + }, + [1396] = { + [aux_sym_concatenation_repeat1] = STATE(752), + [sym__concat] = ACTIONS(1405), + [sym_variable_name] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_RPAREN] = ACTIONS(1283), + [anon_sym_SEMI_SEMI] = ACTIONS(1283), + [anon_sym_PIPE_AMP] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1283), + [anon_sym_PIPE_PIPE] = ACTIONS(1283), + [sym__special_characters] = ACTIONS(1283), + [anon_sym_DQUOTE] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1283), + [sym_raw_string] = ACTIONS(1283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1283), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1283), + [anon_sym_BQUOTE] = ACTIONS(1283), + [anon_sym_LT_LPAREN] = ACTIONS(1283), + [anon_sym_GT_LPAREN] = ACTIONS(1283), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1283), + [sym_word] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1283), + [anon_sym_LF] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), + }, + [1397] = { + [aux_sym_concatenation_repeat1] = STATE(752), + [sym__concat] = ACTIONS(1405), + [sym_variable_name] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_RPAREN] = ACTIONS(1257), + [anon_sym_SEMI_SEMI] = ACTIONS(1257), + [anon_sym_PIPE_AMP] = ACTIONS(1257), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [sym__special_characters] = ACTIONS(1257), + [anon_sym_DQUOTE] = ACTIONS(1257), + [anon_sym_DOLLAR] = ACTIONS(1257), + [sym_raw_string] = ACTIONS(1257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1257), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1257), + [anon_sym_BQUOTE] = ACTIONS(1257), + [anon_sym_LT_LPAREN] = ACTIONS(1257), + [anon_sym_GT_LPAREN] = ACTIONS(1257), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1257), + [sym_word] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_LF] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + }, + [1398] = { + [sym__concat] = ACTIONS(1858), + [sym_variable_name] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [anon_sym_PIPE_AMP] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1860), + [anon_sym_PIPE_PIPE] = ACTIONS(1860), + [sym__special_characters] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1860), + [anon_sym_DOLLAR] = ACTIONS(1860), + [sym_raw_string] = ACTIONS(1860), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1860), + [anon_sym_BQUOTE] = ACTIONS(1860), + [anon_sym_LT_LPAREN] = ACTIONS(1860), + [anon_sym_GT_LPAREN] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1860), + [sym_word] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + }, + [1399] = { + [aux_sym_concatenation_repeat1] = STATE(1399), + [sym__concat] = ACTIONS(4414), + [sym_variable_name] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [anon_sym_PIPE_AMP] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1860), + [anon_sym_PIPE_PIPE] = ACTIONS(1860), + [sym__special_characters] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1860), + [anon_sym_DOLLAR] = ACTIONS(1860), + [sym_raw_string] = ACTIONS(1860), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1860), + [anon_sym_BQUOTE] = ACTIONS(1860), + [anon_sym_LT_LPAREN] = ACTIONS(1860), + [anon_sym_GT_LPAREN] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1860), + [sym_word] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + }, + [1400] = { + [sym__concat] = ACTIONS(1895), + [sym_variable_name] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_RPAREN] = ACTIONS(1897), + [anon_sym_SEMI_SEMI] = ACTIONS(1897), + [anon_sym_PIPE_AMP] = ACTIONS(1897), + [anon_sym_AMP_AMP] = ACTIONS(1897), + [anon_sym_PIPE_PIPE] = ACTIONS(1897), + [sym__special_characters] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [anon_sym_DOLLAR] = ACTIONS(1897), + [sym_raw_string] = ACTIONS(1897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1897), + [anon_sym_BQUOTE] = ACTIONS(1897), + [anon_sym_LT_LPAREN] = ACTIONS(1897), + [anon_sym_GT_LPAREN] = ACTIONS(1897), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1897), + [sym_word] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_LF] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), + }, + [1401] = { + [sym_concatenation] = STATE(2088), + [sym_string] = STATE(2087), + [sym_simple_expansion] = STATE(2087), + [sym_string_expansion] = STATE(2087), + [sym_expansion] = STATE(2087), + [sym_command_substitution] = STATE(2087), + [sym_process_substitution] = STATE(2087), + [anon_sym_RBRACE] = ACTIONS(4417), + [sym__special_characters] = ACTIONS(4419), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(4421), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4423), + }, + [1402] = { + [sym__concat] = ACTIONS(1940), + [sym_variable_name] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1942), + [anon_sym_PIPE_AMP] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1942), + [anon_sym_PIPE_PIPE] = ACTIONS(1942), + [sym__special_characters] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [anon_sym_DOLLAR] = ACTIONS(1942), + [sym_raw_string] = ACTIONS(1942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1942), + [anon_sym_BQUOTE] = ACTIONS(1942), + [anon_sym_LT_LPAREN] = ACTIONS(1942), + [anon_sym_GT_LPAREN] = ACTIONS(1942), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1942), + [sym_word] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + }, + [1403] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4425), + }, + [1404] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4427), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1405] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(4429), + [sym_comment] = ACTIONS(56), + }, + [1406] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2094), + [anon_sym_RBRACE] = ACTIONS(4431), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4433), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1407] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2097), + [anon_sym_RBRACE] = ACTIONS(4435), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4437), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1408] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2099), + [anon_sym_RBRACE] = ACTIONS(4417), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4439), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1409] = { + [sym__concat] = ACTIONS(1992), + [sym_variable_name] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(1994), + [anon_sym_RPAREN] = ACTIONS(1994), + [anon_sym_SEMI_SEMI] = ACTIONS(1994), + [anon_sym_PIPE_AMP] = ACTIONS(1994), + [anon_sym_AMP_AMP] = ACTIONS(1994), + [anon_sym_PIPE_PIPE] = ACTIONS(1994), + [sym__special_characters] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [anon_sym_DOLLAR] = ACTIONS(1994), + [sym_raw_string] = ACTIONS(1994), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1994), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1994), + [anon_sym_BQUOTE] = ACTIONS(1994), + [anon_sym_LT_LPAREN] = ACTIONS(1994), + [anon_sym_GT_LPAREN] = ACTIONS(1994), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1994), + [sym_word] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_LF] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + }, + [1410] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4441), + }, + [1411] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4443), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1412] = { + [sym__concat] = ACTIONS(2000), + [sym_variable_name] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_RPAREN] = ACTIONS(2002), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [anon_sym_PIPE_AMP] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_PIPE_PIPE] = ACTIONS(2002), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2002), + [anon_sym_BQUOTE] = ACTIONS(2002), + [anon_sym_LT_LPAREN] = ACTIONS(2002), + [anon_sym_GT_LPAREN] = ACTIONS(2002), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2002), + [sym_word] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2002), + }, + [1413] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4445), + }, + [1414] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4417), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1415] = { + [sym__concat] = ACTIONS(2156), + [sym_variable_name] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_RPAREN] = ACTIONS(2158), + [anon_sym_SEMI_SEMI] = ACTIONS(2158), + [anon_sym_PIPE_AMP] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_PIPE_PIPE] = ACTIONS(2158), + [sym__special_characters] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2158), + [anon_sym_DOLLAR] = ACTIONS(2158), + [sym_raw_string] = ACTIONS(2158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2158), + [anon_sym_BQUOTE] = ACTIONS(2158), + [anon_sym_LT_LPAREN] = ACTIONS(2158), + [anon_sym_GT_LPAREN] = ACTIONS(2158), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2158), + [sym_word] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym_LF] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2158), + }, + [1416] = { + [sym__concat] = ACTIONS(2358), + [sym_variable_name] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_RPAREN] = ACTIONS(2360), + [anon_sym_SEMI_SEMI] = ACTIONS(2360), + [anon_sym_PIPE_AMP] = ACTIONS(2360), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [sym__special_characters] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [anon_sym_DOLLAR] = ACTIONS(2360), + [sym_raw_string] = ACTIONS(2360), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2360), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2360), + [anon_sym_BQUOTE] = ACTIONS(2360), + [anon_sym_LT_LPAREN] = ACTIONS(2360), + [anon_sym_GT_LPAREN] = ACTIONS(2360), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2360), + [sym_word] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + }, + [1417] = { + [sym__concat] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [anon_sym_PIPE_AMP] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1860), + [anon_sym_PIPE_PIPE] = ACTIONS(1860), + [sym__special_characters] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1860), + [anon_sym_DOLLAR] = ACTIONS(1860), + [sym_raw_string] = ACTIONS(1860), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1860), + [anon_sym_BQUOTE] = ACTIONS(1860), + [anon_sym_LT_LPAREN] = ACTIONS(1860), + [anon_sym_GT_LPAREN] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1860), + [sym_word] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + }, + [1418] = { + [aux_sym_concatenation_repeat1] = STATE(1418), + [sym__concat] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [anon_sym_PIPE_AMP] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1860), + [anon_sym_PIPE_PIPE] = ACTIONS(1860), + [sym__special_characters] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1860), + [anon_sym_DOLLAR] = ACTIONS(1860), + [sym_raw_string] = ACTIONS(1860), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1860), + [anon_sym_BQUOTE] = ACTIONS(1860), + [anon_sym_LT_LPAREN] = ACTIONS(1860), + [anon_sym_GT_LPAREN] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1860), + [sym_word] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + }, + [1419] = { + [sym__concat] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_RPAREN] = ACTIONS(1897), + [anon_sym_SEMI_SEMI] = ACTIONS(1897), + [anon_sym_PIPE_AMP] = ACTIONS(1897), + [anon_sym_AMP_AMP] = ACTIONS(1897), + [anon_sym_PIPE_PIPE] = ACTIONS(1897), + [sym__special_characters] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [anon_sym_DOLLAR] = ACTIONS(1897), + [sym_raw_string] = ACTIONS(1897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1897), + [anon_sym_BQUOTE] = ACTIONS(1897), + [anon_sym_LT_LPAREN] = ACTIONS(1897), + [anon_sym_GT_LPAREN] = ACTIONS(1897), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1897), + [sym_word] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_LF] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), + }, + [1420] = { + [sym_concatenation] = STATE(2106), + [sym_string] = STATE(2105), + [sym_simple_expansion] = STATE(2105), + [sym_string_expansion] = STATE(2105), + [sym_expansion] = STATE(2105), + [sym_command_substitution] = STATE(2105), + [sym_process_substitution] = STATE(2105), + [anon_sym_RBRACE] = ACTIONS(4450), + [sym__special_characters] = ACTIONS(4452), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(4454), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4456), + }, + [1421] = { + [sym__concat] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1942), + [anon_sym_PIPE_AMP] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1942), + [anon_sym_PIPE_PIPE] = ACTIONS(1942), + [sym__special_characters] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [anon_sym_DOLLAR] = ACTIONS(1942), + [sym_raw_string] = ACTIONS(1942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1942), + [anon_sym_BQUOTE] = ACTIONS(1942), + [anon_sym_LT_LPAREN] = ACTIONS(1942), + [anon_sym_GT_LPAREN] = ACTIONS(1942), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1942), + [sym_word] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + }, + [1422] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4458), + }, + [1423] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4460), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1424] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(4462), + [sym_comment] = ACTIONS(56), + }, + [1425] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2112), + [anon_sym_RBRACE] = ACTIONS(4464), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4466), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1426] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2115), + [anon_sym_RBRACE] = ACTIONS(4468), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4470), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1427] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2117), + [anon_sym_RBRACE] = ACTIONS(4450), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4472), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1428] = { + [sym__concat] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(1994), + [anon_sym_RPAREN] = ACTIONS(1994), + [anon_sym_SEMI_SEMI] = ACTIONS(1994), + [anon_sym_PIPE_AMP] = ACTIONS(1994), + [anon_sym_AMP_AMP] = ACTIONS(1994), + [anon_sym_PIPE_PIPE] = ACTIONS(1994), + [sym__special_characters] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [anon_sym_DOLLAR] = ACTIONS(1994), + [sym_raw_string] = ACTIONS(1994), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1994), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1994), + [anon_sym_BQUOTE] = ACTIONS(1994), + [anon_sym_LT_LPAREN] = ACTIONS(1994), + [anon_sym_GT_LPAREN] = ACTIONS(1994), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1994), + [sym_word] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_LF] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + }, + [1429] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4474), + }, + [1430] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4476), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1431] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_RPAREN] = ACTIONS(2002), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [anon_sym_PIPE_AMP] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_PIPE_PIPE] = ACTIONS(2002), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2002), + [anon_sym_BQUOTE] = ACTIONS(2002), + [anon_sym_LT_LPAREN] = ACTIONS(2002), + [anon_sym_GT_LPAREN] = ACTIONS(2002), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2002), + [sym_word] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2002), + }, + [1432] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4478), + }, + [1433] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4450), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1434] = { + [sym__concat] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_RPAREN] = ACTIONS(2158), + [anon_sym_SEMI_SEMI] = ACTIONS(2158), + [anon_sym_PIPE_AMP] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_PIPE_PIPE] = ACTIONS(2158), + [sym__special_characters] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2158), + [anon_sym_DOLLAR] = ACTIONS(2158), + [sym_raw_string] = ACTIONS(2158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2158), + [anon_sym_BQUOTE] = ACTIONS(2158), + [anon_sym_LT_LPAREN] = ACTIONS(2158), + [anon_sym_GT_LPAREN] = ACTIONS(2158), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2158), + [sym_word] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym_LF] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2158), + }, + [1435] = { + [sym__concat] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_RPAREN] = ACTIONS(2360), + [anon_sym_SEMI_SEMI] = ACTIONS(2360), + [anon_sym_PIPE_AMP] = ACTIONS(2360), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [sym__special_characters] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [anon_sym_DOLLAR] = ACTIONS(2360), + [sym_raw_string] = ACTIONS(2360), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2360), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2360), + [anon_sym_BQUOTE] = ACTIONS(2360), + [anon_sym_LT_LPAREN] = ACTIONS(2360), + [anon_sym_GT_LPAREN] = ACTIONS(2360), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2360), + [sym_word] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + }, + [1436] = { + [sym_file_descriptor] = ACTIONS(3235), + [sym__concat] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3237), + [anon_sym_RPAREN] = ACTIONS(3237), + [anon_sym_SEMI_SEMI] = ACTIONS(3237), + [anon_sym_PIPE_AMP] = ACTIONS(3237), + [anon_sym_AMP_AMP] = ACTIONS(3237), + [anon_sym_PIPE_PIPE] = ACTIONS(3237), + [anon_sym_EQ_TILDE] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_GT] = ACTIONS(3237), + [anon_sym_GT_GT] = ACTIONS(3237), + [anon_sym_AMP_GT] = ACTIONS(3237), + [anon_sym_AMP_GT_GT] = ACTIONS(3237), + [anon_sym_LT_AMP] = ACTIONS(3237), + [anon_sym_GT_AMP] = ACTIONS(3237), + [anon_sym_LT_LT] = ACTIONS(3237), + [anon_sym_LT_LT_DASH] = ACTIONS(3237), + [anon_sym_LT_LT_LT] = ACTIONS(3237), + [sym__special_characters] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3237), + [anon_sym_DOLLAR] = ACTIONS(3237), + [sym_raw_string] = ACTIONS(3237), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3237), + [anon_sym_BQUOTE] = ACTIONS(3237), + [anon_sym_LT_LPAREN] = ACTIONS(3237), + [anon_sym_GT_LPAREN] = ACTIONS(3237), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_LF] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), + }, + [1437] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(4480), + [sym_comment] = ACTIONS(56), + }, + [1438] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(4482), + [sym_comment] = ACTIONS(56), + }, + [1439] = { + [anon_sym_RBRACE] = ACTIONS(4482), + [sym_comment] = ACTIONS(56), + }, + [1440] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2124), + [anon_sym_RBRACE] = ACTIONS(4484), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1441] = { + [sym_file_descriptor] = ACTIONS(3297), + [sym__concat] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_RPAREN] = ACTIONS(3299), + [anon_sym_SEMI_SEMI] = ACTIONS(3299), + [anon_sym_PIPE_AMP] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_EQ_TILDE] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_GT] = ACTIONS(3299), + [anon_sym_GT_GT] = ACTIONS(3299), + [anon_sym_AMP_GT] = ACTIONS(3299), + [anon_sym_AMP_GT_GT] = ACTIONS(3299), + [anon_sym_LT_AMP] = ACTIONS(3299), + [anon_sym_GT_AMP] = ACTIONS(3299), + [anon_sym_LT_LT] = ACTIONS(3299), + [anon_sym_LT_LT_DASH] = ACTIONS(3299), + [anon_sym_LT_LT_LT] = ACTIONS(3299), + [sym__special_characters] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3299), + [sym_raw_string] = ACTIONS(3299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3299), + [anon_sym_BQUOTE] = ACTIONS(3299), + [anon_sym_LT_LPAREN] = ACTIONS(3299), + [anon_sym_GT_LPAREN] = ACTIONS(3299), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_LF] = ACTIONS(3299), + [anon_sym_AMP] = ACTIONS(3299), + }, + [1442] = { + [sym_concatenation] = STATE(2127), + [sym_string] = STATE(2126), + [sym_simple_expansion] = STATE(2126), + [sym_string_expansion] = STATE(2126), + [sym_expansion] = STATE(2126), + [sym_command_substitution] = STATE(2126), + [sym_process_substitution] = STATE(2126), + [anon_sym_RBRACE] = ACTIONS(4482), + [sym__special_characters] = ACTIONS(4486), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(4488), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4490), + }, + [1443] = { + [sym_file_descriptor] = ACTIONS(3342), + [sym__concat] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(3344), + [anon_sym_RPAREN] = ACTIONS(3344), + [anon_sym_SEMI_SEMI] = ACTIONS(3344), + [anon_sym_PIPE_AMP] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [anon_sym_EQ_TILDE] = ACTIONS(3344), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_GT_GT] = ACTIONS(3344), + [anon_sym_AMP_GT] = ACTIONS(3344), + [anon_sym_AMP_GT_GT] = ACTIONS(3344), + [anon_sym_LT_AMP] = ACTIONS(3344), + [anon_sym_GT_AMP] = ACTIONS(3344), + [anon_sym_LT_LT] = ACTIONS(3344), + [anon_sym_LT_LT_DASH] = ACTIONS(3344), + [anon_sym_LT_LT_LT] = ACTIONS(3344), + [sym__special_characters] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_DOLLAR] = ACTIONS(3344), + [sym_raw_string] = ACTIONS(3344), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3344), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3344), + [anon_sym_BQUOTE] = ACTIONS(3344), + [anon_sym_LT_LPAREN] = ACTIONS(3344), + [anon_sym_GT_LPAREN] = ACTIONS(3344), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_LF] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3344), + }, + [1444] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4492), + }, + [1445] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4494), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1446] = { + [sym_file_descriptor] = ACTIONS(3350), + [sym__concat] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3352), + [anon_sym_RPAREN] = ACTIONS(3352), + [anon_sym_SEMI_SEMI] = ACTIONS(3352), + [anon_sym_PIPE_AMP] = ACTIONS(3352), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_PIPE_PIPE] = ACTIONS(3352), + [anon_sym_EQ_TILDE] = ACTIONS(3352), + [anon_sym_LT] = ACTIONS(3352), + [anon_sym_GT] = ACTIONS(3352), + [anon_sym_GT_GT] = ACTIONS(3352), + [anon_sym_AMP_GT] = ACTIONS(3352), + [anon_sym_AMP_GT_GT] = ACTIONS(3352), + [anon_sym_LT_AMP] = ACTIONS(3352), + [anon_sym_GT_AMP] = ACTIONS(3352), + [anon_sym_LT_LT] = ACTIONS(3352), + [anon_sym_LT_LT_DASH] = ACTIONS(3352), + [anon_sym_LT_LT_LT] = ACTIONS(3352), + [sym__special_characters] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [anon_sym_DOLLAR] = ACTIONS(3352), + [sym_raw_string] = ACTIONS(3352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3352), + [anon_sym_BQUOTE] = ACTIONS(3352), + [anon_sym_LT_LPAREN] = ACTIONS(3352), + [anon_sym_GT_LPAREN] = ACTIONS(3352), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3352), + [anon_sym_LF] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3352), + }, + [1447] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4496), + }, + [1448] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4498), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1449] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4500), + }, + [1450] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4482), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1451] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2134), + [anon_sym_RBRACE] = ACTIONS(4502), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1452] = { + [sym_file_descriptor] = ACTIONS(3362), + [sym__concat] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(3364), + [anon_sym_RPAREN] = ACTIONS(3364), + [anon_sym_SEMI_SEMI] = ACTIONS(3364), + [anon_sym_PIPE_AMP] = ACTIONS(3364), + [anon_sym_AMP_AMP] = ACTIONS(3364), + [anon_sym_PIPE_PIPE] = ACTIONS(3364), + [anon_sym_EQ_TILDE] = ACTIONS(3364), + [anon_sym_LT] = ACTIONS(3364), + [anon_sym_GT] = ACTIONS(3364), + [anon_sym_GT_GT] = ACTIONS(3364), + [anon_sym_AMP_GT] = ACTIONS(3364), + [anon_sym_AMP_GT_GT] = ACTIONS(3364), + [anon_sym_LT_AMP] = ACTIONS(3364), + [anon_sym_GT_AMP] = ACTIONS(3364), + [anon_sym_LT_LT] = ACTIONS(3364), + [anon_sym_LT_LT_DASH] = ACTIONS(3364), + [anon_sym_LT_LT_LT] = ACTIONS(3364), + [sym__special_characters] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [anon_sym_DOLLAR] = ACTIONS(3364), + [sym_raw_string] = ACTIONS(3364), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3364), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3364), + [anon_sym_BQUOTE] = ACTIONS(3364), + [anon_sym_LT_LPAREN] = ACTIONS(3364), + [anon_sym_GT_LPAREN] = ACTIONS(3364), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_LF] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3364), + }, + [1453] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2136), + [anon_sym_RBRACE] = ACTIONS(4504), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1454] = { + [sym_file_redirect] = STATE(1874), + [sym_file_descriptor] = ACTIONS(2764), + [anon_sym_PIPE] = ACTIONS(2740), + [anon_sym_RPAREN] = ACTIONS(2740), + [anon_sym_SEMI_SEMI] = ACTIONS(2740), + [anon_sym_PIPE_AMP] = ACTIONS(2740), + [anon_sym_AMP_AMP] = ACTIONS(2740), + [anon_sym_PIPE_PIPE] = ACTIONS(2740), + [anon_sym_LT] = ACTIONS(2766), + [anon_sym_GT] = ACTIONS(2766), + [anon_sym_GT_GT] = ACTIONS(2766), + [anon_sym_AMP_GT] = ACTIONS(2766), + [anon_sym_AMP_GT_GT] = ACTIONS(2766), + [anon_sym_LT_AMP] = ACTIONS(2766), + [anon_sym_GT_AMP] = ACTIONS(2766), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2740), + [anon_sym_LF] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(2740), + }, + [1455] = { + [aux_sym_concatenation_repeat1] = STATE(1458), + [sym_file_descriptor] = ACTIONS(1219), + [sym__concat] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(3974), + [anon_sym_RPAREN] = ACTIONS(3974), + [anon_sym_SEMI_SEMI] = ACTIONS(3974), + [anon_sym_PIPE_AMP] = ACTIONS(3974), + [anon_sym_AMP_AMP] = ACTIONS(3974), + [anon_sym_PIPE_PIPE] = ACTIONS(3974), + [anon_sym_LT] = ACTIONS(3974), + [anon_sym_GT] = ACTIONS(3974), + [anon_sym_GT_GT] = ACTIONS(3974), + [anon_sym_AMP_GT] = ACTIONS(3974), + [anon_sym_AMP_GT_GT] = ACTIONS(3974), + [anon_sym_LT_AMP] = ACTIONS(3974), + [anon_sym_GT_AMP] = ACTIONS(3974), + [anon_sym_LT_LT] = ACTIONS(3974), + [anon_sym_LT_LT_DASH] = ACTIONS(3974), + [anon_sym_LT_LT_LT] = ACTIONS(3974), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3974), + [anon_sym_LF] = ACTIONS(3974), + [anon_sym_AMP] = ACTIONS(3974), + }, + [1456] = { + [aux_sym_concatenation_repeat1] = STATE(1458), + [sym_file_descriptor] = ACTIONS(1223), + [sym__concat] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(3976), + [anon_sym_RPAREN] = ACTIONS(3976), + [anon_sym_SEMI_SEMI] = ACTIONS(3976), + [anon_sym_PIPE_AMP] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3976), + [anon_sym_PIPE_PIPE] = ACTIONS(3976), + [anon_sym_LT] = ACTIONS(3976), + [anon_sym_GT] = ACTIONS(3976), + [anon_sym_GT_GT] = ACTIONS(3976), + [anon_sym_AMP_GT] = ACTIONS(3976), + [anon_sym_AMP_GT_GT] = ACTIONS(3976), + [anon_sym_LT_AMP] = ACTIONS(3976), + [anon_sym_GT_AMP] = ACTIONS(3976), + [anon_sym_LT_LT] = ACTIONS(3976), + [anon_sym_LT_LT_DASH] = ACTIONS(3976), + [anon_sym_LT_LT_LT] = ACTIONS(3976), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3976), + [anon_sym_LF] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3976), + }, + [1457] = { + [sym_string] = STATE(2137), + [sym_simple_expansion] = STATE(2137), + [sym_string_expansion] = STATE(2137), + [sym_expansion] = STATE(2137), + [sym_command_substitution] = STATE(2137), + [sym_process_substitution] = STATE(2137), + [sym__special_characters] = ACTIONS(4506), + [anon_sym_DQUOTE] = ACTIONS(1497), + [anon_sym_DOLLAR] = ACTIONS(1499), + [sym_raw_string] = ACTIONS(4508), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1503), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1505), + [anon_sym_BQUOTE] = ACTIONS(1507), + [anon_sym_LT_LPAREN] = ACTIONS(1509), + [anon_sym_GT_LPAREN] = ACTIONS(1509), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4506), + }, + [1458] = { + [aux_sym_concatenation_repeat1] = STATE(2138), + [sym_file_descriptor] = ACTIONS(772), + [sym__concat] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(774), + [anon_sym_RPAREN] = ACTIONS(774), + [anon_sym_SEMI_SEMI] = ACTIONS(774), + [anon_sym_PIPE_AMP] = ACTIONS(774), + [anon_sym_AMP_AMP] = ACTIONS(774), + [anon_sym_PIPE_PIPE] = ACTIONS(774), + [anon_sym_LT] = ACTIONS(774), + [anon_sym_GT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(774), + [anon_sym_AMP_GT] = ACTIONS(774), + [anon_sym_AMP_GT_GT] = ACTIONS(774), + [anon_sym_LT_AMP] = ACTIONS(774), + [anon_sym_GT_AMP] = ACTIONS(774), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_LT_LT_DASH] = ACTIONS(774), + [anon_sym_LT_LT_LT] = ACTIONS(774), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(774), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_AMP] = ACTIONS(774), + }, + [1459] = { + [sym_file_descriptor] = ACTIONS(776), + [sym__concat] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(778), + [anon_sym_RPAREN] = ACTIONS(778), + [anon_sym_SEMI_SEMI] = ACTIONS(778), + [anon_sym_PIPE_AMP] = ACTIONS(778), + [anon_sym_AMP_AMP] = ACTIONS(778), + [anon_sym_PIPE_PIPE] = ACTIONS(778), + [anon_sym_LT] = ACTIONS(778), + [anon_sym_GT] = ACTIONS(778), + [anon_sym_GT_GT] = ACTIONS(778), + [anon_sym_AMP_GT] = ACTIONS(778), + [anon_sym_AMP_GT_GT] = ACTIONS(778), + [anon_sym_LT_AMP] = ACTIONS(778), + [anon_sym_GT_AMP] = ACTIONS(778), + [anon_sym_LT_LT] = ACTIONS(778), + [anon_sym_LT_LT_DASH] = ACTIONS(778), + [anon_sym_LT_LT_LT] = ACTIONS(778), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(778), + [anon_sym_LF] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(778), + }, + [1460] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(4510), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [1461] = { + [sym_file_descriptor] = ACTIONS(808), + [sym__concat] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(810), + [anon_sym_SEMI_SEMI] = ACTIONS(810), + [anon_sym_PIPE_AMP] = ACTIONS(810), + [anon_sym_AMP_AMP] = ACTIONS(810), + [anon_sym_PIPE_PIPE] = ACTIONS(810), + [anon_sym_LT] = ACTIONS(810), + [anon_sym_GT] = ACTIONS(810), + [anon_sym_GT_GT] = ACTIONS(810), + [anon_sym_AMP_GT] = ACTIONS(810), + [anon_sym_AMP_GT_GT] = ACTIONS(810), + [anon_sym_LT_AMP] = ACTIONS(810), + [anon_sym_GT_AMP] = ACTIONS(810), + [anon_sym_LT_LT] = ACTIONS(810), + [anon_sym_LT_LT_DASH] = ACTIONS(810), + [anon_sym_LT_LT_LT] = ACTIONS(810), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(810), + [anon_sym_LF] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(810), + }, + [1462] = { + [sym_file_descriptor] = ACTIONS(812), + [sym__concat] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(814), + [anon_sym_RPAREN] = ACTIONS(814), + [anon_sym_SEMI_SEMI] = ACTIONS(814), + [anon_sym_PIPE_AMP] = ACTIONS(814), + [anon_sym_AMP_AMP] = ACTIONS(814), + [anon_sym_PIPE_PIPE] = ACTIONS(814), + [anon_sym_LT] = ACTIONS(814), + [anon_sym_GT] = ACTIONS(814), + [anon_sym_GT_GT] = ACTIONS(814), + [anon_sym_AMP_GT] = ACTIONS(814), + [anon_sym_AMP_GT_GT] = ACTIONS(814), + [anon_sym_LT_AMP] = ACTIONS(814), + [anon_sym_GT_AMP] = ACTIONS(814), + [anon_sym_LT_LT] = ACTIONS(814), + [anon_sym_LT_LT_DASH] = ACTIONS(814), + [anon_sym_LT_LT_LT] = ACTIONS(814), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(814), + [anon_sym_LF] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(814), + }, + [1463] = { + [sym_file_descriptor] = ACTIONS(816), + [sym__concat] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(818), + [anon_sym_SEMI_SEMI] = ACTIONS(818), + [anon_sym_PIPE_AMP] = ACTIONS(818), + [anon_sym_AMP_AMP] = ACTIONS(818), + [anon_sym_PIPE_PIPE] = ACTIONS(818), + [anon_sym_LT] = ACTIONS(818), + [anon_sym_GT] = ACTIONS(818), + [anon_sym_GT_GT] = ACTIONS(818), + [anon_sym_AMP_GT] = ACTIONS(818), + [anon_sym_AMP_GT_GT] = ACTIONS(818), + [anon_sym_LT_AMP] = ACTIONS(818), + [anon_sym_GT_AMP] = ACTIONS(818), + [anon_sym_LT_LT] = ACTIONS(818), + [anon_sym_LT_LT_DASH] = ACTIONS(818), + [anon_sym_LT_LT_LT] = ACTIONS(818), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_LF] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(818), + }, + [1464] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(4512), + [sym_comment] = ACTIONS(56), + }, + [1465] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2143), + [anon_sym_RBRACE] = ACTIONS(4514), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4516), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1466] = { - [anon_sym_RBRACK] = ACTIONS(4202), + [sym_subscript] = STATE(2147), + [sym_variable_name] = ACTIONS(4518), + [anon_sym_DOLLAR] = ACTIONS(4520), + [anon_sym_DASH] = ACTIONS(4520), [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4522), + [anon_sym_STAR] = ACTIONS(4520), + [anon_sym_AT] = ACTIONS(4520), + [anon_sym_QMARK] = ACTIONS(4520), + [anon_sym_0] = ACTIONS(4524), + [anon_sym__] = ACTIONS(4524), }, [1467] = { - [sym_string] = STATE(1983), - [sym_simple_expansion] = STATE(1983), - [sym_string_expansion] = STATE(1983), - [sym_expansion] = STATE(1983), - [sym_command_substitution] = STATE(1983), - [sym_process_substitution] = STATE(1983), - [sym__special_characters] = ACTIONS(4210), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(4212), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4210), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2150), + [anon_sym_RBRACE] = ACTIONS(4526), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4528), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1468] = { - [sym_file_descriptor] = ACTIONS(4214), - [sym__concat] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_SEMI_SEMI] = ACTIONS(4216), - [anon_sym_PIPE_AMP] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4216), - [anon_sym_PIPE_PIPE] = ACTIONS(4216), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_AMP_GT] = ACTIONS(4216), - [anon_sym_AMP_GT_GT] = ACTIONS(4216), - [anon_sym_LT_AMP] = ACTIONS(4216), - [anon_sym_GT_AMP] = ACTIONS(4216), - [anon_sym_LT_LT] = ACTIONS(4216), - [anon_sym_LT_LT_DASH] = ACTIONS(4216), - [anon_sym_LT_LT_LT] = ACTIONS(4216), - [sym__special_characters] = ACTIONS(4216), - [anon_sym_DQUOTE] = ACTIONS(4216), - [anon_sym_DOLLAR] = ACTIONS(4216), - [sym_raw_string] = ACTIONS(4216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4216), - [anon_sym_BQUOTE] = ACTIONS(4216), - [anon_sym_LT_LPAREN] = ACTIONS(4216), - [anon_sym_GT_LPAREN] = ACTIONS(4216), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(4216), - [anon_sym_SEMI] = ACTIONS(4216), - [anon_sym_LF] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2153), + [anon_sym_RBRACE] = ACTIONS(4530), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4532), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1469] = { - [aux_sym_concatenation_repeat1] = STATE(1984), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), [sym_comment] = ACTIONS(56), }, [1470] = { - [sym__concat] = ACTIONS(764), - [anon_sym_RBRACE] = ACTIONS(764), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4534), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), }, [1471] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(4218), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [1472] = { - [sym__concat] = ACTIONS(796), - [anon_sym_RBRACE] = ACTIONS(796), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(4534), [sym_comment] = ACTIONS(56), }, + [1472] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(4534), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, [1473] = { - [sym__concat] = ACTIONS(800), - [anon_sym_RBRACE] = ACTIONS(800), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4536), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), [sym_comment] = ACTIONS(56), }, [1474] = { - [sym__concat] = ACTIONS(804), - [anon_sym_RBRACE] = ACTIONS(804), + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4536), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), }, [1475] = { - [sym_file_descriptor] = ACTIONS(4220), - [sym__concat] = ACTIONS(4220), - [anon_sym_PIPE] = ACTIONS(4222), - [anon_sym_SEMI_SEMI] = ACTIONS(4222), - [anon_sym_PIPE_AMP] = ACTIONS(4222), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [anon_sym_LT] = ACTIONS(4222), - [anon_sym_GT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4222), - [anon_sym_AMP_GT] = ACTIONS(4222), - [anon_sym_AMP_GT_GT] = ACTIONS(4222), - [anon_sym_LT_AMP] = ACTIONS(4222), - [anon_sym_GT_AMP] = ACTIONS(4222), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_LT_LT_DASH] = ACTIONS(4222), - [anon_sym_LT_LT_LT] = ACTIONS(4222), - [sym__special_characters] = ACTIONS(4222), - [anon_sym_DQUOTE] = ACTIONS(4222), - [anon_sym_DOLLAR] = ACTIONS(4222), - [sym_raw_string] = ACTIONS(4222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4222), - [anon_sym_BQUOTE] = ACTIONS(4222), - [anon_sym_LT_LPAREN] = ACTIONS(4222), - [anon_sym_GT_LPAREN] = ACTIONS(4222), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(4222), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_LF] = ACTIONS(4222), - [anon_sym_AMP] = ACTIONS(4222), + [anon_sym_PIPE] = ACTIONS(4538), + [anon_sym_RPAREN] = ACTIONS(4538), + [anon_sym_SEMI_SEMI] = ACTIONS(4538), + [anon_sym_PIPE_AMP] = ACTIONS(4538), + [anon_sym_AMP_AMP] = ACTIONS(4538), + [anon_sym_PIPE_PIPE] = ACTIONS(4538), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4538), + [anon_sym_LF] = ACTIONS(4538), + [anon_sym_AMP] = ACTIONS(4538), }, [1476] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(4224), - [sym_comment] = ACTIONS(56), + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(825), + [sym_file_descriptor] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(4036), + [anon_sym_RPAREN] = ACTIONS(4036), + [anon_sym_SEMI_SEMI] = ACTIONS(4036), + [anon_sym_PIPE_AMP] = ACTIONS(4036), + [anon_sym_AMP_AMP] = ACTIONS(4036), + [anon_sym_PIPE_PIPE] = ACTIONS(4036), + [anon_sym_LT] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(554), + [anon_sym_GT_GT] = ACTIONS(554), + [anon_sym_AMP_GT] = ACTIONS(554), + [anon_sym_AMP_GT_GT] = ACTIONS(554), + [anon_sym_LT_AMP] = ACTIONS(554), + [anon_sym_GT_AMP] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(358), + [anon_sym_LT_LT_DASH] = ACTIONS(358), + [anon_sym_LT_LT_LT] = ACTIONS(556), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4036), + [anon_sym_LF] = ACTIONS(4036), + [anon_sym_AMP] = ACTIONS(4036), }, [1477] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1988), - [anon_sym_RBRACE] = ACTIONS(4226), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym__concat] = ACTIONS(3235), + [anon_sym_EQ_TILDE] = ACTIONS(4540), + [anon_sym_RBRACK] = ACTIONS(3235), + [sym__special_characters] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_DOLLAR] = ACTIONS(4540), + [sym_raw_string] = ACTIONS(3235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3235), + [anon_sym_BQUOTE] = ACTIONS(3235), + [anon_sym_LT_LPAREN] = ACTIONS(3235), + [anon_sym_GT_LPAREN] = ACTIONS(3235), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3237), }, [1478] = { - [sym_subscript] = STATE(1992), - [sym_variable_name] = ACTIONS(4228), - [anon_sym_DOLLAR] = ACTIONS(4230), - [anon_sym_DASH] = ACTIONS(4230), + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(4542), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4232), - [anon_sym_STAR] = ACTIONS(4230), - [anon_sym_AT] = ACTIONS(4230), - [anon_sym_QMARK] = ACTIONS(4230), - [anon_sym_0] = ACTIONS(4234), - [anon_sym__] = ACTIONS(4234), }, [1479] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1994), - [anon_sym_RBRACE] = ACTIONS(4236), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(4544), + [sym_comment] = ACTIONS(56), }, [1480] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(1996), - [anon_sym_RBRACE] = ACTIONS(4238), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(4544), + [sym_comment] = ACTIONS(56), }, [1481] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4240), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2159), + [anon_sym_RBRACE] = ACTIONS(4546), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1482] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4240), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [sym__concat] = ACTIONS(3297), + [anon_sym_EQ_TILDE] = ACTIONS(4548), + [anon_sym_RBRACK] = ACTIONS(3297), + [sym__special_characters] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(4548), + [sym_raw_string] = ACTIONS(3297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3297), + [anon_sym_BQUOTE] = ACTIONS(3297), + [anon_sym_LT_LPAREN] = ACTIONS(3297), + [anon_sym_GT_LPAREN] = ACTIONS(3297), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_word] = ACTIONS(3299), }, [1483] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(4240), + [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(4544), + [sym__special_characters] = ACTIONS(4550), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(4552), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4554), }, [1484] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(4240), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [sym__concat] = ACTIONS(3342), + [anon_sym_EQ_TILDE] = ACTIONS(4556), + [anon_sym_RBRACK] = ACTIONS(3342), + [sym__special_characters] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(4556), + [sym_raw_string] = ACTIONS(3342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3342), + [anon_sym_BQUOTE] = ACTIONS(3342), + [anon_sym_LT_LPAREN] = ACTIONS(3342), + [anon_sym_GT_LPAREN] = ACTIONS(3342), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_word] = ACTIONS(3344), }, [1485] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4242), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4558), }, [1486] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4242), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4560), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1487] = { - [sym__concat] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(2816), - [sym__special_characters] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), - [anon_sym_COLON] = ACTIONS(2816), - [anon_sym_COLON_QMARK] = ACTIONS(2816), - [anon_sym_COLON_DASH] = ACTIONS(2816), - [anon_sym_PERCENT] = ACTIONS(2816), - [anon_sym_SLASH] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2816), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_LT_LPAREN] = ACTIONS(1790), - [anon_sym_GT_LPAREN] = ACTIONS(1790), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1792), + [sym__concat] = ACTIONS(3350), + [anon_sym_EQ_TILDE] = ACTIONS(4562), + [anon_sym_RBRACK] = ACTIONS(3350), + [sym__special_characters] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_DOLLAR] = ACTIONS(4562), + [sym_raw_string] = ACTIONS(3350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3350), + [anon_sym_BQUOTE] = ACTIONS(3350), + [anon_sym_LT_LPAREN] = ACTIONS(3350), + [anon_sym_GT_LPAREN] = ACTIONS(3350), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3352), }, [1488] = { - [aux_sym_concatenation_repeat1] = STATE(1488), - [sym__concat] = ACTIONS(4244), - [anon_sym_RBRACE] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(2816), - [sym__special_characters] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(1790), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), - [anon_sym_COLON] = ACTIONS(2816), - [anon_sym_COLON_QMARK] = ACTIONS(2816), - [anon_sym_COLON_DASH] = ACTIONS(2816), - [anon_sym_PERCENT] = ACTIONS(2816), - [anon_sym_SLASH] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2816), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_LT_LPAREN] = ACTIONS(1790), - [anon_sym_GT_LPAREN] = ACTIONS(1790), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1792), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4564), }, [1489] = { - [sym__concat] = ACTIONS(1821), - [anon_sym_RBRACE] = ACTIONS(1821), - [anon_sym_EQ] = ACTIONS(2821), - [sym__special_characters] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1821), - [anon_sym_DOLLAR] = ACTIONS(2821), - [sym_raw_string] = ACTIONS(1821), - [anon_sym_POUND] = ACTIONS(1821), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1821), - [anon_sym_COLON] = ACTIONS(2821), - [anon_sym_COLON_QMARK] = ACTIONS(2821), - [anon_sym_COLON_DASH] = ACTIONS(2821), - [anon_sym_PERCENT] = ACTIONS(2821), - [anon_sym_SLASH] = ACTIONS(2821), - [anon_sym_DASH] = ACTIONS(2821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1821), - [anon_sym_BQUOTE] = ACTIONS(1821), - [anon_sym_LT_LPAREN] = ACTIONS(1821), - [anon_sym_GT_LPAREN] = ACTIONS(1821), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1823), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4566), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1490] = { - [sym_concatenation] = STATE(2002), - [sym_string] = STATE(2001), - [sym_simple_expansion] = STATE(2001), - [sym_string_expansion] = STATE(2001), - [sym_expansion] = STATE(2001), - [sym_command_substitution] = STATE(2001), - [sym_process_substitution] = STATE(2001), - [anon_sym_RBRACE] = ACTIONS(4247), - [sym__special_characters] = ACTIONS(4249), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(4251), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4253), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4568), }, [1491] = { - [sym__concat] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(2831), - [sym__special_characters] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(2831), - [sym_raw_string] = ACTIONS(1866), - [anon_sym_POUND] = ACTIONS(1866), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1866), - [anon_sym_COLON] = ACTIONS(2831), - [anon_sym_COLON_QMARK] = ACTIONS(2831), - [anon_sym_COLON_DASH] = ACTIONS(2831), - [anon_sym_PERCENT] = ACTIONS(2831), - [anon_sym_SLASH] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2831), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1866), - [anon_sym_BQUOTE] = ACTIONS(1866), - [anon_sym_LT_LPAREN] = ACTIONS(1866), - [anon_sym_GT_LPAREN] = ACTIONS(1866), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1868), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4544), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1492] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4255), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2169), + [anon_sym_RBRACE] = ACTIONS(4570), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1493] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(4257), + [sym__concat] = ACTIONS(3362), + [anon_sym_EQ_TILDE] = ACTIONS(4572), + [anon_sym_RBRACK] = ACTIONS(3362), + [sym__special_characters] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3362), + [anon_sym_DOLLAR] = ACTIONS(4572), + [sym_raw_string] = ACTIONS(3362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3362), + [anon_sym_BQUOTE] = ACTIONS(3362), + [anon_sym_LT_LPAREN] = ACTIONS(3362), + [anon_sym_GT_LPAREN] = ACTIONS(3362), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3364), }, [1494] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2006), - [anon_sym_RBRACE] = ACTIONS(4259), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2171), + [anon_sym_RBRACE] = ACTIONS(4574), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1495] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2008), - [anon_sym_RBRACE] = ACTIONS(4261), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym__concat] = ACTIONS(3235), + [anon_sym_EQ_TILDE] = ACTIONS(4540), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3235), + [sym__special_characters] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_DOLLAR] = ACTIONS(4540), + [sym_raw_string] = ACTIONS(3235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3235), + [anon_sym_BQUOTE] = ACTIONS(3235), + [anon_sym_LT_LPAREN] = ACTIONS(3235), + [anon_sym_GT_LPAREN] = ACTIONS(3235), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3237), }, [1496] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2009), - [anon_sym_RBRACE] = ACTIONS(4247), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(4576), + [sym_comment] = ACTIONS(56), }, [1497] = { - [sym__concat] = ACTIONS(1910), - [anon_sym_RBRACE] = ACTIONS(1910), - [anon_sym_EQ] = ACTIONS(2841), - [sym__special_characters] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1910), - [anon_sym_DOLLAR] = ACTIONS(2841), - [sym_raw_string] = ACTIONS(1910), - [anon_sym_POUND] = ACTIONS(1910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1910), - [anon_sym_COLON] = ACTIONS(2841), - [anon_sym_COLON_QMARK] = ACTIONS(2841), - [anon_sym_COLON_DASH] = ACTIONS(2841), - [anon_sym_PERCENT] = ACTIONS(2841), - [anon_sym_SLASH] = ACTIONS(2841), - [anon_sym_DASH] = ACTIONS(2841), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1910), - [anon_sym_BQUOTE] = ACTIONS(1910), - [anon_sym_LT_LPAREN] = ACTIONS(1910), - [anon_sym_GT_LPAREN] = ACTIONS(1910), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1912), + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(4578), + [sym_comment] = ACTIONS(56), }, [1498] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4263), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(4578), + [sym_comment] = ACTIONS(56), }, [1499] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_RBRACE] = ACTIONS(1916), - [anon_sym_EQ] = ACTIONS(2845), - [sym__special_characters] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(2845), - [sym_raw_string] = ACTIONS(1916), - [anon_sym_POUND] = ACTIONS(1916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), - [anon_sym_COLON] = ACTIONS(2845), - [anon_sym_COLON_QMARK] = ACTIONS(2845), - [anon_sym_COLON_DASH] = ACTIONS(2845), - [anon_sym_PERCENT] = ACTIONS(2845), - [anon_sym_SLASH] = ACTIONS(2845), - [anon_sym_DASH] = ACTIONS(2845), - [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(178), - [sym_word] = ACTIONS(1918), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2175), + [anon_sym_RBRACE] = ACTIONS(4580), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1500] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4247), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym__concat] = ACTIONS(3297), + [anon_sym_EQ_TILDE] = ACTIONS(4548), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3297), + [sym__special_characters] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(4548), + [sym_raw_string] = ACTIONS(3297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3297), + [anon_sym_BQUOTE] = ACTIONS(3297), + [anon_sym_LT_LPAREN] = ACTIONS(3297), + [anon_sym_GT_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3299), }, [1501] = { - [sym__concat] = ACTIONS(2064), - [anon_sym_RBRACE] = ACTIONS(2064), - [anon_sym_EQ] = ACTIONS(2847), - [sym__special_characters] = ACTIONS(2066), - [anon_sym_DQUOTE] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2847), - [sym_raw_string] = ACTIONS(2064), - [anon_sym_POUND] = ACTIONS(2064), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2064), - [anon_sym_COLON] = ACTIONS(2847), - [anon_sym_COLON_QMARK] = ACTIONS(2847), - [anon_sym_COLON_DASH] = ACTIONS(2847), - [anon_sym_PERCENT] = ACTIONS(2847), - [anon_sym_SLASH] = ACTIONS(2847), - [anon_sym_DASH] = ACTIONS(2847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2064), - [anon_sym_BQUOTE] = ACTIONS(2064), - [anon_sym_LT_LPAREN] = ACTIONS(2064), - [anon_sym_GT_LPAREN] = ACTIONS(2064), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(2066), + [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(4578), + [sym__special_characters] = ACTIONS(4582), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(4584), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4586), }, [1502] = { - [sym__concat] = ACTIONS(2228), - [anon_sym_RBRACE] = ACTIONS(2228), - [anon_sym_EQ] = ACTIONS(2849), - [sym__special_characters] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2228), - [anon_sym_DOLLAR] = ACTIONS(2849), - [sym_raw_string] = ACTIONS(2228), - [anon_sym_POUND] = ACTIONS(2228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2228), - [anon_sym_COLON] = ACTIONS(2849), - [anon_sym_COLON_QMARK] = ACTIONS(2849), - [anon_sym_COLON_DASH] = ACTIONS(2849), - [anon_sym_PERCENT] = ACTIONS(2849), - [anon_sym_SLASH] = ACTIONS(2849), - [anon_sym_DASH] = ACTIONS(2849), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2228), - [anon_sym_BQUOTE] = ACTIONS(2228), - [anon_sym_LT_LPAREN] = ACTIONS(2228), - [anon_sym_GT_LPAREN] = ACTIONS(2228), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(2230), + [sym__concat] = ACTIONS(3342), + [anon_sym_EQ_TILDE] = ACTIONS(4556), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3342), + [sym__special_characters] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(4556), + [sym_raw_string] = ACTIONS(3342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3342), + [anon_sym_BQUOTE] = ACTIONS(3342), + [anon_sym_LT_LPAREN] = ACTIONS(3342), + [anon_sym_GT_LPAREN] = ACTIONS(3342), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3344), }, [1503] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4265), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4588), }, [1504] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4267), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4590), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1505] = { - [anon_sym_RBRACE] = ACTIONS(4267), + [sym__concat] = ACTIONS(3350), + [anon_sym_EQ_TILDE] = ACTIONS(4562), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3350), + [sym__special_characters] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_DOLLAR] = ACTIONS(4562), + [sym_raw_string] = ACTIONS(3350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3350), + [anon_sym_BQUOTE] = ACTIONS(3350), + [anon_sym_LT_LPAREN] = ACTIONS(3350), + [anon_sym_GT_LPAREN] = ACTIONS(3350), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3352), }, [1506] = { - [sym_file_descriptor] = ACTIONS(4269), - [sym__concat] = ACTIONS(4269), - [anon_sym_PIPE] = ACTIONS(4271), - [anon_sym_SEMI_SEMI] = ACTIONS(4271), - [anon_sym_PIPE_AMP] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4271), - [anon_sym_GT] = ACTIONS(4271), - [anon_sym_GT_GT] = ACTIONS(4271), - [anon_sym_AMP_GT] = ACTIONS(4271), - [anon_sym_AMP_GT_GT] = ACTIONS(4271), - [anon_sym_LT_AMP] = ACTIONS(4271), - [anon_sym_GT_AMP] = ACTIONS(4271), - [anon_sym_LT_LT] = ACTIONS(4271), - [anon_sym_LT_LT_DASH] = ACTIONS(4271), - [anon_sym_LT_LT_LT] = ACTIONS(4271), - [sym__special_characters] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4271), - [sym_raw_string] = ACTIONS(4271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4271), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4271), - [anon_sym_BQUOTE] = ACTIONS(4271), - [anon_sym_LT_LPAREN] = ACTIONS(4271), - [anon_sym_GT_LPAREN] = ACTIONS(4271), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(4271), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_LF] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4271), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4592), }, [1507] = { - [sym_file_descriptor] = ACTIONS(4273), - [sym__concat] = ACTIONS(4273), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_SEMI_SEMI] = ACTIONS(4275), - [anon_sym_PIPE_AMP] = ACTIONS(4275), - [anon_sym_AMP_AMP] = ACTIONS(4275), - [anon_sym_PIPE_PIPE] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_GT_GT] = ACTIONS(4275), - [anon_sym_AMP_GT] = ACTIONS(4275), - [anon_sym_AMP_GT_GT] = ACTIONS(4275), - [anon_sym_LT_AMP] = ACTIONS(4275), - [anon_sym_GT_AMP] = ACTIONS(4275), - [anon_sym_LT_LT] = ACTIONS(4275), - [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(4275), - [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(178), - [sym_word] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_LF] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4275), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4594), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1508] = { - [sym_file_descriptor] = ACTIONS(2382), - [sym_variable_name] = ACTIONS(2382), - [anon_sym_PIPE] = ACTIONS(4277), - [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(4277), - [anon_sym_GT] = ACTIONS(4277), - [anon_sym_GT_GT] = ACTIONS(2382), - [anon_sym_AMP_GT] = ACTIONS(4277), - [anon_sym_AMP_GT_GT] = ACTIONS(2382), - [anon_sym_LT_AMP] = ACTIONS(2382), - [anon_sym_GT_AMP] = ACTIONS(2382), - [sym__special_characters] = ACTIONS(4277), - [anon_sym_DQUOTE] = ACTIONS(2382), - [anon_sym_DOLLAR] = ACTIONS(4277), - [sym_raw_string] = ACTIONS(2382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2382), - [anon_sym_BQUOTE] = ACTIONS(2382), - [anon_sym_LT_LPAREN] = ACTIONS(2382), - [anon_sym_GT_LPAREN] = ACTIONS(2382), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4277), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4596), }, [1509] = { - [sym_concatenation] = STATE(642), - [sym_string] = STATE(637), - [sym_simple_expansion] = STATE(637), - [sym_string_expansion] = STATE(637), - [sym_expansion] = STATE(637), - [sym_command_substitution] = STATE(637), - [sym_process_substitution] = STATE(637), - [aux_sym_for_statement_repeat1] = STATE(1202), - [anon_sym_RPAREN] = ACTIONS(4279), - [sym__special_characters] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1245), - [sym_raw_string] = ACTIONS(1247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1249), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), - [anon_sym_BQUOTE] = ACTIONS(1253), - [anon_sym_LT_LPAREN] = ACTIONS(1255), - [anon_sym_GT_LPAREN] = ACTIONS(1255), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1257), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4578), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1510] = { - [sym_string] = STATE(2014), - [sym_simple_expansion] = STATE(2014), - [sym_string_expansion] = STATE(2014), - [sym_expansion] = STATE(2014), - [sym_command_substitution] = STATE(2014), - [sym_process_substitution] = STATE(2014), - [sym__special_characters] = ACTIONS(4281), - [anon_sym_DQUOTE] = ACTIONS(1926), - [anon_sym_DOLLAR] = ACTIONS(1928), - [sym_raw_string] = ACTIONS(4283), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1932), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1934), - [anon_sym_BQUOTE] = ACTIONS(1936), - [anon_sym_LT_LPAREN] = ACTIONS(1938), - [anon_sym_GT_LPAREN] = ACTIONS(1938), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4281), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2185), + [anon_sym_RBRACE] = ACTIONS(4598), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1511] = { - [aux_sym_concatenation_repeat1] = STATE(2015), - [sym_file_descriptor] = ACTIONS(760), - [sym__concat] = ACTIONS(3088), - [sym_variable_name] = ACTIONS(760), - [anon_sym_PIPE] = ACTIONS(1501), - [anon_sym_RPAREN] = ACTIONS(760), - [anon_sym_PIPE_AMP] = ACTIONS(760), - [anon_sym_AMP_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(760), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(760), - [anon_sym_AMP_GT] = ACTIONS(1501), - [anon_sym_AMP_GT_GT] = ACTIONS(760), - [anon_sym_LT_AMP] = ACTIONS(760), - [anon_sym_GT_AMP] = ACTIONS(760), - [sym__special_characters] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(760), - [anon_sym_DOLLAR] = ACTIONS(1501), - [sym_raw_string] = ACTIONS(760), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(760), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(760), - [anon_sym_BQUOTE] = ACTIONS(760), - [anon_sym_LT_LPAREN] = ACTIONS(760), - [anon_sym_GT_LPAREN] = ACTIONS(760), + [sym__concat] = ACTIONS(3362), + [anon_sym_EQ_TILDE] = ACTIONS(4572), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3362), + [sym__special_characters] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3362), + [anon_sym_DOLLAR] = ACTIONS(4572), + [sym_raw_string] = ACTIONS(3362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3362), + [anon_sym_BQUOTE] = ACTIONS(3362), + [anon_sym_LT_LPAREN] = ACTIONS(3362), + [anon_sym_GT_LPAREN] = ACTIONS(3362), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1501), + [sym_word] = ACTIONS(3364), }, [1512] = { - [sym_file_descriptor] = ACTIONS(764), - [sym__concat] = ACTIONS(764), - [sym_variable_name] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_PIPE_AMP] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(1503), - [anon_sym_GT_GT] = ACTIONS(764), - [anon_sym_AMP_GT] = ACTIONS(1503), - [anon_sym_AMP_GT_GT] = ACTIONS(764), - [anon_sym_LT_AMP] = ACTIONS(764), - [anon_sym_GT_AMP] = ACTIONS(764), - [sym__special_characters] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(1503), - [sym_raw_string] = ACTIONS(764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(764), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(764), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_LT_LPAREN] = ACTIONS(764), - [anon_sym_GT_LPAREN] = ACTIONS(764), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1503), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2187), + [anon_sym_RBRACE] = ACTIONS(4600), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1513] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(4285), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [sym_variable_name] = ACTIONS(2517), + [anon_sym_PIPE] = ACTIONS(2519), + [anon_sym_RPAREN] = ACTIONS(2519), + [anon_sym_SEMI_SEMI] = ACTIONS(2519), + [anon_sym_PIPE_AMP] = ACTIONS(2519), + [anon_sym_AMP_AMP] = ACTIONS(2519), + [anon_sym_PIPE_PIPE] = ACTIONS(2519), + [sym__special_characters] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(2519), + [anon_sym_DOLLAR] = ACTIONS(2519), + [sym_raw_string] = ACTIONS(2519), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2519), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2519), + [anon_sym_BQUOTE] = ACTIONS(2519), + [anon_sym_LT_LPAREN] = ACTIONS(2519), + [anon_sym_GT_LPAREN] = ACTIONS(2519), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2519), + [sym_word] = ACTIONS(2519), + [anon_sym_SEMI] = ACTIONS(2519), + [anon_sym_LF] = ACTIONS(2519), + [anon_sym_AMP] = ACTIONS(2519), }, [1514] = { - [sym_file_descriptor] = ACTIONS(796), - [sym__concat] = ACTIONS(796), - [sym_variable_name] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_RPAREN] = ACTIONS(796), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_GT_GT] = ACTIONS(796), - [anon_sym_AMP_GT] = ACTIONS(1507), - [anon_sym_AMP_GT_GT] = ACTIONS(796), - [anon_sym_LT_AMP] = ACTIONS(796), - [anon_sym_GT_AMP] = ACTIONS(796), - [sym__special_characters] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(1507), - [sym_raw_string] = ACTIONS(796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [anon_sym_LT_LPAREN] = ACTIONS(796), - [anon_sym_GT_LPAREN] = ACTIONS(796), + [sym_concatenation] = STATE(660), + [sym_string] = STATE(655), + [sym_simple_expansion] = STATE(655), + [sym_string_expansion] = STATE(655), + [sym_expansion] = STATE(655), + [sym_command_substitution] = STATE(655), + [sym_process_substitution] = STATE(655), + [aux_sym_for_statement_repeat1] = STATE(1269), + [anon_sym_RPAREN] = ACTIONS(4602), + [sym__special_characters] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_DOLLAR] = ACTIONS(1265), + [sym_raw_string] = ACTIONS(1267), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1269), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1273), + [anon_sym_LT_LPAREN] = ACTIONS(1275), + [anon_sym_GT_LPAREN] = ACTIONS(1275), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1507), + [sym_word] = ACTIONS(1277), }, [1515] = { - [sym_file_descriptor] = ACTIONS(800), - [sym__concat] = ACTIONS(800), - [sym_variable_name] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_RPAREN] = ACTIONS(800), - [anon_sym_PIPE_AMP] = ACTIONS(800), - [anon_sym_AMP_AMP] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_GT_GT] = ACTIONS(800), - [anon_sym_AMP_GT] = ACTIONS(1509), - [anon_sym_AMP_GT_GT] = ACTIONS(800), - [anon_sym_LT_AMP] = ACTIONS(800), - [anon_sym_GT_AMP] = ACTIONS(800), - [sym__special_characters] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR] = ACTIONS(1509), - [sym_raw_string] = ACTIONS(800), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(800), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(800), - [anon_sym_BQUOTE] = ACTIONS(800), - [anon_sym_LT_LPAREN] = ACTIONS(800), - [anon_sym_GT_LPAREN] = ACTIONS(800), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1509), + [sym__concat] = ACTIONS(3235), + [sym_variable_name] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3237), + [anon_sym_SEMI_SEMI] = ACTIONS(3237), + [anon_sym_PIPE_AMP] = ACTIONS(3237), + [anon_sym_AMP_AMP] = ACTIONS(3237), + [anon_sym_PIPE_PIPE] = ACTIONS(3237), + [sym__special_characters] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3237), + [anon_sym_DOLLAR] = ACTIONS(3237), + [sym_raw_string] = ACTIONS(3237), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3237), + [anon_sym_BQUOTE] = ACTIONS(3237), + [anon_sym_LT_LPAREN] = ACTIONS(3237), + [anon_sym_GT_LPAREN] = ACTIONS(3237), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3237), + [sym_word] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_LF] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), }, [1516] = { - [sym_file_descriptor] = ACTIONS(804), - [sym__concat] = ACTIONS(804), - [sym_variable_name] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_RPAREN] = ACTIONS(804), - [anon_sym_PIPE_AMP] = ACTIONS(804), - [anon_sym_AMP_AMP] = ACTIONS(804), - [anon_sym_PIPE_PIPE] = ACTIONS(804), - [anon_sym_LT] = ACTIONS(1511), - [anon_sym_GT] = ACTIONS(1511), - [anon_sym_GT_GT] = ACTIONS(804), - [anon_sym_AMP_GT] = ACTIONS(1511), - [anon_sym_AMP_GT_GT] = ACTIONS(804), - [anon_sym_LT_AMP] = ACTIONS(804), - [anon_sym_GT_AMP] = ACTIONS(804), - [sym__special_characters] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(804), - [anon_sym_DOLLAR] = ACTIONS(1511), - [sym_raw_string] = ACTIONS(804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(804), - [anon_sym_BQUOTE] = ACTIONS(804), - [anon_sym_LT_LPAREN] = ACTIONS(804), - [anon_sym_GT_LPAREN] = ACTIONS(804), + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(4604), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1511), }, [1517] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(4287), + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(4606), [sym_comment] = ACTIONS(56), }, [1518] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2019), - [anon_sym_RBRACE] = ACTIONS(4289), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(4606), + [sym_comment] = ACTIONS(56), }, [1519] = { - [sym_subscript] = STATE(2023), - [sym_variable_name] = ACTIONS(4291), - [anon_sym_DOLLAR] = ACTIONS(4293), - [anon_sym_DASH] = ACTIONS(4293), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4295), - [anon_sym_STAR] = ACTIONS(4293), - [anon_sym_AT] = ACTIONS(4293), - [anon_sym_QMARK] = ACTIONS(4293), - [anon_sym_0] = ACTIONS(4297), - [anon_sym__] = ACTIONS(4297), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2192), + [anon_sym_RBRACE] = ACTIONS(4608), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1520] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2025), - [anon_sym_RBRACE] = ACTIONS(4299), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym__concat] = ACTIONS(3297), + [sym_variable_name] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_SEMI_SEMI] = ACTIONS(3299), + [anon_sym_PIPE_AMP] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [sym__special_characters] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3299), + [sym_raw_string] = ACTIONS(3299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3299), + [anon_sym_BQUOTE] = ACTIONS(3299), + [anon_sym_LT_LPAREN] = ACTIONS(3299), + [anon_sym_GT_LPAREN] = ACTIONS(3299), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3299), + [sym_word] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_LF] = ACTIONS(3299), + [anon_sym_AMP] = ACTIONS(3299), }, [1521] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2027), - [anon_sym_RBRACE] = ACTIONS(4301), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_concatenation] = STATE(2195), + [sym_string] = STATE(2194), + [sym_simple_expansion] = STATE(2194), + [sym_string_expansion] = STATE(2194), + [sym_expansion] = STATE(2194), + [sym_command_substitution] = STATE(2194), + [sym_process_substitution] = STATE(2194), + [anon_sym_RBRACE] = ACTIONS(4606), + [sym__special_characters] = ACTIONS(4610), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(4612), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4614), }, [1522] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4303), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(3342), + [sym_variable_name] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(3344), + [anon_sym_SEMI_SEMI] = ACTIONS(3344), + [anon_sym_PIPE_AMP] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [sym__special_characters] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_DOLLAR] = ACTIONS(3344), + [sym_raw_string] = ACTIONS(3344), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3344), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3344), + [anon_sym_BQUOTE] = ACTIONS(3344), + [anon_sym_LT_LPAREN] = ACTIONS(3344), + [anon_sym_GT_LPAREN] = ACTIONS(3344), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3344), + [sym_word] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_LF] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3344), }, [1523] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4303), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4616), }, [1524] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(4303), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4618), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1525] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(4303), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym__concat] = ACTIONS(3350), + [sym_variable_name] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3352), + [anon_sym_SEMI_SEMI] = ACTIONS(3352), + [anon_sym_PIPE_AMP] = ACTIONS(3352), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_PIPE_PIPE] = ACTIONS(3352), + [sym__special_characters] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [anon_sym_DOLLAR] = ACTIONS(3352), + [sym_raw_string] = ACTIONS(3352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3352), + [anon_sym_BQUOTE] = ACTIONS(3352), + [anon_sym_LT_LPAREN] = ACTIONS(3352), + [anon_sym_GT_LPAREN] = ACTIONS(3352), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3352), + [sym_word] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3352), + [anon_sym_LF] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3352), }, [1526] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4305), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4620), }, [1527] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4305), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4622), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1528] = { - [sym_concatenation] = STATE(670), - [sym_string] = STATE(665), - [sym_simple_expansion] = STATE(665), - [sym_string_expansion] = STATE(665), - [sym_expansion] = STATE(665), - [sym_command_substitution] = STATE(665), - [sym_process_substitution] = STATE(665), - [aux_sym_for_statement_repeat1] = STATE(1238), - [anon_sym_SEMI_SEMI] = ACTIONS(4307), - [sym__special_characters] = ACTIONS(2456), - [anon_sym_DQUOTE] = ACTIONS(2458), - [anon_sym_DOLLAR] = ACTIONS(2460), - [sym_raw_string] = ACTIONS(2462), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2464), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2466), - [anon_sym_BQUOTE] = ACTIONS(2468), - [anon_sym_LT_LPAREN] = ACTIONS(2470), - [anon_sym_GT_LPAREN] = ACTIONS(2470), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(4307), - [anon_sym_LF] = ACTIONS(4307), - [anon_sym_AMP] = ACTIONS(4307), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4624), }, [1529] = { - [sym_file_descriptor] = ACTIONS(2472), - [anon_sym_PIPE] = ACTIONS(4309), - [anon_sym_RPAREN] = ACTIONS(2472), - [anon_sym_PIPE_AMP] = ACTIONS(2472), - [anon_sym_AMP_AMP] = ACTIONS(2472), - [anon_sym_PIPE_PIPE] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(4309), - [anon_sym_GT] = ACTIONS(4309), - [anon_sym_GT_GT] = ACTIONS(2472), - [anon_sym_AMP_GT] = ACTIONS(4309), - [anon_sym_AMP_GT_GT] = ACTIONS(2472), - [anon_sym_LT_AMP] = ACTIONS(2472), - [anon_sym_GT_AMP] = ACTIONS(2472), - [anon_sym_LT_LT] = ACTIONS(4309), - [anon_sym_LT_LT_DASH] = ACTIONS(2472), - [anon_sym_LT_LT_LT] = ACTIONS(2472), - [anon_sym_BQUOTE] = ACTIONS(2472), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4606), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1530] = { - [sym__terminated_statement] = STATE(673), - [sym_for_statement] = STATE(674), - [sym_while_statement] = STATE(674), - [sym_if_statement] = STATE(674), - [sym_case_statement] = STATE(674), - [sym_function_definition] = STATE(674), - [sym_subshell] = STATE(674), - [sym_pipeline] = STATE(674), - [sym_list] = STATE(674), - [sym_bracket_command] = STATE(674), - [sym_command] = STATE(674), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(675), - [sym_declaration_command] = STATE(674), - [sym_unset_command] = STATE(674), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1241), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(4311), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2202), + [anon_sym_RBRACE] = ACTIONS(4626), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1531] = { - [sym_file_redirect] = STATE(527), - [sym_heredoc_redirect] = STATE(527), - [sym_herestring_redirect] = STATE(527), - [aux_sym_while_statement_repeat1] = STATE(1045), - [sym_file_descriptor] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(4313), - [anon_sym_RPAREN] = ACTIONS(4315), - [anon_sym_PIPE_AMP] = ACTIONS(4315), - [anon_sym_AMP_AMP] = ACTIONS(4315), - [anon_sym_PIPE_PIPE] = ACTIONS(4315), - [anon_sym_LT] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_GT_GT] = ACTIONS(952), - [anon_sym_AMP_GT] = ACTIONS(950), - [anon_sym_AMP_GT_GT] = ACTIONS(952), - [anon_sym_LT_AMP] = ACTIONS(952), - [anon_sym_GT_AMP] = ACTIONS(952), - [anon_sym_LT_LT] = ACTIONS(954), - [anon_sym_LT_LT_DASH] = ACTIONS(956), - [anon_sym_LT_LT_LT] = ACTIONS(958), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(3362), + [sym_variable_name] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(3364), + [anon_sym_SEMI_SEMI] = ACTIONS(3364), + [anon_sym_PIPE_AMP] = ACTIONS(3364), + [anon_sym_AMP_AMP] = ACTIONS(3364), + [anon_sym_PIPE_PIPE] = ACTIONS(3364), + [sym__special_characters] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [anon_sym_DOLLAR] = ACTIONS(3364), + [sym_raw_string] = ACTIONS(3364), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3364), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3364), + [anon_sym_BQUOTE] = ACTIONS(3364), + [anon_sym_LT_LPAREN] = ACTIONS(3364), + [anon_sym_GT_LPAREN] = ACTIONS(3364), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3364), + [sym_word] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_LF] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3364), }, [1532] = { - [anon_sym_PIPE] = ACTIONS(4317), - [anon_sym_RPAREN] = ACTIONS(4319), - [anon_sym_PIPE_AMP] = ACTIONS(4319), - [anon_sym_AMP_AMP] = ACTIONS(4319), - [anon_sym_PIPE_PIPE] = ACTIONS(4319), - [anon_sym_BQUOTE] = ACTIONS(4319), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2204), + [anon_sym_RBRACE] = ACTIONS(4628), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1533] = { - [anon_sym_fi] = ACTIONS(4321), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3237), + [anon_sym_SEMI_SEMI] = ACTIONS(3237), + [anon_sym_PIPE_AMP] = ACTIONS(3237), + [anon_sym_AMP_AMP] = ACTIONS(3237), + [anon_sym_PIPE_PIPE] = ACTIONS(3237), + [sym__special_characters] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3237), + [anon_sym_DOLLAR] = ACTIONS(3237), + [sym_raw_string] = ACTIONS(3237), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3237), + [anon_sym_BQUOTE] = ACTIONS(3237), + [anon_sym_LT_LPAREN] = ACTIONS(3237), + [anon_sym_GT_LPAREN] = ACTIONS(3237), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3237), + [sym_word] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_LF] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), }, [1534] = { - [sym__terminated_statement] = STATE(681), - [sym_for_statement] = STATE(682), - [sym_while_statement] = STATE(682), - [sym_if_statement] = STATE(682), - [sym_elif_clause] = STATE(683), - [sym_else_clause] = STATE(2033), - [sym_case_statement] = STATE(682), - [sym_function_definition] = STATE(682), - [sym_subshell] = STATE(682), - [sym_pipeline] = STATE(682), - [sym_list] = STATE(682), - [sym_bracket_command] = STATE(682), - [sym_command] = STATE(682), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(685), - [sym_declaration_command] = STATE(682), - [sym_unset_command] = STATE(682), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1250), - [aux_sym_if_statement_repeat1] = STATE(2034), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(4323), - [anon_sym_elif] = ACTIONS(1307), - [anon_sym_else] = ACTIONS(1309), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(4630), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), }, [1535] = { - [sym_elif_clause] = STATE(683), - [sym_else_clause] = STATE(2033), - [aux_sym_if_statement_repeat1] = STATE(1252), - [anon_sym_fi] = ACTIONS(4321), - [anon_sym_elif] = ACTIONS(2494), - [anon_sym_else] = ACTIONS(2496), + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(4632), [sym_comment] = ACTIONS(56), }, [1536] = { - [sym_case_item] = STATE(1262), - [sym_last_case_item] = STATE(2036), - [sym_concatenation] = STATE(1264), - [sym_string] = STATE(1257), - [sym_simple_expansion] = STATE(1257), - [sym_string_expansion] = STATE(1257), - [sym_expansion] = STATE(1257), - [sym_command_substitution] = STATE(1257), - [sym_process_substitution] = STATE(1257), - [aux_sym_case_statement_repeat1] = STATE(2037), - [anon_sym_esac] = ACTIONS(4325), - [sym__special_characters] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2502), - [anon_sym_DOLLAR] = ACTIONS(2504), - [sym_raw_string] = ACTIONS(2506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2508), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2510), - [anon_sym_BQUOTE] = ACTIONS(2512), - [anon_sym_LT_LPAREN] = ACTIONS(2514), - [anon_sym_GT_LPAREN] = ACTIONS(2514), + [anon_sym_RBRACE] = ACTIONS(4632), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2516), }, [1537] = { - [anon_sym_SEMI_SEMI] = ACTIONS(4327), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4327), - [anon_sym_LF] = ACTIONS(4327), - [anon_sym_AMP] = ACTIONS(4327), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2208), + [anon_sym_RBRACE] = ACTIONS(4634), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1538] = { - [sym_case_item] = STATE(1262), - [sym_last_case_item] = STATE(2040), - [sym_concatenation] = STATE(1264), - [sym_string] = STATE(1257), - [sym_simple_expansion] = STATE(1257), - [sym_string_expansion] = STATE(1257), - [sym_expansion] = STATE(1257), - [sym_command_substitution] = STATE(1257), - [sym_process_substitution] = STATE(1257), - [aux_sym_case_statement_repeat1] = STATE(2041), - [anon_sym_esac] = ACTIONS(4329), - [sym__special_characters] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2502), - [anon_sym_DOLLAR] = ACTIONS(2504), - [sym_raw_string] = ACTIONS(2506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2508), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2510), - [anon_sym_BQUOTE] = ACTIONS(2512), - [anon_sym_LT_LPAREN] = ACTIONS(2514), - [anon_sym_GT_LPAREN] = ACTIONS(2514), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2516), + [sym__concat] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_SEMI_SEMI] = ACTIONS(3299), + [anon_sym_PIPE_AMP] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [sym__special_characters] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3299), + [sym_raw_string] = ACTIONS(3299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3299), + [anon_sym_BQUOTE] = ACTIONS(3299), + [anon_sym_LT_LPAREN] = ACTIONS(3299), + [anon_sym_GT_LPAREN] = ACTIONS(3299), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3299), + [sym_word] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_LF] = ACTIONS(3299), + [anon_sym_AMP] = ACTIONS(3299), }, [1539] = { - [anon_sym_SEMI_SEMI] = ACTIONS(4331), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4331), - [anon_sym_LF] = ACTIONS(4331), - [anon_sym_AMP] = ACTIONS(4331), + [sym_concatenation] = STATE(2211), + [sym_string] = STATE(2210), + [sym_simple_expansion] = STATE(2210), + [sym_string_expansion] = STATE(2210), + [sym_expansion] = STATE(2210), + [sym_command_substitution] = STATE(2210), + [sym_process_substitution] = STATE(2210), + [anon_sym_RBRACE] = ACTIONS(4632), + [sym__special_characters] = ACTIONS(4636), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(4638), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4640), }, [1540] = { - [sym_compound_statement] = STATE(2043), - [anon_sym_LBRACE] = ACTIONS(1960), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(3344), + [anon_sym_SEMI_SEMI] = ACTIONS(3344), + [anon_sym_PIPE_AMP] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [sym__special_characters] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_DOLLAR] = ACTIONS(3344), + [sym_raw_string] = ACTIONS(3344), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3344), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3344), + [anon_sym_BQUOTE] = ACTIONS(3344), + [anon_sym_LT_LPAREN] = ACTIONS(3344), + [anon_sym_GT_LPAREN] = ACTIONS(3344), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3344), + [sym_word] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_LF] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3344), }, [1541] = { - [sym_file_descriptor] = ACTIONS(2545), - [anon_sym_PIPE] = ACTIONS(4333), - [anon_sym_RPAREN] = ACTIONS(2545), - [anon_sym_PIPE_AMP] = ACTIONS(2545), - [anon_sym_AMP_AMP] = ACTIONS(2545), - [anon_sym_PIPE_PIPE] = ACTIONS(2545), - [anon_sym_LT] = ACTIONS(4333), - [anon_sym_GT] = ACTIONS(4333), - [anon_sym_GT_GT] = ACTIONS(2545), - [anon_sym_AMP_GT] = ACTIONS(4333), - [anon_sym_AMP_GT_GT] = ACTIONS(2545), - [anon_sym_LT_AMP] = ACTIONS(2545), - [anon_sym_GT_AMP] = ACTIONS(2545), - [anon_sym_BQUOTE] = ACTIONS(2545), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4642), }, [1542] = { - [sym__terminated_statement] = STATE(710), - [sym_for_statement] = STATE(711), - [sym_while_statement] = STATE(711), - [sym_if_statement] = STATE(711), - [sym_case_statement] = STATE(711), - [sym_function_definition] = STATE(711), - [sym_subshell] = STATE(711), - [sym_pipeline] = STATE(711), - [sym_list] = STATE(711), - [sym_bracket_command] = STATE(711), - [sym_command] = STATE(711), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(712), - [sym_declaration_command] = STATE(711), - [sym_unset_command] = STATE(711), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1286), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_RBRACE] = ACTIONS(4335), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4644), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1543] = { - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_GT] = ACTIONS(4337), - [anon_sym_GT_GT] = ACTIONS(4339), - [anon_sym_AMP_GT] = ACTIONS(4337), - [anon_sym_AMP_GT_GT] = ACTIONS(4339), - [anon_sym_LT_AMP] = ACTIONS(4339), - [anon_sym_GT_AMP] = ACTIONS(4339), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3352), + [anon_sym_SEMI_SEMI] = ACTIONS(3352), + [anon_sym_PIPE_AMP] = ACTIONS(3352), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_PIPE_PIPE] = ACTIONS(3352), + [sym__special_characters] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [anon_sym_DOLLAR] = ACTIONS(3352), + [sym_raw_string] = ACTIONS(3352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3352), + [anon_sym_BQUOTE] = ACTIONS(3352), + [anon_sym_LT_LPAREN] = ACTIONS(3352), + [anon_sym_GT_LPAREN] = ACTIONS(3352), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3352), + [sym_word] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3352), + [anon_sym_LF] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3352), }, [1544] = { - [sym_concatenation] = STATE(2054), - [sym_string] = STATE(2049), - [sym_simple_expansion] = STATE(2049), - [sym_string_expansion] = STATE(2049), - [sym_expansion] = STATE(2049), - [sym_command_substitution] = STATE(2049), - [sym_process_substitution] = STATE(2049), - [sym__special_characters] = ACTIONS(4341), - [anon_sym_DQUOTE] = ACTIONS(4343), - [anon_sym_DOLLAR] = ACTIONS(4345), - [sym_raw_string] = ACTIONS(4347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4351), - [anon_sym_BQUOTE] = ACTIONS(4353), - [anon_sym_LT_LPAREN] = ACTIONS(4355), - [anon_sym_GT_LPAREN] = ACTIONS(4355), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4357), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4646), }, [1545] = { - [anon_sym_PIPE] = ACTIONS(4359), - [anon_sym_RPAREN] = ACTIONS(4361), - [anon_sym_PIPE_AMP] = ACTIONS(4361), - [anon_sym_AMP_AMP] = ACTIONS(4361), - [anon_sym_PIPE_PIPE] = ACTIONS(4361), - [anon_sym_BQUOTE] = ACTIONS(4361), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1546] = { - [anon_sym_PIPE] = ACTIONS(4363), - [anon_sym_RPAREN] = ACTIONS(4365), - [anon_sym_PIPE_AMP] = ACTIONS(4365), - [anon_sym_AMP_AMP] = ACTIONS(4365), - [anon_sym_PIPE_PIPE] = ACTIONS(4365), - [anon_sym_BQUOTE] = ACTIONS(4365), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4650), }, [1547] = { - [sym_file_descriptor] = ACTIONS(1058), - [sym_variable_name] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_RPAREN] = ACTIONS(4367), - [anon_sym_function] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym_declare] = ACTIONS(1060), - [anon_sym_typeset] = ACTIONS(1060), - [anon_sym_export] = ACTIONS(1060), - [anon_sym_readonly] = ACTIONS(1060), - [anon_sym_local] = ACTIONS(1060), - [anon_sym_unset] = ACTIONS(1060), - [anon_sym_unsetenv] = ACTIONS(1060), - [anon_sym_LT] = ACTIONS(1060), - [anon_sym_GT] = ACTIONS(1060), - [anon_sym_GT_GT] = ACTIONS(1058), - [anon_sym_AMP_GT] = ACTIONS(1060), - [anon_sym_AMP_GT_GT] = ACTIONS(1058), - [anon_sym_LT_AMP] = ACTIONS(1058), - [anon_sym_GT_AMP] = ACTIONS(1058), - [sym__special_characters] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1058), - [anon_sym_DOLLAR] = ACTIONS(1060), - [sym_raw_string] = ACTIONS(1058), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1058), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1058), - [anon_sym_BQUOTE] = ACTIONS(1058), - [anon_sym_LT_LPAREN] = ACTIONS(1058), - [anon_sym_GT_LPAREN] = ACTIONS(1058), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1062), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4632), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1548] = { - [sym_variable_name] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(3084), - [anon_sym_RPAREN] = ACTIONS(1235), - [anon_sym_PIPE_AMP] = ACTIONS(1235), - [anon_sym_AMP_AMP] = ACTIONS(1235), - [anon_sym_PIPE_PIPE] = ACTIONS(1235), - [sym__special_characters] = ACTIONS(3084), - [anon_sym_DQUOTE] = ACTIONS(1235), - [anon_sym_DOLLAR] = ACTIONS(3084), - [sym_raw_string] = ACTIONS(1235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), - [anon_sym_BQUOTE] = ACTIONS(1235), - [anon_sym_LT_LPAREN] = ACTIONS(1235), - [anon_sym_GT_LPAREN] = ACTIONS(1235), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3084), - [sym_word] = ACTIONS(1237), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2218), + [anon_sym_RBRACE] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1549] = { - [sym_concatenation] = STATE(642), - [sym_string] = STATE(637), - [sym_simple_expansion] = STATE(637), - [sym_string_expansion] = STATE(637), - [sym_expansion] = STATE(637), - [sym_command_substitution] = STATE(637), - [sym_process_substitution] = STATE(637), - [aux_sym_for_statement_repeat1] = STATE(2057), - [anon_sym_RPAREN] = ACTIONS(4369), - [sym__special_characters] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1245), - [sym_raw_string] = ACTIONS(1247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1249), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), - [anon_sym_BQUOTE] = ACTIONS(1253), - [anon_sym_LT_LPAREN] = ACTIONS(1255), - [anon_sym_GT_LPAREN] = ACTIONS(1255), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1257), + [sym__concat] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(3364), + [anon_sym_SEMI_SEMI] = ACTIONS(3364), + [anon_sym_PIPE_AMP] = ACTIONS(3364), + [anon_sym_AMP_AMP] = ACTIONS(3364), + [anon_sym_PIPE_PIPE] = ACTIONS(3364), + [sym__special_characters] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [anon_sym_DOLLAR] = ACTIONS(3364), + [sym_raw_string] = ACTIONS(3364), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3364), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3364), + [anon_sym_BQUOTE] = ACTIONS(3364), + [anon_sym_LT_LPAREN] = ACTIONS(3364), + [anon_sym_GT_LPAREN] = ACTIONS(3364), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3364), + [sym_word] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_LF] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3364), }, [1550] = { - [aux_sym_concatenation_repeat1] = STATE(969), - [sym__concat] = ACTIONS(1970), - [sym_variable_name] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_RPAREN] = ACTIONS(1259), - [anon_sym_PIPE_AMP] = ACTIONS(1259), - [anon_sym_AMP_AMP] = ACTIONS(1259), - [anon_sym_PIPE_PIPE] = ACTIONS(1259), - [sym__special_characters] = ACTIONS(3090), - [anon_sym_DQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(3090), - [sym_raw_string] = ACTIONS(1259), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1259), - [anon_sym_BQUOTE] = ACTIONS(1259), - [anon_sym_LT_LPAREN] = ACTIONS(1259), - [anon_sym_GT_LPAREN] = ACTIONS(1259), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3090), - [sym_word] = ACTIONS(1263), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2220), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1551] = { - [aux_sym_concatenation_repeat1] = STATE(969), - [sym__concat] = ACTIONS(1970), - [sym_variable_name] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(3084), - [anon_sym_RPAREN] = ACTIONS(1235), - [anon_sym_PIPE_AMP] = ACTIONS(1235), - [anon_sym_AMP_AMP] = ACTIONS(1235), - [anon_sym_PIPE_PIPE] = ACTIONS(1235), - [sym__special_characters] = ACTIONS(3084), - [anon_sym_DQUOTE] = ACTIONS(1235), - [anon_sym_DOLLAR] = ACTIONS(3084), - [sym_raw_string] = ACTIONS(1235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), - [anon_sym_BQUOTE] = ACTIONS(1235), - [anon_sym_LT_LPAREN] = ACTIONS(1235), - [anon_sym_GT_LPAREN] = ACTIONS(1235), + [sym_file_descriptor] = ACTIONS(3235), + [sym__concat] = ACTIONS(3235), + [sym_variable_name] = ACTIONS(3235), + [anon_sym_LT] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_GT_GT] = ACTIONS(3235), + [anon_sym_AMP_GT] = ACTIONS(4540), + [anon_sym_AMP_GT_GT] = ACTIONS(3235), + [anon_sym_LT_AMP] = ACTIONS(3235), + [anon_sym_GT_AMP] = ACTIONS(3235), + [sym__special_characters] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_DOLLAR] = ACTIONS(4540), + [sym_raw_string] = ACTIONS(3235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3235), + [anon_sym_BQUOTE] = ACTIONS(3235), + [anon_sym_LT_LPAREN] = ACTIONS(3235), + [anon_sym_GT_LPAREN] = ACTIONS(3235), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3084), - [sym_word] = ACTIONS(1237), + [sym_word] = ACTIONS(4540), }, [1552] = { - [sym__concat] = ACTIONS(1790), - [sym_variable_name] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_RPAREN] = ACTIONS(1790), - [anon_sym_PIPE_AMP] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(1790), - [anon_sym_PIPE_PIPE] = ACTIONS(1790), - [sym__special_characters] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_LT_LPAREN] = ACTIONS(1790), - [anon_sym_GT_LPAREN] = ACTIONS(1790), + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(4656), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2816), - [sym_word] = ACTIONS(1792), }, [1553] = { - [aux_sym_concatenation_repeat1] = STATE(1553), - [sym__concat] = ACTIONS(4371), - [sym_variable_name] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_RPAREN] = ACTIONS(1790), - [anon_sym_PIPE_AMP] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(1790), - [anon_sym_PIPE_PIPE] = ACTIONS(1790), - [sym__special_characters] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_LT_LPAREN] = ACTIONS(1790), - [anon_sym_GT_LPAREN] = ACTIONS(1790), + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(4658), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2816), - [sym_word] = ACTIONS(1792), }, [1554] = { - [sym__concat] = ACTIONS(1821), - [sym_variable_name] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(2821), - [anon_sym_RPAREN] = ACTIONS(1821), - [anon_sym_PIPE_AMP] = ACTIONS(1821), - [anon_sym_AMP_AMP] = ACTIONS(1821), - [anon_sym_PIPE_PIPE] = ACTIONS(1821), - [sym__special_characters] = ACTIONS(2821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [anon_sym_DOLLAR] = ACTIONS(2821), - [sym_raw_string] = ACTIONS(1821), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1821), - [anon_sym_BQUOTE] = ACTIONS(1821), - [anon_sym_LT_LPAREN] = ACTIONS(1821), - [anon_sym_GT_LPAREN] = ACTIONS(1821), + [anon_sym_RBRACE] = ACTIONS(4658), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2821), - [sym_word] = ACTIONS(1823), }, [1555] = { - [sym_concatenation] = STATE(2061), - [sym_string] = STATE(2060), - [sym_simple_expansion] = STATE(2060), - [sym_string_expansion] = STATE(2060), - [sym_expansion] = STATE(2060), - [sym_command_substitution] = STATE(2060), - [sym_process_substitution] = STATE(2060), - [anon_sym_RBRACE] = ACTIONS(4374), - [sym__special_characters] = ACTIONS(4376), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(4378), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4380), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2224), + [anon_sym_RBRACE] = ACTIONS(4660), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1556] = { - [sym__concat] = ACTIONS(1866), - [sym_variable_name] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_PIPE_AMP] = ACTIONS(1866), - [anon_sym_AMP_AMP] = ACTIONS(1866), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [sym__special_characters] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(2831), - [sym_raw_string] = ACTIONS(1866), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1866), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1866), - [anon_sym_BQUOTE] = ACTIONS(1866), - [anon_sym_LT_LPAREN] = ACTIONS(1866), - [anon_sym_GT_LPAREN] = ACTIONS(1866), + [sym_file_descriptor] = ACTIONS(3297), + [sym__concat] = ACTIONS(3297), + [sym_variable_name] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4548), + [anon_sym_GT_GT] = ACTIONS(3297), + [anon_sym_AMP_GT] = ACTIONS(4548), + [anon_sym_AMP_GT_GT] = ACTIONS(3297), + [anon_sym_LT_AMP] = ACTIONS(3297), + [anon_sym_GT_AMP] = ACTIONS(3297), + [sym__special_characters] = ACTIONS(4548), + [anon_sym_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(4548), + [sym_raw_string] = ACTIONS(3297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3297), + [anon_sym_BQUOTE] = ACTIONS(3297), + [anon_sym_LT_LPAREN] = ACTIONS(3297), + [anon_sym_GT_LPAREN] = ACTIONS(3297), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2831), - [sym_word] = ACTIONS(1868), + [sym_word] = ACTIONS(4548), }, [1557] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4382), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_concatenation] = STATE(2227), + [sym_string] = STATE(2226), + [sym_simple_expansion] = STATE(2226), + [sym_string_expansion] = STATE(2226), + [sym_expansion] = STATE(2226), + [sym_command_substitution] = STATE(2226), + [sym_process_substitution] = STATE(2226), + [anon_sym_RBRACE] = ACTIONS(4658), + [sym__special_characters] = ACTIONS(4662), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(4664), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4666), }, [1558] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(4384), + [sym_file_descriptor] = ACTIONS(3342), + [sym__concat] = ACTIONS(3342), + [sym_variable_name] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4556), + [anon_sym_GT_GT] = ACTIONS(3342), + [anon_sym_AMP_GT] = ACTIONS(4556), + [anon_sym_AMP_GT_GT] = ACTIONS(3342), + [anon_sym_LT_AMP] = ACTIONS(3342), + [anon_sym_GT_AMP] = ACTIONS(3342), + [sym__special_characters] = ACTIONS(4556), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(4556), + [sym_raw_string] = ACTIONS(3342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3342), + [anon_sym_BQUOTE] = ACTIONS(3342), + [anon_sym_LT_LPAREN] = ACTIONS(3342), + [anon_sym_GT_LPAREN] = ACTIONS(3342), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4556), }, [1559] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2065), - [anon_sym_RBRACE] = ACTIONS(4386), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4668), }, [1560] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2067), - [anon_sym_RBRACE] = ACTIONS(4388), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4670), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1561] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2068), - [anon_sym_RBRACE] = ACTIONS(4374), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_file_descriptor] = ACTIONS(3350), + [sym__concat] = ACTIONS(3350), + [sym_variable_name] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_GT_GT] = ACTIONS(3350), + [anon_sym_AMP_GT] = ACTIONS(4562), + [anon_sym_AMP_GT_GT] = ACTIONS(3350), + [anon_sym_LT_AMP] = ACTIONS(3350), + [anon_sym_GT_AMP] = ACTIONS(3350), + [sym__special_characters] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_DOLLAR] = ACTIONS(4562), + [sym_raw_string] = ACTIONS(3350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3350), + [anon_sym_BQUOTE] = ACTIONS(3350), + [anon_sym_LT_LPAREN] = ACTIONS(3350), + [anon_sym_GT_LPAREN] = ACTIONS(3350), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4562), }, [1562] = { - [sym__concat] = ACTIONS(1910), - [sym_variable_name] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(2841), - [anon_sym_RPAREN] = ACTIONS(1910), - [anon_sym_PIPE_AMP] = ACTIONS(1910), - [anon_sym_AMP_AMP] = ACTIONS(1910), - [anon_sym_PIPE_PIPE] = ACTIONS(1910), - [sym__special_characters] = ACTIONS(2841), - [anon_sym_DQUOTE] = ACTIONS(1910), - [anon_sym_DOLLAR] = ACTIONS(2841), - [sym_raw_string] = ACTIONS(1910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1910), - [anon_sym_BQUOTE] = ACTIONS(1910), - [anon_sym_LT_LPAREN] = ACTIONS(1910), - [anon_sym_GT_LPAREN] = ACTIONS(1910), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2841), - [sym_word] = ACTIONS(1912), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4672), }, [1563] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4390), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4674), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1564] = { - [sym__concat] = ACTIONS(1916), - [sym_variable_name] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(2845), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(2845), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(2845), - [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(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2845), - [sym_word] = ACTIONS(1918), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4676), }, [1565] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4374), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4658), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1566] = { - [sym__concat] = ACTIONS(2064), - [sym_variable_name] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2847), - [anon_sym_RPAREN] = ACTIONS(2064), - [anon_sym_PIPE_AMP] = ACTIONS(2064), - [anon_sym_AMP_AMP] = ACTIONS(2064), - [anon_sym_PIPE_PIPE] = ACTIONS(2064), - [sym__special_characters] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2847), - [sym_raw_string] = ACTIONS(2064), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2064), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2064), - [anon_sym_BQUOTE] = ACTIONS(2064), - [anon_sym_LT_LPAREN] = ACTIONS(2064), - [anon_sym_GT_LPAREN] = ACTIONS(2064), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2847), - [sym_word] = ACTIONS(2066), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2234), + [anon_sym_RBRACE] = ACTIONS(4678), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1567] = { - [sym__concat] = ACTIONS(2228), - [sym_variable_name] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_RPAREN] = ACTIONS(2228), - [anon_sym_PIPE_AMP] = ACTIONS(2228), - [anon_sym_AMP_AMP] = ACTIONS(2228), - [anon_sym_PIPE_PIPE] = ACTIONS(2228), - [sym__special_characters] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2228), - [anon_sym_DOLLAR] = ACTIONS(2849), - [sym_raw_string] = ACTIONS(2228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2228), - [anon_sym_BQUOTE] = ACTIONS(2228), - [anon_sym_LT_LPAREN] = ACTIONS(2228), - [anon_sym_GT_LPAREN] = ACTIONS(2228), + [sym_file_descriptor] = ACTIONS(3362), + [sym__concat] = ACTIONS(3362), + [sym_variable_name] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(4572), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_GT_GT] = ACTIONS(3362), + [anon_sym_AMP_GT] = ACTIONS(4572), + [anon_sym_AMP_GT_GT] = ACTIONS(3362), + [anon_sym_LT_AMP] = ACTIONS(3362), + [anon_sym_GT_AMP] = ACTIONS(3362), + [sym__special_characters] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(3362), + [anon_sym_DOLLAR] = ACTIONS(4572), + [sym_raw_string] = ACTIONS(3362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3362), + [anon_sym_BQUOTE] = ACTIONS(3362), + [anon_sym_LT_LPAREN] = ACTIONS(3362), + [anon_sym_GT_LPAREN] = ACTIONS(3362), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2849), - [sym_word] = ACTIONS(2230), + [sym_word] = ACTIONS(4572), }, [1568] = { - [sym__concat] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_RPAREN] = ACTIONS(1790), - [anon_sym_PIPE_AMP] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(1790), - [anon_sym_PIPE_PIPE] = ACTIONS(1790), - [sym__special_characters] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_LT_LPAREN] = ACTIONS(1790), - [anon_sym_GT_LPAREN] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2816), - [sym_word] = ACTIONS(1792), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2236), + [anon_sym_RBRACE] = ACTIONS(4680), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [1569] = { - [aux_sym_concatenation_repeat1] = STATE(1569), - [sym__concat] = ACTIONS(4392), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_RPAREN] = ACTIONS(1790), - [anon_sym_PIPE_AMP] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(1790), - [anon_sym_PIPE_PIPE] = ACTIONS(1790), - [sym__special_characters] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_LT_LPAREN] = ACTIONS(1790), - [anon_sym_GT_LPAREN] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2816), - [sym_word] = ACTIONS(1792), + [sym__concat] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3237), + [anon_sym_DOLLAR] = ACTIONS(3237), + [sym__string_content] = ACTIONS(4540), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3237), + [anon_sym_BQUOTE] = ACTIONS(3237), + [sym_comment] = ACTIONS(182), }, [1570] = { - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(2821), - [anon_sym_RPAREN] = ACTIONS(1821), - [anon_sym_PIPE_AMP] = ACTIONS(1821), - [anon_sym_AMP_AMP] = ACTIONS(1821), - [anon_sym_PIPE_PIPE] = ACTIONS(1821), - [sym__special_characters] = ACTIONS(2821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [anon_sym_DOLLAR] = ACTIONS(2821), - [sym_raw_string] = ACTIONS(1821), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1821), - [anon_sym_BQUOTE] = ACTIONS(1821), - [anon_sym_LT_LPAREN] = ACTIONS(1821), - [anon_sym_GT_LPAREN] = ACTIONS(1821), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2821), - [sym_word] = ACTIONS(1823), - }, - [1571] = { - [sym_concatenation] = STATE(2073), - [sym_string] = STATE(2072), - [sym_simple_expansion] = STATE(2072), - [sym_string_expansion] = STATE(2072), - [sym_expansion] = STATE(2072), - [sym_command_substitution] = STATE(2072), - [sym_process_substitution] = STATE(2072), - [anon_sym_RBRACE] = ACTIONS(4395), - [sym__special_characters] = ACTIONS(4397), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(4399), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4401), - }, - [1572] = { - [sym__concat] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_PIPE_AMP] = ACTIONS(1866), - [anon_sym_AMP_AMP] = ACTIONS(1866), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [sym__special_characters] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(2831), - [sym_raw_string] = ACTIONS(1866), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1866), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1866), - [anon_sym_BQUOTE] = ACTIONS(1866), - [anon_sym_LT_LPAREN] = ACTIONS(1866), - [anon_sym_GT_LPAREN] = ACTIONS(1866), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2831), - [sym_word] = ACTIONS(1868), - }, - [1573] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4403), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1574] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(4405), - [sym_comment] = ACTIONS(56), - }, - [1575] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2077), - [anon_sym_RBRACE] = ACTIONS(4407), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1576] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2079), - [anon_sym_RBRACE] = ACTIONS(4409), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1577] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2080), - [anon_sym_RBRACE] = ACTIONS(4395), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1578] = { - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(2841), - [anon_sym_RPAREN] = ACTIONS(1910), - [anon_sym_PIPE_AMP] = ACTIONS(1910), - [anon_sym_AMP_AMP] = ACTIONS(1910), - [anon_sym_PIPE_PIPE] = ACTIONS(1910), - [sym__special_characters] = ACTIONS(2841), - [anon_sym_DQUOTE] = ACTIONS(1910), - [anon_sym_DOLLAR] = ACTIONS(2841), - [sym_raw_string] = ACTIONS(1910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1910), - [anon_sym_BQUOTE] = ACTIONS(1910), - [anon_sym_LT_LPAREN] = ACTIONS(1910), - [anon_sym_GT_LPAREN] = ACTIONS(1910), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2841), - [sym_word] = ACTIONS(1912), - }, - [1579] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4411), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1580] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(2845), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(2845), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(2845), - [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(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2845), - [sym_word] = ACTIONS(1918), - }, - [1581] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4395), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1582] = { - [sym__concat] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2847), - [anon_sym_RPAREN] = ACTIONS(2064), - [anon_sym_PIPE_AMP] = ACTIONS(2064), - [anon_sym_AMP_AMP] = ACTIONS(2064), - [anon_sym_PIPE_PIPE] = ACTIONS(2064), - [sym__special_characters] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2847), - [sym_raw_string] = ACTIONS(2064), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2064), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2064), - [anon_sym_BQUOTE] = ACTIONS(2064), - [anon_sym_LT_LPAREN] = ACTIONS(2064), - [anon_sym_GT_LPAREN] = ACTIONS(2064), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2847), - [sym_word] = ACTIONS(2066), - }, - [1583] = { - [sym__concat] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_RPAREN] = ACTIONS(2228), - [anon_sym_PIPE_AMP] = ACTIONS(2228), - [anon_sym_AMP_AMP] = ACTIONS(2228), - [anon_sym_PIPE_PIPE] = ACTIONS(2228), - [sym__special_characters] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2228), - [anon_sym_DOLLAR] = ACTIONS(2849), - [sym_raw_string] = ACTIONS(2228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2228), - [anon_sym_BQUOTE] = ACTIONS(2228), - [anon_sym_LT_LPAREN] = ACTIONS(2228), - [anon_sym_GT_LPAREN] = ACTIONS(2228), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2849), - [sym_word] = ACTIONS(2230), - }, - [1584] = { - [sym_file_descriptor] = ACTIONS(2969), - [sym__concat] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(4098), - [anon_sym_RPAREN] = ACTIONS(2969), - [anon_sym_PIPE_AMP] = ACTIONS(2969), - [anon_sym_AMP_AMP] = ACTIONS(2969), - [anon_sym_PIPE_PIPE] = ACTIONS(2969), - [anon_sym_LT] = ACTIONS(4098), - [anon_sym_GT] = ACTIONS(4098), - [anon_sym_GT_GT] = ACTIONS(2969), - [anon_sym_AMP_GT] = ACTIONS(4098), - [anon_sym_AMP_GT_GT] = ACTIONS(2969), - [anon_sym_LT_AMP] = ACTIONS(2969), - [anon_sym_GT_AMP] = ACTIONS(2969), - [anon_sym_LT_LT] = ACTIONS(4098), - [anon_sym_LT_LT_DASH] = ACTIONS(2969), - [anon_sym_LT_LT_LT] = ACTIONS(2969), - [sym__special_characters] = ACTIONS(4098), - [anon_sym_DQUOTE] = ACTIONS(2969), - [anon_sym_DOLLAR] = ACTIONS(4098), - [sym_raw_string] = ACTIONS(2969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2969), - [anon_sym_BQUOTE] = ACTIONS(2969), - [anon_sym_LT_LPAREN] = ACTIONS(2969), - [anon_sym_GT_LPAREN] = ACTIONS(2969), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4098), - }, - [1585] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4413), - [sym_comment] = ACTIONS(56), - }, - [1586] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4415), - [sym_comment] = ACTIONS(56), - }, - [1587] = { - [anon_sym_RBRACE] = ACTIONS(4415), - [sym_comment] = ACTIONS(56), - }, - [1588] = { - [sym_file_descriptor] = ACTIONS(3023), - [sym__concat] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(4104), - [anon_sym_RPAREN] = ACTIONS(3023), - [anon_sym_PIPE_AMP] = ACTIONS(3023), - [anon_sym_AMP_AMP] = ACTIONS(3023), - [anon_sym_PIPE_PIPE] = ACTIONS(3023), - [anon_sym_LT] = ACTIONS(4104), - [anon_sym_GT] = ACTIONS(4104), - [anon_sym_GT_GT] = ACTIONS(3023), - [anon_sym_AMP_GT] = ACTIONS(4104), - [anon_sym_AMP_GT_GT] = ACTIONS(3023), - [anon_sym_LT_AMP] = ACTIONS(3023), - [anon_sym_GT_AMP] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(4104), - [anon_sym_LT_LT_DASH] = ACTIONS(3023), - [anon_sym_LT_LT_LT] = ACTIONS(3023), - [sym__special_characters] = ACTIONS(4104), - [anon_sym_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR] = ACTIONS(4104), - [sym_raw_string] = ACTIONS(3023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3023), - [anon_sym_BQUOTE] = ACTIONS(3023), - [anon_sym_LT_LPAREN] = ACTIONS(3023), - [anon_sym_GT_LPAREN] = ACTIONS(3023), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4104), - }, - [1589] = { - [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), - [anon_sym_RBRACE] = ACTIONS(4415), - [sym__special_characters] = ACTIONS(4417), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(4419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4421), - }, - [1590] = { - [sym_file_descriptor] = ACTIONS(3068), - [sym__concat] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(4112), - [anon_sym_RPAREN] = ACTIONS(3068), - [anon_sym_PIPE_AMP] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(4112), - [anon_sym_GT] = ACTIONS(4112), - [anon_sym_GT_GT] = ACTIONS(3068), - [anon_sym_AMP_GT] = ACTIONS(4112), - [anon_sym_AMP_GT_GT] = ACTIONS(3068), - [anon_sym_LT_AMP] = ACTIONS(3068), - [anon_sym_GT_AMP] = ACTIONS(3068), - [anon_sym_LT_LT] = ACTIONS(4112), - [anon_sym_LT_LT_DASH] = ACTIONS(3068), - [anon_sym_LT_LT_LT] = ACTIONS(3068), - [sym__special_characters] = ACTIONS(4112), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(4112), - [sym_raw_string] = ACTIONS(3068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3068), - [anon_sym_BQUOTE] = ACTIONS(3068), - [anon_sym_LT_LPAREN] = ACTIONS(3068), - [anon_sym_GT_LPAREN] = ACTIONS(3068), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4112), - }, - [1591] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1592] = { - [sym_file_descriptor] = ACTIONS(3074), - [sym__concat] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(4116), - [anon_sym_RPAREN] = ACTIONS(3074), - [anon_sym_PIPE_AMP] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_GT_GT] = ACTIONS(3074), - [anon_sym_AMP_GT] = ACTIONS(4116), - [anon_sym_AMP_GT_GT] = ACTIONS(3074), - [anon_sym_LT_AMP] = ACTIONS(3074), - [anon_sym_GT_AMP] = ACTIONS(3074), - [anon_sym_LT_LT] = ACTIONS(4116), - [anon_sym_LT_LT_DASH] = ACTIONS(3074), - [anon_sym_LT_LT_LT] = ACTIONS(3074), - [sym__special_characters] = ACTIONS(4116), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_DOLLAR] = ACTIONS(4116), - [sym_raw_string] = ACTIONS(3074), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3074), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3074), - [anon_sym_BQUOTE] = ACTIONS(3074), - [anon_sym_LT_LPAREN] = ACTIONS(3074), - [anon_sym_GT_LPAREN] = ACTIONS(3074), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4116), - }, - [1593] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4425), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1594] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4415), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1595] = { - [sym_file_descriptor] = ACTIONS(3080), - [sym__concat] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(4120), - [anon_sym_RPAREN] = ACTIONS(3080), - [anon_sym_PIPE_AMP] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(4120), - [anon_sym_GT] = ACTIONS(4120), - [anon_sym_GT_GT] = ACTIONS(3080), - [anon_sym_AMP_GT] = ACTIONS(4120), - [anon_sym_AMP_GT_GT] = ACTIONS(3080), - [anon_sym_LT_AMP] = ACTIONS(3080), - [anon_sym_GT_AMP] = ACTIONS(3080), - [anon_sym_LT_LT] = ACTIONS(4120), - [anon_sym_LT_LT_DASH] = ACTIONS(3080), - [anon_sym_LT_LT_LT] = ACTIONS(3080), - [sym__special_characters] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(3080), - [anon_sym_DOLLAR] = ACTIONS(4120), - [sym_raw_string] = ACTIONS(3080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3080), - [anon_sym_BQUOTE] = ACTIONS(3080), - [anon_sym_LT_LPAREN] = ACTIONS(3080), - [anon_sym_GT_LPAREN] = ACTIONS(3080), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4120), - }, - [1596] = { - [sym_file_redirect] = STATE(2089), - [sym_file_descriptor] = ACTIONS(3130), - [anon_sym_PIPE] = ACTIONS(4359), - [anon_sym_RPAREN] = ACTIONS(4361), - [anon_sym_PIPE_AMP] = ACTIONS(4361), - [anon_sym_AMP_AMP] = ACTIONS(4361), - [anon_sym_PIPE_PIPE] = ACTIONS(4361), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_GT_GT] = ACTIONS(3138), - [anon_sym_AMP_GT] = ACTIONS(3136), - [anon_sym_AMP_GT_GT] = ACTIONS(3138), - [anon_sym_LT_AMP] = ACTIONS(3138), - [anon_sym_GT_AMP] = ACTIONS(3138), - [sym_comment] = ACTIONS(56), - }, - [1597] = { - [aux_sym_concatenation_repeat1] = STATE(1601), - [sym_file_descriptor] = ACTIONS(1199), - [sym__concat] = ACTIONS(3320), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1199), - [anon_sym_PIPE_AMP] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_AMP_GT] = ACTIONS(1201), - [anon_sym_AMP_GT_GT] = ACTIONS(1199), - [anon_sym_LT_AMP] = ACTIONS(1199), - [anon_sym_GT_AMP] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1201), - [anon_sym_LT_LT_DASH] = ACTIONS(1199), - [anon_sym_LT_LT_LT] = ACTIONS(1199), - [sym_comment] = ACTIONS(56), - }, - [1598] = { - [aux_sym_concatenation_repeat1] = STATE(1601), - [sym_file_descriptor] = ACTIONS(1203), - [sym__concat] = ACTIONS(3320), - [anon_sym_PIPE] = ACTIONS(1205), - [anon_sym_RPAREN] = ACTIONS(1203), - [anon_sym_PIPE_AMP] = ACTIONS(1203), - [anon_sym_AMP_AMP] = ACTIONS(1203), - [anon_sym_PIPE_PIPE] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1205), - [anon_sym_GT_GT] = ACTIONS(1203), - [anon_sym_AMP_GT] = ACTIONS(1205), - [anon_sym_AMP_GT_GT] = ACTIONS(1203), - [anon_sym_LT_AMP] = ACTIONS(1203), - [anon_sym_GT_AMP] = ACTIONS(1203), - [anon_sym_LT_LT] = ACTIONS(1205), - [anon_sym_LT_LT_DASH] = ACTIONS(1203), - [anon_sym_LT_LT_LT] = ACTIONS(1203), - [sym_comment] = ACTIONS(56), - }, - [1599] = { - [sym_file_descriptor] = ACTIONS(1203), - [anon_sym_PIPE] = ACTIONS(1205), - [anon_sym_RPAREN] = ACTIONS(1203), - [anon_sym_PIPE_AMP] = ACTIONS(1203), - [anon_sym_AMP_AMP] = ACTIONS(1203), - [anon_sym_PIPE_PIPE] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1205), - [anon_sym_GT_GT] = ACTIONS(1203), - [anon_sym_AMP_GT] = ACTIONS(1205), - [anon_sym_AMP_GT_GT] = ACTIONS(1203), - [anon_sym_LT_AMP] = ACTIONS(1203), - [anon_sym_GT_AMP] = ACTIONS(1203), - [anon_sym_LT_LT] = ACTIONS(1205), - [anon_sym_LT_LT_DASH] = ACTIONS(1203), - [anon_sym_LT_LT_LT] = ACTIONS(1203), - [anon_sym_BQUOTE] = ACTIONS(1203), - [sym_comment] = ACTIONS(56), - }, - [1600] = { - [sym_string] = STATE(2090), - [sym_simple_expansion] = STATE(2090), - [sym_string_expansion] = STATE(2090), - [sym_expansion] = STATE(2090), - [sym_command_substitution] = STATE(2090), - [sym_process_substitution] = STATE(2090), - [sym__special_characters] = ACTIONS(4427), - [anon_sym_DQUOTE] = ACTIONS(2074), - [anon_sym_DOLLAR] = ACTIONS(2076), - [sym_raw_string] = ACTIONS(4429), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2082), - [anon_sym_BQUOTE] = ACTIONS(2084), - [anon_sym_LT_LPAREN] = ACTIONS(2086), - [anon_sym_GT_LPAREN] = ACTIONS(2086), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4427), - }, - [1601] = { - [aux_sym_concatenation_repeat1] = STATE(2091), - [sym_file_descriptor] = ACTIONS(760), - [sym__concat] = ACTIONS(3320), - [anon_sym_PIPE] = ACTIONS(1501), - [anon_sym_RPAREN] = ACTIONS(760), - [anon_sym_PIPE_AMP] = ACTIONS(760), - [anon_sym_AMP_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(760), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(760), - [anon_sym_AMP_GT] = ACTIONS(1501), - [anon_sym_AMP_GT_GT] = ACTIONS(760), - [anon_sym_LT_AMP] = ACTIONS(760), - [anon_sym_GT_AMP] = ACTIONS(760), - [anon_sym_LT_LT] = ACTIONS(1501), - [anon_sym_LT_LT_DASH] = ACTIONS(760), - [anon_sym_LT_LT_LT] = ACTIONS(760), - [sym_comment] = ACTIONS(56), - }, - [1602] = { - [sym_file_descriptor] = ACTIONS(764), - [sym__concat] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_PIPE_AMP] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(1503), - [anon_sym_GT_GT] = ACTIONS(764), - [anon_sym_AMP_GT] = ACTIONS(1503), - [anon_sym_AMP_GT_GT] = ACTIONS(764), - [anon_sym_LT_AMP] = ACTIONS(764), - [anon_sym_GT_AMP] = ACTIONS(764), - [anon_sym_LT_LT] = ACTIONS(1503), - [anon_sym_LT_LT_DASH] = ACTIONS(764), - [anon_sym_LT_LT_LT] = ACTIONS(764), - [sym_comment] = ACTIONS(56), - }, - [1603] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [1604] = { - [sym_file_descriptor] = ACTIONS(796), - [sym__concat] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_RPAREN] = ACTIONS(796), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_GT_GT] = ACTIONS(796), - [anon_sym_AMP_GT] = ACTIONS(1507), - [anon_sym_AMP_GT_GT] = ACTIONS(796), - [anon_sym_LT_AMP] = ACTIONS(796), - [anon_sym_GT_AMP] = ACTIONS(796), - [anon_sym_LT_LT] = ACTIONS(1507), - [anon_sym_LT_LT_DASH] = ACTIONS(796), - [anon_sym_LT_LT_LT] = ACTIONS(796), - [sym_comment] = ACTIONS(56), - }, - [1605] = { - [sym_file_descriptor] = ACTIONS(800), - [sym__concat] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_RPAREN] = ACTIONS(800), - [anon_sym_PIPE_AMP] = ACTIONS(800), - [anon_sym_AMP_AMP] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_GT_GT] = ACTIONS(800), - [anon_sym_AMP_GT] = ACTIONS(1509), - [anon_sym_AMP_GT_GT] = ACTIONS(800), - [anon_sym_LT_AMP] = ACTIONS(800), - [anon_sym_GT_AMP] = ACTIONS(800), - [anon_sym_LT_LT] = ACTIONS(1509), - [anon_sym_LT_LT_DASH] = ACTIONS(800), - [anon_sym_LT_LT_LT] = ACTIONS(800), - [sym_comment] = ACTIONS(56), - }, - [1606] = { - [sym_file_descriptor] = ACTIONS(804), - [sym__concat] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_RPAREN] = ACTIONS(804), - [anon_sym_PIPE_AMP] = ACTIONS(804), - [anon_sym_AMP_AMP] = ACTIONS(804), - [anon_sym_PIPE_PIPE] = ACTIONS(804), - [anon_sym_LT] = ACTIONS(1511), - [anon_sym_GT] = ACTIONS(1511), - [anon_sym_GT_GT] = ACTIONS(804), - [anon_sym_AMP_GT] = ACTIONS(1511), - [anon_sym_AMP_GT_GT] = ACTIONS(804), - [anon_sym_LT_AMP] = ACTIONS(804), - [anon_sym_GT_AMP] = ACTIONS(804), - [anon_sym_LT_LT] = ACTIONS(1511), - [anon_sym_LT_LT_DASH] = ACTIONS(804), - [anon_sym_LT_LT_LT] = ACTIONS(804), - [sym_comment] = ACTIONS(56), - }, - [1607] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(4433), - [sym_comment] = ACTIONS(56), - }, - [1608] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2095), - [anon_sym_RBRACE] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1609] = { - [sym_subscript] = STATE(2099), - [sym_variable_name] = ACTIONS(4437), - [anon_sym_DOLLAR] = ACTIONS(4439), - [anon_sym_DASH] = ACTIONS(4439), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4441), - [anon_sym_STAR] = ACTIONS(4439), - [anon_sym_AT] = ACTIONS(4439), - [anon_sym_QMARK] = ACTIONS(4439), - [anon_sym_0] = ACTIONS(4443), - [anon_sym__] = ACTIONS(4443), - }, - [1610] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2101), - [anon_sym_RBRACE] = ACTIONS(4445), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1611] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2103), - [anon_sym_RBRACE] = ACTIONS(4447), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1612] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4449), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [1613] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4449), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1614] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(4449), - [sym_comment] = ACTIONS(56), - }, - [1615] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(4449), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1616] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4451), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [1617] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4451), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1618] = { - [sym_file_descriptor] = ACTIONS(3672), - [anon_sym_PIPE] = ACTIONS(4453), - [anon_sym_RPAREN] = ACTIONS(3672), - [anon_sym_PIPE_AMP] = ACTIONS(3672), - [anon_sym_AMP_AMP] = ACTIONS(3672), - [anon_sym_PIPE_PIPE] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(4453), - [anon_sym_GT] = ACTIONS(4453), - [anon_sym_GT_GT] = ACTIONS(3672), - [anon_sym_AMP_GT] = ACTIONS(4453), - [anon_sym_AMP_GT_GT] = ACTIONS(3672), - [anon_sym_LT_AMP] = ACTIONS(3672), - [anon_sym_GT_AMP] = ACTIONS(3672), - [anon_sym_LT_LT] = ACTIONS(4453), - [anon_sym_LT_LT_DASH] = ACTIONS(3672), - [anon_sym_LT_LT_LT] = ACTIONS(3672), - [anon_sym_BQUOTE] = ACTIONS(3672), - [sym_comment] = ACTIONS(56), - }, - [1619] = { - [sym_simple_expansion] = STATE(1154), - [sym_expansion] = STATE(1154), - [aux_sym_heredoc_repeat1] = STATE(1736), - [sym__heredoc_middle] = ACTIONS(2270), - [sym__heredoc_end] = ACTIONS(4455), - [anon_sym_DOLLAR] = ACTIONS(2274), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2276), - [sym_comment] = ACTIONS(56), - }, - [1620] = { - [sym_file_redirect] = STATE(527), - [sym_heredoc_redirect] = STATE(527), - [sym_herestring_redirect] = STATE(527), - [aux_sym_while_statement_repeat1] = STATE(1045), - [sym_file_descriptor] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_RPAREN] = ACTIONS(4459), - [anon_sym_PIPE_AMP] = ACTIONS(4459), - [anon_sym_AMP_AMP] = ACTIONS(4459), - [anon_sym_PIPE_PIPE] = ACTIONS(4459), - [anon_sym_LT] = ACTIONS(950), - [anon_sym_GT] = ACTIONS(950), - [anon_sym_GT_GT] = ACTIONS(952), - [anon_sym_AMP_GT] = ACTIONS(950), - [anon_sym_AMP_GT_GT] = ACTIONS(952), - [anon_sym_LT_AMP] = ACTIONS(952), - [anon_sym_GT_AMP] = ACTIONS(952), - [anon_sym_LT_LT] = ACTIONS(954), - [anon_sym_LT_LT_DASH] = ACTIONS(956), - [anon_sym_LT_LT_LT] = ACTIONS(958), - [sym_comment] = ACTIONS(56), - }, - [1621] = { - [sym_string] = STATE(2107), - [sym_simple_expansion] = STATE(2107), - [sym_string_expansion] = STATE(2107), - [sym_expansion] = STATE(2107), - [sym_command_substitution] = STATE(2107), - [sym_process_substitution] = STATE(2107), - [sym__special_characters] = ACTIONS(4461), - [anon_sym_DQUOTE] = ACTIONS(2112), - [anon_sym_DOLLAR] = ACTIONS(2114), - [sym_raw_string] = ACTIONS(4463), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2118), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2120), - [anon_sym_BQUOTE] = ACTIONS(2122), - [anon_sym_LT_LPAREN] = ACTIONS(2124), - [anon_sym_GT_LPAREN] = ACTIONS(2124), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4461), - }, - [1622] = { - [aux_sym_concatenation_repeat1] = STATE(2108), - [sym_file_descriptor] = ACTIONS(760), - [sym__concat] = ACTIONS(3405), - [sym_variable_name] = ACTIONS(760), - [anon_sym_PIPE] = ACTIONS(1501), - [anon_sym_PIPE_AMP] = ACTIONS(760), - [anon_sym_AMP_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(760), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(760), - [anon_sym_AMP_GT] = ACTIONS(1501), - [anon_sym_AMP_GT_GT] = ACTIONS(760), - [anon_sym_LT_AMP] = ACTIONS(760), - [anon_sym_GT_AMP] = ACTIONS(760), - [sym__special_characters] = ACTIONS(1501), - [anon_sym_DQUOTE] = ACTIONS(760), - [anon_sym_DOLLAR] = ACTIONS(1501), - [sym_raw_string] = ACTIONS(760), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(760), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(760), - [anon_sym_BQUOTE] = ACTIONS(760), - [anon_sym_LT_LPAREN] = ACTIONS(760), - [anon_sym_GT_LPAREN] = ACTIONS(760), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1501), - }, - [1623] = { - [sym_file_descriptor] = ACTIONS(764), - [sym__concat] = ACTIONS(764), - [sym_variable_name] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_PIPE_AMP] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(1503), - [anon_sym_GT_GT] = ACTIONS(764), - [anon_sym_AMP_GT] = ACTIONS(1503), - [anon_sym_AMP_GT_GT] = ACTIONS(764), - [anon_sym_LT_AMP] = ACTIONS(764), - [anon_sym_GT_AMP] = ACTIONS(764), - [sym__special_characters] = ACTIONS(1503), - [anon_sym_DQUOTE] = ACTIONS(764), - [anon_sym_DOLLAR] = ACTIONS(1503), - [sym_raw_string] = ACTIONS(764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(764), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(764), - [anon_sym_BQUOTE] = ACTIONS(764), - [anon_sym_LT_LPAREN] = ACTIONS(764), - [anon_sym_GT_LPAREN] = ACTIONS(764), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1503), - }, - [1624] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(4465), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [1625] = { - [sym_file_descriptor] = ACTIONS(796), - [sym__concat] = ACTIONS(796), - [sym_variable_name] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_GT_GT] = ACTIONS(796), - [anon_sym_AMP_GT] = ACTIONS(1507), - [anon_sym_AMP_GT_GT] = ACTIONS(796), - [anon_sym_LT_AMP] = ACTIONS(796), - [anon_sym_GT_AMP] = ACTIONS(796), - [sym__special_characters] = ACTIONS(1507), - [anon_sym_DQUOTE] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(1507), - [sym_raw_string] = ACTIONS(796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [anon_sym_LT_LPAREN] = ACTIONS(796), - [anon_sym_GT_LPAREN] = ACTIONS(796), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1507), - }, - [1626] = { - [sym_file_descriptor] = ACTIONS(800), - [sym__concat] = ACTIONS(800), - [sym_variable_name] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_PIPE_AMP] = ACTIONS(800), - [anon_sym_AMP_AMP] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_GT_GT] = ACTIONS(800), - [anon_sym_AMP_GT] = ACTIONS(1509), - [anon_sym_AMP_GT_GT] = ACTIONS(800), - [anon_sym_LT_AMP] = ACTIONS(800), - [anon_sym_GT_AMP] = ACTIONS(800), - [sym__special_characters] = ACTIONS(1509), - [anon_sym_DQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR] = ACTIONS(1509), - [sym_raw_string] = ACTIONS(800), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(800), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(800), - [anon_sym_BQUOTE] = ACTIONS(800), - [anon_sym_LT_LPAREN] = ACTIONS(800), - [anon_sym_GT_LPAREN] = ACTIONS(800), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1509), - }, - [1627] = { - [sym_file_descriptor] = ACTIONS(804), - [sym__concat] = ACTIONS(804), - [sym_variable_name] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_PIPE_AMP] = ACTIONS(804), - [anon_sym_AMP_AMP] = ACTIONS(804), - [anon_sym_PIPE_PIPE] = ACTIONS(804), - [anon_sym_LT] = ACTIONS(1511), - [anon_sym_GT] = ACTIONS(1511), - [anon_sym_GT_GT] = ACTIONS(804), - [anon_sym_AMP_GT] = ACTIONS(1511), - [anon_sym_AMP_GT_GT] = ACTIONS(804), - [anon_sym_LT_AMP] = ACTIONS(804), - [anon_sym_GT_AMP] = ACTIONS(804), - [sym__special_characters] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(804), - [anon_sym_DOLLAR] = ACTIONS(1511), - [sym_raw_string] = ACTIONS(804), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(804), - [anon_sym_BQUOTE] = ACTIONS(804), - [anon_sym_LT_LPAREN] = ACTIONS(804), - [anon_sym_GT_LPAREN] = ACTIONS(804), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1511), - }, - [1628] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(4467), - [sym_comment] = ACTIONS(56), - }, - [1629] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2112), - [anon_sym_RBRACE] = ACTIONS(4469), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1630] = { - [sym_subscript] = STATE(2116), - [sym_variable_name] = ACTIONS(4471), - [anon_sym_DOLLAR] = ACTIONS(4473), - [anon_sym_DASH] = ACTIONS(4473), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4473), - [anon_sym_AT] = ACTIONS(4473), - [anon_sym_QMARK] = ACTIONS(4473), - [anon_sym_0] = ACTIONS(4477), - [anon_sym__] = ACTIONS(4477), - }, - [1631] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2118), - [anon_sym_RBRACE] = ACTIONS(4479), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1632] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2120), - [anon_sym_RBRACE] = ACTIONS(4481), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1633] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4483), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [1634] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4483), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1635] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(4483), - [sym_comment] = ACTIONS(56), - }, - [1636] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(4483), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1637] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4485), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [1638] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4485), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1639] = { - [sym_file_redirect] = STATE(527), - [sym_heredoc_redirect] = STATE(527), - [sym_herestring_redirect] = STATE(527), - [aux_sym_while_statement_repeat1] = STATE(1130), - [sym_file_descriptor] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(4313), - [anon_sym_PIPE_AMP] = ACTIONS(4315), - [anon_sym_AMP_AMP] = ACTIONS(4315), - [anon_sym_PIPE_PIPE] = ACTIONS(4315), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_GT] = ACTIONS(1038), - [anon_sym_GT_GT] = ACTIONS(1040), - [anon_sym_AMP_GT] = ACTIONS(1038), - [anon_sym_AMP_GT_GT] = ACTIONS(1040), - [anon_sym_LT_AMP] = ACTIONS(1040), - [anon_sym_GT_AMP] = ACTIONS(1040), - [anon_sym_LT_LT] = ACTIONS(954), - [anon_sym_LT_LT_DASH] = ACTIONS(956), - [anon_sym_LT_LT_LT] = ACTIONS(1042), - [anon_sym_BQUOTE] = ACTIONS(4315), - [sym_comment] = ACTIONS(56), - }, - [1640] = { - [sym_compound_statement] = STATE(2123), - [anon_sym_LBRACE] = ACTIONS(1960), - [sym_comment] = ACTIONS(56), - }, - [1641] = { - [anon_sym_LT] = ACTIONS(4487), - [anon_sym_GT] = ACTIONS(4487), - [anon_sym_GT_GT] = ACTIONS(4489), - [anon_sym_AMP_GT] = ACTIONS(4487), - [anon_sym_AMP_GT_GT] = ACTIONS(4489), - [anon_sym_LT_AMP] = ACTIONS(4489), - [anon_sym_GT_AMP] = ACTIONS(4489), - [sym_comment] = ACTIONS(56), - }, - [1642] = { - [sym_concatenation] = STATE(2054), - [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), - [sym__special_characters] = ACTIONS(4491), - [anon_sym_DQUOTE] = ACTIONS(4493), - [anon_sym_DOLLAR] = ACTIONS(4495), - [sym_raw_string] = ACTIONS(4497), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4501), - [anon_sym_BQUOTE] = ACTIONS(4503), - [anon_sym_LT_LPAREN] = ACTIONS(4505), - [anon_sym_GT_LPAREN] = ACTIONS(4505), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4507), - }, - [1643] = { - [aux_sym_concatenation_repeat1] = STATE(1060), - [sym__concat] = ACTIONS(2132), - [sym_variable_name] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(3090), - [anon_sym_PIPE_AMP] = ACTIONS(1259), - [anon_sym_AMP_AMP] = ACTIONS(1259), - [anon_sym_PIPE_PIPE] = ACTIONS(1259), - [sym__special_characters] = ACTIONS(3090), - [anon_sym_DQUOTE] = ACTIONS(1259), - [anon_sym_DOLLAR] = ACTIONS(3090), - [sym_raw_string] = ACTIONS(1259), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1259), - [anon_sym_BQUOTE] = ACTIONS(1259), - [anon_sym_LT_LPAREN] = ACTIONS(1259), - [anon_sym_GT_LPAREN] = ACTIONS(1259), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3090), - [sym_word] = ACTIONS(1263), - }, - [1644] = { - [aux_sym_concatenation_repeat1] = STATE(1060), - [sym__concat] = ACTIONS(2132), - [sym_variable_name] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(3084), - [anon_sym_PIPE_AMP] = ACTIONS(1235), - [anon_sym_AMP_AMP] = ACTIONS(1235), - [anon_sym_PIPE_PIPE] = ACTIONS(1235), - [sym__special_characters] = ACTIONS(3084), - [anon_sym_DQUOTE] = ACTIONS(1235), - [anon_sym_DOLLAR] = ACTIONS(3084), - [sym_raw_string] = ACTIONS(1235), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1235), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1235), - [anon_sym_BQUOTE] = ACTIONS(1235), - [anon_sym_LT_LPAREN] = ACTIONS(1235), - [anon_sym_GT_LPAREN] = ACTIONS(1235), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3084), - [sym_word] = ACTIONS(1237), - }, - [1645] = { - [sym__concat] = ACTIONS(1790), - [sym_variable_name] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_PIPE_AMP] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(1790), - [anon_sym_PIPE_PIPE] = ACTIONS(1790), - [sym__special_characters] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_LT_LPAREN] = ACTIONS(1790), - [anon_sym_GT_LPAREN] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2816), - [sym_word] = ACTIONS(1792), - }, - [1646] = { - [aux_sym_concatenation_repeat1] = STATE(1646), - [sym__concat] = ACTIONS(4509), - [sym_variable_name] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_PIPE_AMP] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(1790), - [anon_sym_PIPE_PIPE] = ACTIONS(1790), - [sym__special_characters] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_LT_LPAREN] = ACTIONS(1790), - [anon_sym_GT_LPAREN] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2816), - [sym_word] = ACTIONS(1792), - }, - [1647] = { - [sym__concat] = ACTIONS(1821), - [sym_variable_name] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(2821), - [anon_sym_PIPE_AMP] = ACTIONS(1821), - [anon_sym_AMP_AMP] = ACTIONS(1821), - [anon_sym_PIPE_PIPE] = ACTIONS(1821), - [sym__special_characters] = ACTIONS(2821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [anon_sym_DOLLAR] = ACTIONS(2821), - [sym_raw_string] = ACTIONS(1821), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1821), - [anon_sym_BQUOTE] = ACTIONS(1821), - [anon_sym_LT_LPAREN] = ACTIONS(1821), - [anon_sym_GT_LPAREN] = ACTIONS(1821), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2821), - [sym_word] = ACTIONS(1823), - }, - [1648] = { - [sym_concatenation] = STATE(2136), - [sym_string] = STATE(2135), - [sym_simple_expansion] = STATE(2135), - [sym_string_expansion] = STATE(2135), - [sym_expansion] = STATE(2135), - [sym_command_substitution] = STATE(2135), - [sym_process_substitution] = STATE(2135), - [anon_sym_RBRACE] = ACTIONS(4512), - [sym__special_characters] = ACTIONS(4514), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(4516), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4518), - }, - [1649] = { - [sym__concat] = ACTIONS(1866), - [sym_variable_name] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_PIPE_AMP] = ACTIONS(1866), - [anon_sym_AMP_AMP] = ACTIONS(1866), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [sym__special_characters] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(2831), - [sym_raw_string] = ACTIONS(1866), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1866), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1866), - [anon_sym_BQUOTE] = ACTIONS(1866), - [anon_sym_LT_LPAREN] = ACTIONS(1866), - [anon_sym_GT_LPAREN] = ACTIONS(1866), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2831), - [sym_word] = ACTIONS(1868), - }, - [1650] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4520), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1651] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(4522), - [sym_comment] = ACTIONS(56), - }, - [1652] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2140), - [anon_sym_RBRACE] = ACTIONS(4524), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1653] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2142), - [anon_sym_RBRACE] = ACTIONS(4526), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1654] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2143), - [anon_sym_RBRACE] = ACTIONS(4512), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1655] = { - [sym__concat] = ACTIONS(1910), - [sym_variable_name] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(2841), - [anon_sym_PIPE_AMP] = ACTIONS(1910), - [anon_sym_AMP_AMP] = ACTIONS(1910), - [anon_sym_PIPE_PIPE] = ACTIONS(1910), - [sym__special_characters] = ACTIONS(2841), - [anon_sym_DQUOTE] = ACTIONS(1910), - [anon_sym_DOLLAR] = ACTIONS(2841), - [sym_raw_string] = ACTIONS(1910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1910), - [anon_sym_BQUOTE] = ACTIONS(1910), - [anon_sym_LT_LPAREN] = ACTIONS(1910), - [anon_sym_GT_LPAREN] = ACTIONS(1910), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2841), - [sym_word] = ACTIONS(1912), - }, - [1656] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4528), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1657] = { - [sym__concat] = ACTIONS(1916), - [sym_variable_name] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(2845), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(2845), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(2845), - [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(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2845), - [sym_word] = ACTIONS(1918), - }, - [1658] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4512), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1659] = { - [sym__concat] = ACTIONS(2064), - [sym_variable_name] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2847), - [anon_sym_PIPE_AMP] = ACTIONS(2064), - [anon_sym_AMP_AMP] = ACTIONS(2064), - [anon_sym_PIPE_PIPE] = ACTIONS(2064), - [sym__special_characters] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2847), - [sym_raw_string] = ACTIONS(2064), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2064), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2064), - [anon_sym_BQUOTE] = ACTIONS(2064), - [anon_sym_LT_LPAREN] = ACTIONS(2064), - [anon_sym_GT_LPAREN] = ACTIONS(2064), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2847), - [sym_word] = ACTIONS(2066), - }, - [1660] = { - [sym__concat] = ACTIONS(2228), - [sym_variable_name] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_PIPE_AMP] = ACTIONS(2228), - [anon_sym_AMP_AMP] = ACTIONS(2228), - [anon_sym_PIPE_PIPE] = ACTIONS(2228), - [sym__special_characters] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2228), - [anon_sym_DOLLAR] = ACTIONS(2849), - [sym_raw_string] = ACTIONS(2228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2228), - [anon_sym_BQUOTE] = ACTIONS(2228), - [anon_sym_LT_LPAREN] = ACTIONS(2228), - [anon_sym_GT_LPAREN] = ACTIONS(2228), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2849), - [sym_word] = ACTIONS(2230), - }, - [1661] = { - [sym__concat] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_PIPE_AMP] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(1790), - [anon_sym_PIPE_PIPE] = ACTIONS(1790), - [sym__special_characters] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_LT_LPAREN] = ACTIONS(1790), - [anon_sym_GT_LPAREN] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2816), - [sym_word] = ACTIONS(1792), - }, - [1662] = { - [aux_sym_concatenation_repeat1] = STATE(1662), - [sym__concat] = ACTIONS(4530), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_PIPE_AMP] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(1790), - [anon_sym_PIPE_PIPE] = ACTIONS(1790), - [sym__special_characters] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_LT_LPAREN] = ACTIONS(1790), - [anon_sym_GT_LPAREN] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2816), - [sym_word] = ACTIONS(1792), - }, - [1663] = { - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(2821), - [anon_sym_PIPE_AMP] = ACTIONS(1821), - [anon_sym_AMP_AMP] = ACTIONS(1821), - [anon_sym_PIPE_PIPE] = ACTIONS(1821), - [sym__special_characters] = ACTIONS(2821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [anon_sym_DOLLAR] = ACTIONS(2821), - [sym_raw_string] = ACTIONS(1821), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1821), - [anon_sym_BQUOTE] = ACTIONS(1821), - [anon_sym_LT_LPAREN] = ACTIONS(1821), - [anon_sym_GT_LPAREN] = ACTIONS(1821), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2821), - [sym_word] = ACTIONS(1823), - }, - [1664] = { - [sym_concatenation] = STATE(2148), - [sym_string] = STATE(2147), - [sym_simple_expansion] = STATE(2147), - [sym_string_expansion] = STATE(2147), - [sym_expansion] = STATE(2147), - [sym_command_substitution] = STATE(2147), - [sym_process_substitution] = STATE(2147), - [anon_sym_RBRACE] = ACTIONS(4533), - [sym__special_characters] = ACTIONS(4535), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(4537), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4539), - }, - [1665] = { - [sym__concat] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_PIPE_AMP] = ACTIONS(1866), - [anon_sym_AMP_AMP] = ACTIONS(1866), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [sym__special_characters] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(2831), - [sym_raw_string] = ACTIONS(1866), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1866), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1866), - [anon_sym_BQUOTE] = ACTIONS(1866), - [anon_sym_LT_LPAREN] = ACTIONS(1866), - [anon_sym_GT_LPAREN] = ACTIONS(1866), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2831), - [sym_word] = ACTIONS(1868), - }, - [1666] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1667] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(4543), - [sym_comment] = ACTIONS(56), - }, - [1668] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2152), - [anon_sym_RBRACE] = ACTIONS(4545), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1669] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2154), - [anon_sym_RBRACE] = ACTIONS(4547), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1670] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2155), - [anon_sym_RBRACE] = ACTIONS(4533), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1671] = { - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(2841), - [anon_sym_PIPE_AMP] = ACTIONS(1910), - [anon_sym_AMP_AMP] = ACTIONS(1910), - [anon_sym_PIPE_PIPE] = ACTIONS(1910), - [sym__special_characters] = ACTIONS(2841), - [anon_sym_DQUOTE] = ACTIONS(1910), - [anon_sym_DOLLAR] = ACTIONS(2841), - [sym_raw_string] = ACTIONS(1910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1910), - [anon_sym_BQUOTE] = ACTIONS(1910), - [anon_sym_LT_LPAREN] = ACTIONS(1910), - [anon_sym_GT_LPAREN] = ACTIONS(1910), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2841), - [sym_word] = ACTIONS(1912), - }, - [1672] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4549), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1673] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(2845), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(2845), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(2845), - [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(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2845), - [sym_word] = ACTIONS(1918), - }, - [1674] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4533), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1675] = { - [sym__concat] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2847), - [anon_sym_PIPE_AMP] = ACTIONS(2064), - [anon_sym_AMP_AMP] = ACTIONS(2064), - [anon_sym_PIPE_PIPE] = ACTIONS(2064), - [sym__special_characters] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2847), - [sym_raw_string] = ACTIONS(2064), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2064), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2064), - [anon_sym_BQUOTE] = ACTIONS(2064), - [anon_sym_LT_LPAREN] = ACTIONS(2064), - [anon_sym_GT_LPAREN] = ACTIONS(2064), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2847), - [sym_word] = ACTIONS(2066), - }, - [1676] = { - [sym__concat] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_PIPE_AMP] = ACTIONS(2228), - [anon_sym_AMP_AMP] = ACTIONS(2228), - [anon_sym_PIPE_PIPE] = ACTIONS(2228), - [sym__special_characters] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2228), - [anon_sym_DOLLAR] = ACTIONS(2849), - [sym_raw_string] = ACTIONS(2228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2228), - [anon_sym_BQUOTE] = ACTIONS(2228), - [anon_sym_LT_LPAREN] = ACTIONS(2228), - [anon_sym_GT_LPAREN] = ACTIONS(2228), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2849), - [sym_word] = ACTIONS(2230), - }, - [1677] = { - [sym_file_descriptor] = ACTIONS(2969), - [sym__concat] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(4098), - [anon_sym_PIPE_AMP] = ACTIONS(2969), - [anon_sym_AMP_AMP] = ACTIONS(2969), - [anon_sym_PIPE_PIPE] = ACTIONS(2969), - [anon_sym_LT] = ACTIONS(4098), - [anon_sym_GT] = ACTIONS(4098), - [anon_sym_GT_GT] = ACTIONS(2969), - [anon_sym_AMP_GT] = ACTIONS(4098), - [anon_sym_AMP_GT_GT] = ACTIONS(2969), - [anon_sym_LT_AMP] = ACTIONS(2969), - [anon_sym_GT_AMP] = ACTIONS(2969), - [anon_sym_LT_LT] = ACTIONS(4098), - [anon_sym_LT_LT_DASH] = ACTIONS(2969), - [anon_sym_LT_LT_LT] = ACTIONS(2969), - [sym__special_characters] = ACTIONS(4098), - [anon_sym_DQUOTE] = ACTIONS(2969), - [anon_sym_DOLLAR] = ACTIONS(4098), - [sym_raw_string] = ACTIONS(2969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2969), - [anon_sym_BQUOTE] = ACTIONS(2969), - [anon_sym_LT_LPAREN] = ACTIONS(2969), - [anon_sym_GT_LPAREN] = ACTIONS(2969), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4098), - }, - [1678] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4551), - [sym_comment] = ACTIONS(56), - }, - [1679] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4553), - [sym_comment] = ACTIONS(56), - }, - [1680] = { - [anon_sym_RBRACE] = ACTIONS(4553), - [sym_comment] = ACTIONS(56), - }, - [1681] = { - [sym_file_descriptor] = ACTIONS(3023), - [sym__concat] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(4104), - [anon_sym_PIPE_AMP] = ACTIONS(3023), - [anon_sym_AMP_AMP] = ACTIONS(3023), - [anon_sym_PIPE_PIPE] = ACTIONS(3023), - [anon_sym_LT] = ACTIONS(4104), - [anon_sym_GT] = ACTIONS(4104), - [anon_sym_GT_GT] = ACTIONS(3023), - [anon_sym_AMP_GT] = ACTIONS(4104), - [anon_sym_AMP_GT_GT] = ACTIONS(3023), - [anon_sym_LT_AMP] = ACTIONS(3023), - [anon_sym_GT_AMP] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(4104), - [anon_sym_LT_LT_DASH] = ACTIONS(3023), - [anon_sym_LT_LT_LT] = ACTIONS(3023), - [sym__special_characters] = ACTIONS(4104), - [anon_sym_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR] = ACTIONS(4104), - [sym_raw_string] = ACTIONS(3023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3023), - [anon_sym_BQUOTE] = ACTIONS(3023), - [anon_sym_LT_LPAREN] = ACTIONS(3023), - [anon_sym_GT_LPAREN] = ACTIONS(3023), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4104), - }, - [1682] = { - [sym_concatenation] = STATE(2161), - [sym_string] = STATE(2160), - [sym_simple_expansion] = STATE(2160), - [sym_string_expansion] = STATE(2160), - [sym_expansion] = STATE(2160), - [sym_command_substitution] = STATE(2160), - [sym_process_substitution] = STATE(2160), - [anon_sym_RBRACE] = ACTIONS(4553), - [sym__special_characters] = ACTIONS(4555), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(4557), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4559), - }, - [1683] = { - [sym_file_descriptor] = ACTIONS(3068), - [sym__concat] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(4112), - [anon_sym_PIPE_AMP] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(4112), - [anon_sym_GT] = ACTIONS(4112), - [anon_sym_GT_GT] = ACTIONS(3068), - [anon_sym_AMP_GT] = ACTIONS(4112), - [anon_sym_AMP_GT_GT] = ACTIONS(3068), - [anon_sym_LT_AMP] = ACTIONS(3068), - [anon_sym_GT_AMP] = ACTIONS(3068), - [anon_sym_LT_LT] = ACTIONS(4112), - [anon_sym_LT_LT_DASH] = ACTIONS(3068), - [anon_sym_LT_LT_LT] = ACTIONS(3068), - [sym__special_characters] = ACTIONS(4112), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(4112), - [sym_raw_string] = ACTIONS(3068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3068), - [anon_sym_BQUOTE] = ACTIONS(3068), - [anon_sym_LT_LPAREN] = ACTIONS(3068), - [anon_sym_GT_LPAREN] = ACTIONS(3068), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4112), - }, - [1684] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4561), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1685] = { - [sym_file_descriptor] = ACTIONS(3074), - [sym__concat] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(4116), - [anon_sym_PIPE_AMP] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_GT_GT] = ACTIONS(3074), - [anon_sym_AMP_GT] = ACTIONS(4116), - [anon_sym_AMP_GT_GT] = ACTIONS(3074), - [anon_sym_LT_AMP] = ACTIONS(3074), - [anon_sym_GT_AMP] = ACTIONS(3074), - [anon_sym_LT_LT] = ACTIONS(4116), - [anon_sym_LT_LT_DASH] = ACTIONS(3074), - [anon_sym_LT_LT_LT] = ACTIONS(3074), - [sym__special_characters] = ACTIONS(4116), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_DOLLAR] = ACTIONS(4116), - [sym_raw_string] = ACTIONS(3074), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3074), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3074), - [anon_sym_BQUOTE] = ACTIONS(3074), - [anon_sym_LT_LPAREN] = ACTIONS(3074), - [anon_sym_GT_LPAREN] = ACTIONS(3074), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4116), - }, - [1686] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4563), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1687] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4553), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1688] = { - [sym_file_descriptor] = ACTIONS(3080), - [sym__concat] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(4120), - [anon_sym_PIPE_AMP] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(4120), - [anon_sym_GT] = ACTIONS(4120), - [anon_sym_GT_GT] = ACTIONS(3080), - [anon_sym_AMP_GT] = ACTIONS(4120), - [anon_sym_AMP_GT_GT] = ACTIONS(3080), - [anon_sym_LT_AMP] = ACTIONS(3080), - [anon_sym_GT_AMP] = ACTIONS(3080), - [anon_sym_LT_LT] = ACTIONS(4120), - [anon_sym_LT_LT_DASH] = ACTIONS(3080), - [anon_sym_LT_LT_LT] = ACTIONS(3080), - [sym__special_characters] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(3080), - [anon_sym_DOLLAR] = ACTIONS(4120), - [sym_raw_string] = ACTIONS(3080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3080), - [anon_sym_BQUOTE] = ACTIONS(3080), - [anon_sym_LT_LPAREN] = ACTIONS(3080), - [anon_sym_GT_LPAREN] = ACTIONS(3080), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4120), - }, - [1689] = { - [sym_file_redirect] = STATE(2089), - [sym_file_descriptor] = ACTIONS(3427), - [anon_sym_PIPE] = ACTIONS(4359), - [anon_sym_PIPE_AMP] = ACTIONS(4361), - [anon_sym_AMP_AMP] = ACTIONS(4361), - [anon_sym_PIPE_PIPE] = ACTIONS(4361), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_GT] = ACTIONS(3429), - [anon_sym_GT_GT] = ACTIONS(3431), - [anon_sym_AMP_GT] = ACTIONS(3429), - [anon_sym_AMP_GT_GT] = ACTIONS(3431), - [anon_sym_LT_AMP] = ACTIONS(3431), - [anon_sym_GT_AMP] = ACTIONS(3431), - [anon_sym_BQUOTE] = ACTIONS(4361), - [sym_comment] = ACTIONS(56), - }, - [1690] = { - [aux_sym_concatenation_repeat1] = STATE(1693), - [sym_file_descriptor] = ACTIONS(1199), - [sym__concat] = ACTIONS(3579), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_PIPE_AMP] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_LT] = ACTIONS(1201), - [anon_sym_GT] = ACTIONS(1201), - [anon_sym_GT_GT] = ACTIONS(1199), - [anon_sym_AMP_GT] = ACTIONS(1201), - [anon_sym_AMP_GT_GT] = ACTIONS(1199), - [anon_sym_LT_AMP] = ACTIONS(1199), - [anon_sym_GT_AMP] = ACTIONS(1199), - [anon_sym_LT_LT] = ACTIONS(1201), - [anon_sym_LT_LT_DASH] = ACTIONS(1199), - [anon_sym_LT_LT_LT] = ACTIONS(1199), - [anon_sym_BQUOTE] = ACTIONS(1199), - [sym_comment] = ACTIONS(56), - }, - [1691] = { - [aux_sym_concatenation_repeat1] = STATE(1693), - [sym_file_descriptor] = ACTIONS(1203), - [sym__concat] = ACTIONS(3579), - [anon_sym_PIPE] = ACTIONS(1205), - [anon_sym_PIPE_AMP] = ACTIONS(1203), - [anon_sym_AMP_AMP] = ACTIONS(1203), - [anon_sym_PIPE_PIPE] = ACTIONS(1203), - [anon_sym_LT] = ACTIONS(1205), - [anon_sym_GT] = ACTIONS(1205), - [anon_sym_GT_GT] = ACTIONS(1203), - [anon_sym_AMP_GT] = ACTIONS(1205), - [anon_sym_AMP_GT_GT] = ACTIONS(1203), - [anon_sym_LT_AMP] = ACTIONS(1203), - [anon_sym_GT_AMP] = ACTIONS(1203), - [anon_sym_LT_LT] = ACTIONS(1205), - [anon_sym_LT_LT_DASH] = ACTIONS(1203), - [anon_sym_LT_LT_LT] = ACTIONS(1203), - [anon_sym_BQUOTE] = ACTIONS(1203), - [sym_comment] = ACTIONS(56), - }, - [1692] = { - [sym_string] = STATE(2164), - [sym_simple_expansion] = STATE(2164), - [sym_string_expansion] = STATE(2164), - [sym_expansion] = STATE(2164), - [sym_command_substitution] = STATE(2164), - [sym_process_substitution] = STATE(2164), - [sym__special_characters] = ACTIONS(4565), - [anon_sym_DQUOTE] = ACTIONS(2206), - [anon_sym_DOLLAR] = ACTIONS(2208), - [sym_raw_string] = ACTIONS(4567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2212), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2214), - [anon_sym_BQUOTE] = ACTIONS(2216), - [anon_sym_LT_LPAREN] = ACTIONS(2218), - [anon_sym_GT_LPAREN] = ACTIONS(2218), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4565), - }, - [1693] = { - [aux_sym_concatenation_repeat1] = STATE(2165), - [sym_file_descriptor] = ACTIONS(760), - [sym__concat] = ACTIONS(3579), - [anon_sym_PIPE] = ACTIONS(1501), - [anon_sym_PIPE_AMP] = ACTIONS(760), - [anon_sym_AMP_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(760), - [anon_sym_LT] = ACTIONS(1501), - [anon_sym_GT] = ACTIONS(1501), - [anon_sym_GT_GT] = ACTIONS(760), - [anon_sym_AMP_GT] = ACTIONS(1501), - [anon_sym_AMP_GT_GT] = ACTIONS(760), - [anon_sym_LT_AMP] = ACTIONS(760), - [anon_sym_GT_AMP] = ACTIONS(760), - [anon_sym_LT_LT] = ACTIONS(1501), - [anon_sym_LT_LT_DASH] = ACTIONS(760), - [anon_sym_LT_LT_LT] = ACTIONS(760), - [anon_sym_BQUOTE] = ACTIONS(760), - [sym_comment] = ACTIONS(56), - }, - [1694] = { - [sym_file_descriptor] = ACTIONS(764), - [sym__concat] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_PIPE_AMP] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(764), - [anon_sym_LT] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(1503), - [anon_sym_GT_GT] = ACTIONS(764), - [anon_sym_AMP_GT] = ACTIONS(1503), - [anon_sym_AMP_GT_GT] = ACTIONS(764), - [anon_sym_LT_AMP] = ACTIONS(764), - [anon_sym_GT_AMP] = ACTIONS(764), - [anon_sym_LT_LT] = ACTIONS(1503), - [anon_sym_LT_LT_DASH] = ACTIONS(764), - [anon_sym_LT_LT_LT] = ACTIONS(764), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_comment] = ACTIONS(56), - }, - [1695] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(4569), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [1696] = { - [sym_file_descriptor] = ACTIONS(796), - [sym__concat] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [anon_sym_LT] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_GT_GT] = ACTIONS(796), - [anon_sym_AMP_GT] = ACTIONS(1507), - [anon_sym_AMP_GT_GT] = ACTIONS(796), - [anon_sym_LT_AMP] = ACTIONS(796), - [anon_sym_GT_AMP] = ACTIONS(796), - [anon_sym_LT_LT] = ACTIONS(1507), - [anon_sym_LT_LT_DASH] = ACTIONS(796), - [anon_sym_LT_LT_LT] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [sym_comment] = ACTIONS(56), - }, - [1697] = { - [sym_file_descriptor] = ACTIONS(800), - [sym__concat] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_PIPE_AMP] = ACTIONS(800), - [anon_sym_AMP_AMP] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(1509), - [anon_sym_GT] = ACTIONS(1509), - [anon_sym_GT_GT] = ACTIONS(800), - [anon_sym_AMP_GT] = ACTIONS(1509), - [anon_sym_AMP_GT_GT] = ACTIONS(800), - [anon_sym_LT_AMP] = ACTIONS(800), - [anon_sym_GT_AMP] = ACTIONS(800), - [anon_sym_LT_LT] = ACTIONS(1509), - [anon_sym_LT_LT_DASH] = ACTIONS(800), - [anon_sym_LT_LT_LT] = ACTIONS(800), - [anon_sym_BQUOTE] = ACTIONS(800), - [sym_comment] = ACTIONS(56), - }, - [1698] = { - [sym_file_descriptor] = ACTIONS(804), - [sym__concat] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_PIPE_AMP] = ACTIONS(804), - [anon_sym_AMP_AMP] = ACTIONS(804), - [anon_sym_PIPE_PIPE] = ACTIONS(804), - [anon_sym_LT] = ACTIONS(1511), - [anon_sym_GT] = ACTIONS(1511), - [anon_sym_GT_GT] = ACTIONS(804), - [anon_sym_AMP_GT] = ACTIONS(1511), - [anon_sym_AMP_GT_GT] = ACTIONS(804), - [anon_sym_LT_AMP] = ACTIONS(804), - [anon_sym_GT_AMP] = ACTIONS(804), - [anon_sym_LT_LT] = ACTIONS(1511), - [anon_sym_LT_LT_DASH] = ACTIONS(804), - [anon_sym_LT_LT_LT] = ACTIONS(804), - [anon_sym_BQUOTE] = ACTIONS(804), - [sym_comment] = ACTIONS(56), - }, - [1699] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(4571), - [sym_comment] = ACTIONS(56), - }, - [1700] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2169), - [anon_sym_RBRACE] = ACTIONS(4573), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1701] = { - [sym_subscript] = STATE(2173), - [sym_variable_name] = ACTIONS(4575), - [anon_sym_DOLLAR] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4579), - [anon_sym_STAR] = ACTIONS(4577), - [anon_sym_AT] = ACTIONS(4577), - [anon_sym_QMARK] = ACTIONS(4577), - [anon_sym_0] = ACTIONS(4581), - [anon_sym__] = ACTIONS(4581), - }, - [1702] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2175), - [anon_sym_RBRACE] = ACTIONS(4583), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1703] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2177), - [anon_sym_RBRACE] = ACTIONS(4585), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1704] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4587), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [1705] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4587), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1706] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(4587), - [sym_comment] = ACTIONS(56), - }, - [1707] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(4587), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1708] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4589), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [1709] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4589), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1710] = { - [sym_file_redirect] = STATE(527), - [sym_heredoc_redirect] = STATE(527), - [sym_herestring_redirect] = STATE(527), - [aux_sym_while_statement_repeat1] = STATE(1130), - [sym_file_descriptor] = ACTIONS(1036), - [anon_sym_PIPE] = ACTIONS(4457), - [anon_sym_PIPE_AMP] = ACTIONS(4459), - [anon_sym_AMP_AMP] = ACTIONS(4459), - [anon_sym_PIPE_PIPE] = ACTIONS(4459), - [anon_sym_LT] = ACTIONS(1038), - [anon_sym_GT] = ACTIONS(1038), - [anon_sym_GT_GT] = ACTIONS(1040), - [anon_sym_AMP_GT] = ACTIONS(1038), - [anon_sym_AMP_GT_GT] = ACTIONS(1040), - [anon_sym_LT_AMP] = ACTIONS(1040), - [anon_sym_GT_AMP] = ACTIONS(1040), - [anon_sym_LT_LT] = ACTIONS(954), - [anon_sym_LT_LT_DASH] = ACTIONS(956), - [anon_sym_LT_LT_LT] = ACTIONS(1042), - [anon_sym_BQUOTE] = ACTIONS(4459), - [sym_comment] = ACTIONS(56), - }, - [1711] = { - [anon_sym_PIPE] = ACTIONS(3934), - [anon_sym_RPAREN] = ACTIONS(3934), - [anon_sym_SEMI_SEMI] = ACTIONS(3934), - [anon_sym_PIPE_AMP] = ACTIONS(3934), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3934), - [anon_sym_LF] = ACTIONS(3934), - [anon_sym_AMP] = ACTIONS(3934), - }, - [1712] = { - [sym_file_descriptor] = ACTIONS(1790), - [sym__concat] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [anon_sym_PIPE_AMP] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_GT_GT] = ACTIONS(1792), - [anon_sym_AMP_GT] = ACTIONS(1792), - [anon_sym_AMP_GT_GT] = ACTIONS(1792), - [anon_sym_LT_AMP] = ACTIONS(1792), - [anon_sym_GT_AMP] = ACTIONS(1792), - [anon_sym_LT_LT] = ACTIONS(1792), - [anon_sym_LT_LT_DASH] = ACTIONS(1792), - [anon_sym_LT_LT_LT] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - }, - [1713] = { - [aux_sym_concatenation_repeat1] = STATE(1713), - [sym_file_descriptor] = ACTIONS(1790), - [sym__concat] = ACTIONS(4591), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [anon_sym_PIPE_AMP] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_GT_GT] = ACTIONS(1792), - [anon_sym_AMP_GT] = ACTIONS(1792), - [anon_sym_AMP_GT_GT] = ACTIONS(1792), - [anon_sym_LT_AMP] = ACTIONS(1792), - [anon_sym_GT_AMP] = ACTIONS(1792), - [anon_sym_LT_LT] = ACTIONS(1792), - [anon_sym_LT_LT_DASH] = ACTIONS(1792), - [anon_sym_LT_LT_LT] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - }, - [1714] = { - [sym_file_descriptor] = ACTIONS(1821), - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_GT_GT] = ACTIONS(1823), - [anon_sym_AMP_GT] = ACTIONS(1823), - [anon_sym_AMP_GT_GT] = ACTIONS(1823), - [anon_sym_LT_AMP] = ACTIONS(1823), - [anon_sym_GT_AMP] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_LT_LT_DASH] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LF] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - }, - [1715] = { - [sym_concatenation] = STATE(2183), - [sym_string] = STATE(2182), - [sym_simple_expansion] = STATE(2182), - [sym_string_expansion] = STATE(2182), - [sym_expansion] = STATE(2182), - [sym_command_substitution] = STATE(2182), - [sym_process_substitution] = STATE(2182), - [anon_sym_RBRACE] = ACTIONS(4594), - [sym__special_characters] = ACTIONS(4596), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(4598), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4600), - }, - [1716] = { - [sym_file_descriptor] = ACTIONS(1866), - [sym__concat] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [anon_sym_PIPE_AMP] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_GT_GT] = ACTIONS(1868), - [anon_sym_AMP_GT] = ACTIONS(1868), - [anon_sym_AMP_GT_GT] = ACTIONS(1868), - [anon_sym_LT_AMP] = ACTIONS(1868), - [anon_sym_GT_AMP] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_LT_LT_DASH] = ACTIONS(1868), - [anon_sym_LT_LT_LT] = ACTIONS(1868), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - }, - [1717] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4602), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1718] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(4604), - [sym_comment] = ACTIONS(56), - }, - [1719] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2187), - [anon_sym_RBRACE] = ACTIONS(4606), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1720] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2189), - [anon_sym_RBRACE] = ACTIONS(4608), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1721] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2190), - [anon_sym_RBRACE] = ACTIONS(4594), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1722] = { - [sym_file_descriptor] = ACTIONS(1910), - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_SEMI_SEMI] = ACTIONS(1912), - [anon_sym_PIPE_AMP] = ACTIONS(1912), - [anon_sym_AMP_AMP] = ACTIONS(1912), - [anon_sym_PIPE_PIPE] = ACTIONS(1912), - [anon_sym_LT] = ACTIONS(1912), - [anon_sym_GT] = ACTIONS(1912), - [anon_sym_GT_GT] = ACTIONS(1912), - [anon_sym_AMP_GT] = ACTIONS(1912), - [anon_sym_AMP_GT_GT] = ACTIONS(1912), - [anon_sym_LT_AMP] = ACTIONS(1912), - [anon_sym_GT_AMP] = ACTIONS(1912), - [anon_sym_LT_LT] = ACTIONS(1912), - [anon_sym_LT_LT_DASH] = ACTIONS(1912), - [anon_sym_LT_LT_LT] = ACTIONS(1912), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_LF] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1912), - }, - [1723] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4610), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1724] = { - [sym_file_descriptor] = ACTIONS(1916), - [sym__concat] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_SEMI_SEMI] = ACTIONS(1918), - [anon_sym_PIPE_AMP] = ACTIONS(1918), - [anon_sym_AMP_AMP] = ACTIONS(1918), - [anon_sym_PIPE_PIPE] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_GT] = ACTIONS(1918), - [anon_sym_GT_GT] = ACTIONS(1918), - [anon_sym_AMP_GT] = ACTIONS(1918), - [anon_sym_AMP_GT_GT] = ACTIONS(1918), - [anon_sym_LT_AMP] = ACTIONS(1918), - [anon_sym_GT_AMP] = ACTIONS(1918), - [anon_sym_LT_LT] = ACTIONS(1918), - [anon_sym_LT_LT_DASH] = ACTIONS(1918), - [anon_sym_LT_LT_LT] = ACTIONS(1918), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_LF] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), - }, - [1725] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4594), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1726] = { - [sym_file_descriptor] = ACTIONS(2064), - [sym__concat] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_SEMI_SEMI] = ACTIONS(2066), - [anon_sym_PIPE_AMP] = ACTIONS(2066), - [anon_sym_AMP_AMP] = ACTIONS(2066), - [anon_sym_PIPE_PIPE] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_GT] = ACTIONS(2066), - [anon_sym_GT_GT] = ACTIONS(2066), - [anon_sym_AMP_GT] = ACTIONS(2066), - [anon_sym_AMP_GT_GT] = ACTIONS(2066), - [anon_sym_LT_AMP] = ACTIONS(2066), - [anon_sym_GT_AMP] = ACTIONS(2066), - [anon_sym_LT_LT] = ACTIONS(2066), - [anon_sym_LT_LT_DASH] = ACTIONS(2066), - [anon_sym_LT_LT_LT] = ACTIONS(2066), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_LF] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2066), - }, - [1727] = { - [sym_file_descriptor] = ACTIONS(2228), - [sym__concat] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_SEMI_SEMI] = ACTIONS(2230), - [anon_sym_PIPE_AMP] = ACTIONS(2230), - [anon_sym_AMP_AMP] = ACTIONS(2230), - [anon_sym_PIPE_PIPE] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_AMP_GT] = ACTIONS(2230), - [anon_sym_AMP_GT_GT] = ACTIONS(2230), - [anon_sym_LT_AMP] = ACTIONS(2230), - [anon_sym_GT_AMP] = ACTIONS(2230), - [anon_sym_LT_LT] = ACTIONS(2230), - [anon_sym_LT_LT_DASH] = ACTIONS(2230), - [anon_sym_LT_LT_LT] = ACTIONS(2230), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_LF] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - }, - [1728] = { - [sym__heredoc_middle] = ACTIONS(796), - [sym__heredoc_end] = ACTIONS(796), - [anon_sym_DOLLAR] = ACTIONS(1507), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), - [sym_comment] = ACTIONS(56), - }, - [1729] = { - [sym__heredoc_middle] = ACTIONS(800), - [sym__heredoc_end] = ACTIONS(800), - [anon_sym_DOLLAR] = ACTIONS(1509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(800), - [sym_comment] = ACTIONS(56), - }, - [1730] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(4612), - [sym_comment] = ACTIONS(56), - }, - [1731] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2194), - [anon_sym_RBRACE] = ACTIONS(4614), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1732] = { - [sym_subscript] = STATE(2198), - [sym_variable_name] = ACTIONS(4616), - [anon_sym_DOLLAR] = ACTIONS(4618), - [anon_sym_DASH] = ACTIONS(4618), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4620), - [anon_sym_STAR] = ACTIONS(4618), - [anon_sym_AT] = ACTIONS(4618), - [anon_sym_QMARK] = ACTIONS(4618), - [anon_sym_0] = ACTIONS(4622), - [anon_sym__] = ACTIONS(4622), - }, - [1733] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2200), - [anon_sym_RBRACE] = ACTIONS(4624), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1734] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2202), - [anon_sym_RBRACE] = ACTIONS(4626), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1735] = { - [sym_file_descriptor] = ACTIONS(4628), - [anon_sym_PIPE] = ACTIONS(4630), - [anon_sym_RPAREN] = ACTIONS(4630), - [anon_sym_SEMI_SEMI] = ACTIONS(4630), - [anon_sym_PIPE_AMP] = ACTIONS(4630), - [anon_sym_AMP_AMP] = ACTIONS(4630), - [anon_sym_PIPE_PIPE] = ACTIONS(4630), - [anon_sym_LT] = ACTIONS(4630), - [anon_sym_GT] = ACTIONS(4630), - [anon_sym_GT_GT] = ACTIONS(4630), - [anon_sym_AMP_GT] = ACTIONS(4630), - [anon_sym_AMP_GT_GT] = ACTIONS(4630), - [anon_sym_LT_AMP] = ACTIONS(4630), - [anon_sym_GT_AMP] = ACTIONS(4630), - [anon_sym_LT_LT] = ACTIONS(4630), - [anon_sym_LT_LT_DASH] = ACTIONS(4630), - [anon_sym_LT_LT_LT] = ACTIONS(4630), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4630), - [anon_sym_LF] = ACTIONS(4630), - [anon_sym_AMP] = ACTIONS(4630), - }, - [1736] = { - [sym_simple_expansion] = STATE(1154), - [sym_expansion] = STATE(1154), - [aux_sym_heredoc_repeat1] = STATE(1736), - [sym__heredoc_middle] = ACTIONS(4632), - [sym__heredoc_end] = ACTIONS(4635), - [anon_sym_DOLLAR] = ACTIONS(4637), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4640), - [sym_comment] = ACTIONS(56), - }, - [1737] = { - [anon_sym_EQ] = ACTIONS(4643), - [anon_sym_PLUS_EQ] = ACTIONS(4643), - [sym_comment] = ACTIONS(56), - }, - [1738] = { - [anon_sym_EQ] = ACTIONS(4645), - [anon_sym_PLUS_EQ] = ACTIONS(4645), - [sym_comment] = ACTIONS(56), - }, - [1739] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_RBRACK] = ACTIONS(2969), - [sym_comment] = ACTIONS(56), - }, - [1740] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4647), - [sym_comment] = ACTIONS(56), - }, - [1741] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4649), - [sym_comment] = ACTIONS(56), - }, - [1742] = { - [anon_sym_RBRACE] = ACTIONS(4649), - [sym_comment] = ACTIONS(56), - }, - [1743] = { - [sym__concat] = ACTIONS(3023), - [anon_sym_RBRACK] = ACTIONS(3023), - [sym_comment] = ACTIONS(56), - }, - [1744] = { - [sym_concatenation] = STATE(2207), - [sym_string] = STATE(2206), - [sym_simple_expansion] = STATE(2206), - [sym_string_expansion] = STATE(2206), - [sym_expansion] = STATE(2206), - [sym_command_substitution] = STATE(2206), - [sym_process_substitution] = STATE(2206), - [anon_sym_RBRACE] = ACTIONS(4649), - [sym__special_characters] = ACTIONS(4651), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(4653), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4655), - }, - [1745] = { - [sym__concat] = ACTIONS(3068), - [anon_sym_RBRACK] = ACTIONS(3068), - [sym_comment] = ACTIONS(56), - }, - [1746] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4657), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1747] = { - [sym__concat] = ACTIONS(3074), - [anon_sym_RBRACK] = ACTIONS(3074), - [sym_comment] = ACTIONS(56), - }, - [1748] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4659), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1749] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4649), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1750] = { - [sym__concat] = ACTIONS(3080), - [anon_sym_RBRACK] = ACTIONS(3080), - [sym_comment] = ACTIONS(56), - }, - [1751] = { - [sym__concat] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1790), - [sym__special_characters] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_LT_LPAREN] = ACTIONS(1790), - [anon_sym_GT_LPAREN] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2816), - }, - [1752] = { - [aux_sym_concatenation_repeat1] = STATE(1752), - [sym__concat] = ACTIONS(4661), - [anon_sym_RPAREN] = ACTIONS(1790), - [sym__special_characters] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_LT_LPAREN] = ACTIONS(1790), - [anon_sym_GT_LPAREN] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2816), - }, - [1753] = { - [sym__concat] = ACTIONS(1821), - [anon_sym_RPAREN] = ACTIONS(1821), - [sym__special_characters] = ACTIONS(2821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [anon_sym_DOLLAR] = ACTIONS(2821), - [sym_raw_string] = ACTIONS(1821), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1821), - [anon_sym_BQUOTE] = ACTIONS(1821), - [anon_sym_LT_LPAREN] = ACTIONS(1821), - [anon_sym_GT_LPAREN] = ACTIONS(1821), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2821), - }, - [1754] = { - [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(4664), - [sym__special_characters] = ACTIONS(4666), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(4668), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4670), - }, - [1755] = { - [sym__concat] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [sym__special_characters] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(2831), - [sym_raw_string] = ACTIONS(1866), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1866), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1866), - [anon_sym_BQUOTE] = ACTIONS(1866), - [anon_sym_LT_LPAREN] = ACTIONS(1866), - [anon_sym_GT_LPAREN] = ACTIONS(1866), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2831), - }, - [1756] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1757] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(4674), - [sym_comment] = ACTIONS(56), - }, - [1758] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2217), - [anon_sym_RBRACE] = ACTIONS(4676), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1759] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2219), - [anon_sym_RBRACE] = ACTIONS(4678), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1760] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2220), - [anon_sym_RBRACE] = ACTIONS(4664), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1761] = { - [sym__concat] = ACTIONS(1910), - [anon_sym_RPAREN] = ACTIONS(1910), - [sym__special_characters] = ACTIONS(2841), - [anon_sym_DQUOTE] = ACTIONS(1910), - [anon_sym_DOLLAR] = ACTIONS(2841), - [sym_raw_string] = ACTIONS(1910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1910), - [anon_sym_BQUOTE] = ACTIONS(1910), - [anon_sym_LT_LPAREN] = ACTIONS(1910), - [anon_sym_GT_LPAREN] = ACTIONS(1910), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2841), - }, - [1762] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4680), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1763] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_RPAREN] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(2845), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(2845), - [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(56), - [sym_word] = ACTIONS(2845), - }, - [1764] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4664), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1765] = { - [sym__concat] = ACTIONS(2064), - [anon_sym_RPAREN] = ACTIONS(2064), - [sym__special_characters] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2847), - [sym_raw_string] = ACTIONS(2064), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2064), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2064), - [anon_sym_BQUOTE] = ACTIONS(2064), - [anon_sym_LT_LPAREN] = ACTIONS(2064), - [anon_sym_GT_LPAREN] = ACTIONS(2064), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2847), - }, - [1766] = { - [sym__concat] = ACTIONS(2228), - [anon_sym_RPAREN] = ACTIONS(2228), - [sym__special_characters] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2228), - [anon_sym_DOLLAR] = ACTIONS(2849), - [sym_raw_string] = ACTIONS(2228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2228), - [anon_sym_BQUOTE] = ACTIONS(2228), - [anon_sym_LT_LPAREN] = ACTIONS(2228), - [anon_sym_GT_LPAREN] = ACTIONS(2228), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2849), - }, - [1767] = { - [sym_file_descriptor] = ACTIONS(2969), - [sym__concat] = ACTIONS(2969), - [sym_variable_name] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_SEMI_SEMI] = ACTIONS(2971), - [anon_sym_PIPE_AMP] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_PIPE_PIPE] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(2971), - [anon_sym_GT_GT] = ACTIONS(2971), - [anon_sym_AMP_GT] = ACTIONS(2971), - [anon_sym_AMP_GT_GT] = ACTIONS(2971), - [anon_sym_LT_AMP] = ACTIONS(2971), - [anon_sym_GT_AMP] = ACTIONS(2971), - [sym__special_characters] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2971), - [sym_raw_string] = ACTIONS(2971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2971), - [anon_sym_BQUOTE] = ACTIONS(2971), - [anon_sym_LT_LPAREN] = ACTIONS(2971), - [anon_sym_GT_LPAREN] = ACTIONS(2971), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - }, - [1768] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), [anon_sym_RBRACE] = ACTIONS(4682), [sym_comment] = ACTIONS(56), }, - [1769] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), + [1571] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), [anon_sym_RBRACE] = ACTIONS(4684), [sym_comment] = ACTIONS(56), }, - [1770] = { + [1572] = { [anon_sym_RBRACE] = ACTIONS(4684), [sym_comment] = ACTIONS(56), }, - [1771] = { - [sym_file_descriptor] = ACTIONS(3023), - [sym__concat] = ACTIONS(3023), - [sym_variable_name] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3025), - [anon_sym_SEMI_SEMI] = ACTIONS(3025), - [anon_sym_PIPE_AMP] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(3025), - [anon_sym_GT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_AMP_GT] = ACTIONS(3025), - [anon_sym_AMP_GT_GT] = ACTIONS(3025), - [anon_sym_LT_AMP] = ACTIONS(3025), - [anon_sym_GT_AMP] = ACTIONS(3025), - [sym__special_characters] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_DOLLAR] = ACTIONS(3025), - [sym_raw_string] = ACTIONS(3025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3025), - [anon_sym_LT_LPAREN] = ACTIONS(3025), - [anon_sym_GT_LPAREN] = ACTIONS(3025), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3025), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_LF] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3025), + [1573] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2240), + [anon_sym_RBRACE] = ACTIONS(4686), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1772] = { - [sym_concatenation] = STATE(2226), - [sym_string] = STATE(2225), - [sym_simple_expansion] = STATE(2225), - [sym_string_expansion] = STATE(2225), - [sym_expansion] = STATE(2225), - [sym_command_substitution] = STATE(2225), - [sym_process_substitution] = STATE(2225), + [1574] = { + [sym__concat] = ACTIONS(3297), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3299), + [sym__string_content] = ACTIONS(4548), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3299), + [anon_sym_BQUOTE] = ACTIONS(3299), + [sym_comment] = ACTIONS(182), + }, + [1575] = { + [sym_concatenation] = STATE(2243), + [sym_string] = STATE(2242), + [sym_simple_expansion] = STATE(2242), + [sym_string_expansion] = STATE(2242), + [sym_expansion] = STATE(2242), + [sym_command_substitution] = STATE(2242), + [sym_process_substitution] = STATE(2242), [anon_sym_RBRACE] = ACTIONS(4684), - [sym__special_characters] = ACTIONS(4686), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(4688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), + [sym__special_characters] = ACTIONS(4688), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(4690), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4690), + [sym_word] = ACTIONS(4692), }, - [1773] = { - [sym_file_descriptor] = ACTIONS(3068), - [sym__concat] = ACTIONS(3068), - [sym_variable_name] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_SEMI_SEMI] = ACTIONS(3070), - [anon_sym_PIPE_AMP] = ACTIONS(3070), - [anon_sym_AMP_AMP] = ACTIONS(3070), - [anon_sym_PIPE_PIPE] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_GT] = ACTIONS(3070), - [anon_sym_GT_GT] = ACTIONS(3070), - [anon_sym_AMP_GT] = ACTIONS(3070), - [anon_sym_AMP_GT_GT] = ACTIONS(3070), - [anon_sym_LT_AMP] = ACTIONS(3070), - [anon_sym_GT_AMP] = ACTIONS(3070), - [sym__special_characters] = ACTIONS(3070), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3070), - [sym_raw_string] = ACTIONS(3070), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3070), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3070), - [anon_sym_BQUOTE] = ACTIONS(3070), - [anon_sym_LT_LPAREN] = ACTIONS(3070), - [anon_sym_GT_LPAREN] = ACTIONS(3070), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3070), - [anon_sym_SEMI] = ACTIONS(3070), - [anon_sym_LF] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3070), + [1576] = { + [sym__concat] = ACTIONS(3342), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_DOLLAR] = ACTIONS(3344), + [sym__string_content] = ACTIONS(4556), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3344), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3344), + [anon_sym_BQUOTE] = ACTIONS(3344), + [sym_comment] = ACTIONS(182), }, - [1774] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4692), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [1577] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4694), }, - [1775] = { - [sym_file_descriptor] = ACTIONS(3074), - [sym__concat] = ACTIONS(3074), - [sym_variable_name] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(3076), - [anon_sym_SEMI_SEMI] = ACTIONS(3076), - [anon_sym_PIPE_AMP] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3076), - [anon_sym_GT] = ACTIONS(3076), - [anon_sym_GT_GT] = ACTIONS(3076), - [anon_sym_AMP_GT] = ACTIONS(3076), - [anon_sym_AMP_GT_GT] = ACTIONS(3076), - [anon_sym_LT_AMP] = ACTIONS(3076), - [anon_sym_GT_AMP] = ACTIONS(3076), - [sym__special_characters] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR] = ACTIONS(3076), - [sym_raw_string] = ACTIONS(3076), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3076), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3076), - [anon_sym_BQUOTE] = ACTIONS(3076), - [anon_sym_LT_LPAREN] = ACTIONS(3076), - [anon_sym_GT_LPAREN] = ACTIONS(3076), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3076), - [anon_sym_SEMI] = ACTIONS(3076), - [anon_sym_LF] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3076), + [1578] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4696), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1776] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4694), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [1579] = { + [sym__concat] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3352), + [anon_sym_DOLLAR] = ACTIONS(3352), + [sym__string_content] = ACTIONS(4562), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3352), + [anon_sym_BQUOTE] = ACTIONS(3352), + [sym_comment] = ACTIONS(182), }, - [1777] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), + [1580] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4698), + }, + [1581] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4700), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1582] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4702), + }, + [1583] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), [anon_sym_RBRACE] = ACTIONS(4684), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1778] = { - [sym_file_descriptor] = ACTIONS(3080), - [sym__concat] = ACTIONS(3080), - [sym_variable_name] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(3082), - [anon_sym_SEMI_SEMI] = ACTIONS(3082), - [anon_sym_PIPE_AMP] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3082), - [anon_sym_GT_GT] = ACTIONS(3082), - [anon_sym_AMP_GT] = ACTIONS(3082), - [anon_sym_AMP_GT_GT] = ACTIONS(3082), - [anon_sym_LT_AMP] = ACTIONS(3082), - [anon_sym_GT_AMP] = ACTIONS(3082), - [sym__special_characters] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_DOLLAR] = ACTIONS(3082), - [sym_raw_string] = ACTIONS(3082), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3082), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3082), - [anon_sym_BQUOTE] = ACTIONS(3082), - [anon_sym_LT_LPAREN] = ACTIONS(3082), - [anon_sym_GT_LPAREN] = ACTIONS(3082), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3082), - [anon_sym_LF] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3082), + [1584] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2250), + [anon_sym_RBRACE] = ACTIONS(4704), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1779] = { - [sym__concat] = ACTIONS(1790), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [sym__special_characters] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1792), - [sym_raw_string] = ACTIONS(1792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1792), - [anon_sym_LT_LPAREN] = ACTIONS(1792), - [anon_sym_GT_LPAREN] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), + [1585] = { + [sym__concat] = ACTIONS(3362), + [anon_sym_DQUOTE] = ACTIONS(3364), + [anon_sym_DOLLAR] = ACTIONS(3364), + [sym__string_content] = ACTIONS(4572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3364), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3364), + [anon_sym_BQUOTE] = ACTIONS(3364), + [sym_comment] = ACTIONS(182), }, - [1780] = { - [aux_sym_concatenation_repeat1] = STATE(1780), - [sym__concat] = ACTIONS(4696), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [sym__special_characters] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1792), - [sym_raw_string] = ACTIONS(1792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1792), - [anon_sym_LT_LPAREN] = ACTIONS(1792), - [anon_sym_GT_LPAREN] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), + [1586] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2252), + [anon_sym_RBRACE] = ACTIONS(4706), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1781] = { - [sym__concat] = ACTIONS(1821), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [sym__special_characters] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1823), - [sym_raw_string] = ACTIONS(1823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), - [anon_sym_BQUOTE] = ACTIONS(1823), - [anon_sym_LT_LPAREN] = ACTIONS(1823), - [anon_sym_GT_LPAREN] = ACTIONS(1823), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LF] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - }, - [1782] = { - [sym_concatenation] = STATE(2232), - [sym_string] = STATE(2231), - [sym_simple_expansion] = STATE(2231), - [sym_string_expansion] = STATE(2231), - [sym_expansion] = STATE(2231), - [sym_command_substitution] = STATE(2231), - [sym_process_substitution] = STATE(2231), - [anon_sym_RBRACE] = ACTIONS(4699), - [sym__special_characters] = ACTIONS(4701), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(4703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), + [1587] = { + [sym_string] = STATE(1227), + [sym_simple_expansion] = STATE(1227), + [sym_string_expansion] = STATE(1227), + [sym_expansion] = STATE(1227), + [sym_command_substitution] = STATE(1227), + [sym_process_substitution] = STATE(1227), + [anon_sym_RBRACK] = ACTIONS(4708), + [sym__special_characters] = ACTIONS(2471), + [anon_sym_DQUOTE] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(402), + [sym_raw_string] = ACTIONS(2473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(406), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(408), + [anon_sym_BQUOTE] = ACTIONS(410), + [anon_sym_LT_LPAREN] = ACTIONS(412), + [anon_sym_GT_LPAREN] = ACTIONS(412), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4705), + [sym_word] = ACTIONS(2475), }, - [1783] = { - [sym__concat] = ACTIONS(1866), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [sym__special_characters] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1868), - [sym_raw_string] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), - [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(178), - [sym_word] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), + [1588] = { + [sym__concat] = ACTIONS(4710), + [anon_sym_RBRACE] = ACTIONS(2479), + [anon_sym_EQ] = ACTIONS(4712), + [sym__special_characters] = ACTIONS(4714), + [anon_sym_DQUOTE] = ACTIONS(2479), + [anon_sym_DOLLAR] = ACTIONS(4712), + [sym_raw_string] = ACTIONS(2479), + [anon_sym_POUND] = ACTIONS(2479), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2479), + [aux_sym_SLASH] = ACTIONS(2479), + [anon_sym_COLON] = ACTIONS(4712), + [anon_sym_COLON_QMARK] = ACTIONS(4712), + [anon_sym_COLON_DASH] = ACTIONS(4712), + [anon_sym_PERCENT] = ACTIONS(4712), + [anon_sym_DASH] = ACTIONS(4712), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2479), + [anon_sym_BQUOTE] = ACTIONS(2479), + [anon_sym_LT_LPAREN] = ACTIONS(2479), + [anon_sym_GT_LPAREN] = ACTIONS(2479), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4714), }, - [1784] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4707), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [1589] = { + [sym_string] = STATE(1227), + [sym_simple_expansion] = STATE(1227), + [sym_string_expansion] = STATE(1227), + [sym_expansion] = STATE(1227), + [sym_command_substitution] = STATE(1227), + [sym_process_substitution] = STATE(1227), + [anon_sym_RBRACK] = ACTIONS(4716), + [sym__special_characters] = ACTIONS(2471), + [anon_sym_DQUOTE] = ACTIONS(400), + [anon_sym_DOLLAR] = ACTIONS(402), + [sym_raw_string] = ACTIONS(2473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(406), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(408), + [anon_sym_BQUOTE] = ACTIONS(410), + [anon_sym_LT_LPAREN] = ACTIONS(412), + [anon_sym_GT_LPAREN] = ACTIONS(412), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2475), }, - [1785] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(4709), + [1590] = { + [sym__concat] = ACTIONS(4718), + [anon_sym_RBRACE] = ACTIONS(2489), + [anon_sym_EQ] = ACTIONS(4720), + [sym__special_characters] = ACTIONS(4722), + [anon_sym_DQUOTE] = ACTIONS(2489), + [anon_sym_DOLLAR] = ACTIONS(4720), + [sym_raw_string] = ACTIONS(2489), + [anon_sym_POUND] = ACTIONS(2489), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2489), + [aux_sym_SLASH] = ACTIONS(2489), + [anon_sym_COLON] = ACTIONS(4720), + [anon_sym_COLON_QMARK] = ACTIONS(4720), + [anon_sym_COLON_DASH] = ACTIONS(4720), + [anon_sym_PERCENT] = ACTIONS(4720), + [anon_sym_DASH] = ACTIONS(4720), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2489), + [anon_sym_BQUOTE] = ACTIONS(2489), + [anon_sym_LT_LPAREN] = ACTIONS(2489), + [anon_sym_GT_LPAREN] = ACTIONS(2489), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4722), + }, + [1591] = { + [anon_sym_RBRACK] = ACTIONS(4716), [sym_comment] = ACTIONS(56), }, - [1786] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2236), - [anon_sym_RBRACE] = ACTIONS(4711), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1787] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2238), - [anon_sym_RBRACE] = ACTIONS(4713), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1788] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2239), - [anon_sym_RBRACE] = ACTIONS(4699), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1789] = { - [sym__concat] = ACTIONS(1910), - [anon_sym_SEMI_SEMI] = ACTIONS(1912), - [sym__special_characters] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [anon_sym_DOLLAR] = ACTIONS(1912), - [sym_raw_string] = ACTIONS(1912), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1912), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1912), - [anon_sym_BQUOTE] = ACTIONS(1912), - [anon_sym_LT_LPAREN] = ACTIONS(1912), - [anon_sym_GT_LPAREN] = ACTIONS(1912), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_LF] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1912), - }, - [1790] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4715), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1791] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_SEMI_SEMI] = ACTIONS(1918), - [sym__special_characters] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1918), - [anon_sym_DOLLAR] = ACTIONS(1918), - [sym_raw_string] = ACTIONS(1918), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1918), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1918), - [anon_sym_BQUOTE] = ACTIONS(1918), - [anon_sym_LT_LPAREN] = ACTIONS(1918), - [anon_sym_GT_LPAREN] = ACTIONS(1918), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1918), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_LF] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), - }, - [1792] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4699), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1793] = { - [sym__concat] = ACTIONS(2064), - [anon_sym_SEMI_SEMI] = ACTIONS(2066), - [sym__special_characters] = ACTIONS(2066), - [anon_sym_DQUOTE] = ACTIONS(2066), - [anon_sym_DOLLAR] = ACTIONS(2066), - [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(178), - [sym_word] = ACTIONS(2066), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_LF] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2066), - }, - [1794] = { - [sym__concat] = ACTIONS(2228), - [anon_sym_SEMI_SEMI] = ACTIONS(2230), - [sym__special_characters] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2230), - [anon_sym_DOLLAR] = ACTIONS(2230), - [sym_raw_string] = ACTIONS(2230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2230), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2230), - [anon_sym_BQUOTE] = ACTIONS(2230), - [anon_sym_LT_LPAREN] = ACTIONS(2230), - [anon_sym_GT_LPAREN] = ACTIONS(2230), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_LF] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - }, - [1795] = { - [sym__terminated_statement] = STATE(673), - [sym_for_statement] = STATE(674), - [sym_while_statement] = STATE(674), - [sym_if_statement] = STATE(674), - [sym_case_statement] = STATE(674), - [sym_function_definition] = STATE(674), - [sym_subshell] = STATE(674), - [sym_pipeline] = STATE(674), - [sym_list] = STATE(674), - [sym_bracket_command] = STATE(674), - [sym_command] = STATE(674), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(675), - [sym_declaration_command] = STATE(674), - [sym_unset_command] = STATE(674), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(2242), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(4717), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), + [1592] = { + [sym_string] = STATE(2257), + [sym_simple_expansion] = STATE(2257), + [sym_string_expansion] = STATE(2257), + [sym_expansion] = STATE(2257), + [sym_command_substitution] = STATE(2257), + [sym_process_substitution] = STATE(2257), + [sym__special_characters] = ACTIONS(4724), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(4726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [sym_word] = ACTIONS(4724), }, - [1796] = { - [anon_sym_PIPE] = ACTIONS(4719), - [anon_sym_RPAREN] = ACTIONS(4719), - [anon_sym_SEMI_SEMI] = ACTIONS(4719), - [anon_sym_PIPE_AMP] = ACTIONS(4719), - [anon_sym_AMP_AMP] = ACTIONS(4719), - [anon_sym_PIPE_PIPE] = ACTIONS(4719), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4719), - [anon_sym_LF] = ACTIONS(4719), - [anon_sym_AMP] = ACTIONS(4719), + [1593] = { + [sym_file_descriptor] = ACTIONS(4728), + [sym__concat] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4730), + [anon_sym_SEMI_SEMI] = ACTIONS(4730), + [anon_sym_PIPE_AMP] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [anon_sym_EQ_TILDE] = ACTIONS(4730), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_GT] = ACTIONS(4730), + [anon_sym_GT_GT] = ACTIONS(4730), + [anon_sym_AMP_GT] = ACTIONS(4730), + [anon_sym_AMP_GT_GT] = ACTIONS(4730), + [anon_sym_LT_AMP] = ACTIONS(4730), + [anon_sym_GT_AMP] = ACTIONS(4730), + [anon_sym_LT_LT] = ACTIONS(4730), + [anon_sym_LT_LT_DASH] = ACTIONS(4730), + [anon_sym_LT_LT_LT] = ACTIONS(4730), + [sym__special_characters] = ACTIONS(4730), + [anon_sym_DQUOTE] = ACTIONS(4730), + [anon_sym_DOLLAR] = ACTIONS(4730), + [sym_raw_string] = ACTIONS(4730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), + [anon_sym_BQUOTE] = ACTIONS(4730), + [anon_sym_LT_LPAREN] = ACTIONS(4730), + [anon_sym_GT_LPAREN] = ACTIONS(4730), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_LF] = ACTIONS(4730), + [anon_sym_AMP] = ACTIONS(4730), }, - [1797] = { - [sym__terminated_statement] = STATE(681), - [sym_for_statement] = STATE(682), - [sym_while_statement] = STATE(682), - [sym_if_statement] = STATE(682), - [sym_case_statement] = STATE(682), - [sym_function_definition] = STATE(682), - [sym_subshell] = STATE(682), - [sym_pipeline] = STATE(682), - [sym_list] = STATE(682), - [sym_bracket_command] = STATE(682), - [sym_command] = STATE(682), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(685), - [sym_declaration_command] = STATE(682), - [sym_unset_command] = STATE(682), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(2243), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(4721), - [anon_sym_elif] = ACTIONS(4721), - [anon_sym_else] = ACTIONS(4721), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [1798] = { - [sym_file_descriptor] = ACTIONS(1058), - [sym_variable_name] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_fi] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_function] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym_declare] = ACTIONS(1060), - [anon_sym_typeset] = ACTIONS(1060), - [anon_sym_export] = ACTIONS(1060), - [anon_sym_readonly] = ACTIONS(1060), - [anon_sym_local] = ACTIONS(1060), - [anon_sym_unset] = ACTIONS(1060), - [anon_sym_unsetenv] = ACTIONS(1060), - [anon_sym_LT] = ACTIONS(1060), - [anon_sym_GT] = ACTIONS(1060), - [anon_sym_GT_GT] = ACTIONS(1058), - [anon_sym_AMP_GT] = ACTIONS(1060), - [anon_sym_AMP_GT_GT] = ACTIONS(1058), - [anon_sym_LT_AMP] = ACTIONS(1058), - [anon_sym_GT_AMP] = ACTIONS(1058), - [sym__special_characters] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1058), - [anon_sym_DOLLAR] = ACTIONS(1060), - [sym_raw_string] = ACTIONS(1058), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1058), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1058), - [anon_sym_BQUOTE] = ACTIONS(1058), - [anon_sym_LT_LPAREN] = ACTIONS(1058), - [anon_sym_GT_LPAREN] = ACTIONS(1058), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1062), - }, - [1799] = { - [sym__terminated_statement] = STATE(1243), - [sym_for_statement] = STATE(1244), - [sym_while_statement] = STATE(1244), - [sym_if_statement] = STATE(1244), - [sym_case_statement] = STATE(1244), - [sym_function_definition] = STATE(1244), - [sym_subshell] = STATE(1244), - [sym_pipeline] = STATE(1244), - [sym_list] = STATE(1244), - [sym_bracket_command] = STATE(1244), - [sym_command] = STATE(1244), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(1245), - [sym_declaration_command] = STATE(1244), - [sym_unset_command] = STATE(1244), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1799), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1110), - [sym_variable_name] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1118), - [anon_sym_while] = ACTIONS(1121), - [anon_sym_if] = ACTIONS(1124), - [anon_sym_fi] = ACTIONS(3859), - [anon_sym_case] = ACTIONS(1127), - [anon_sym_function] = ACTIONS(1130), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1136), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1139), - [anon_sym_declare] = ACTIONS(1142), - [anon_sym_typeset] = ACTIONS(1142), - [anon_sym_export] = ACTIONS(1142), - [anon_sym_readonly] = ACTIONS(1142), - [anon_sym_local] = ACTIONS(1142), - [anon_sym_unset] = ACTIONS(1145), - [anon_sym_unsetenv] = ACTIONS(1145), - [anon_sym_LT] = ACTIONS(1148), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_GT_GT] = ACTIONS(1151), - [anon_sym_AMP_GT] = ACTIONS(1148), - [anon_sym_AMP_GT_GT] = ACTIONS(1151), - [anon_sym_LT_AMP] = ACTIONS(1151), - [anon_sym_GT_AMP] = ACTIONS(1151), - [sym__special_characters] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1157), - [anon_sym_DOLLAR] = ACTIONS(1160), - [sym_raw_string] = ACTIONS(1163), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1166), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1169), - [anon_sym_BQUOTE] = ACTIONS(1172), - [anon_sym_LT_LPAREN] = ACTIONS(1175), - [anon_sym_GT_LPAREN] = ACTIONS(1175), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1178), - }, - [1800] = { - [anon_sym_PIPE] = ACTIONS(4723), - [anon_sym_RPAREN] = ACTIONS(4723), - [anon_sym_SEMI_SEMI] = ACTIONS(4723), - [anon_sym_PIPE_AMP] = ACTIONS(4723), - [anon_sym_AMP_AMP] = ACTIONS(4723), - [anon_sym_PIPE_PIPE] = ACTIONS(4723), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4723), - [anon_sym_LF] = ACTIONS(4723), - [anon_sym_AMP] = ACTIONS(4723), - }, - [1801] = { - [anon_sym_fi] = ACTIONS(4725), + [1594] = { + [aux_sym_concatenation_repeat1] = STATE(2258), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(772), [sym_comment] = ACTIONS(56), }, - [1802] = { - [sym_string] = STATE(2245), - [sym_simple_expansion] = STATE(2245), - [sym_string_expansion] = STATE(2245), - [sym_expansion] = STATE(2245), - [sym_command_substitution] = STATE(2245), - [sym_process_substitution] = STATE(2245), - [sym__special_characters] = ACTIONS(4727), - [anon_sym_DQUOTE] = ACTIONS(2502), - [anon_sym_DOLLAR] = ACTIONS(2504), - [sym_raw_string] = ACTIONS(4729), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2508), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2510), - [anon_sym_BQUOTE] = ACTIONS(2512), - [anon_sym_LT_LPAREN] = ACTIONS(2514), - [anon_sym_GT_LPAREN] = ACTIONS(2514), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4727), - }, - [1803] = { - [sym_concatenation] = STATE(2248), - [sym_string] = STATE(2247), - [sym_simple_expansion] = STATE(2247), - [sym_string_expansion] = STATE(2247), - [sym_expansion] = STATE(2247), - [sym_command_substitution] = STATE(2247), - [sym_process_substitution] = STATE(2247), - [sym__special_characters] = ACTIONS(4731), - [anon_sym_DQUOTE] = ACTIONS(2502), - [anon_sym_DOLLAR] = ACTIONS(2504), - [sym_raw_string] = ACTIONS(4733), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2508), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2510), - [anon_sym_BQUOTE] = ACTIONS(2512), - [anon_sym_LT_LPAREN] = ACTIONS(2514), - [anon_sym_GT_LPAREN] = ACTIONS(2514), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4735), - }, - [1804] = { - [sym__terminated_statement] = STATE(2250), - [sym_for_statement] = STATE(2251), - [sym_while_statement] = STATE(2251), - [sym_if_statement] = STATE(2251), - [sym_case_statement] = STATE(2251), - [sym_function_definition] = STATE(2251), - [sym_subshell] = STATE(2251), - [sym_pipeline] = STATE(2251), - [sym_list] = STATE(2251), - [sym_bracket_command] = STATE(2251), - [sym_command] = STATE(2251), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2252), - [sym_declaration_command] = STATE(2251), - [sym_unset_command] = STATE(2251), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(2253), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(4737), - [anon_sym_SEMI_SEMI] = ACTIONS(4739), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [1805] = { - [aux_sym_case_item_repeat1] = STATE(2255), - [anon_sym_PIPE] = ACTIONS(3880), - [anon_sym_RPAREN] = ACTIONS(4741), + [1595] = { + [sym__concat] = ACTIONS(776), + [anon_sym_RBRACE] = ACTIONS(776), [sym_comment] = ACTIONS(56), }, - [1806] = { - [aux_sym_concatenation_repeat1] = STATE(2256), - [sym__concat] = ACTIONS(3878), - [anon_sym_PIPE] = ACTIONS(760), - [anon_sym_RPAREN] = ACTIONS(760), + [1596] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(4732), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [1597] = { + [sym__concat] = ACTIONS(808), + [anon_sym_RBRACE] = ACTIONS(808), [sym_comment] = ACTIONS(56), }, - [1807] = { - [sym__concat] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(764), - [anon_sym_RPAREN] = ACTIONS(764), + [1598] = { + [sym__concat] = ACTIONS(812), + [anon_sym_RBRACE] = ACTIONS(812), [sym_comment] = ACTIONS(56), }, - [1808] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(4743), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [1809] = { - [sym__concat] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(796), - [anon_sym_RPAREN] = ACTIONS(796), + [1599] = { + [sym__concat] = ACTIONS(816), + [anon_sym_RBRACE] = ACTIONS(816), [sym_comment] = ACTIONS(56), }, - [1810] = { - [sym__concat] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_RPAREN] = ACTIONS(800), + [1600] = { + [sym_file_descriptor] = ACTIONS(4734), + [sym__concat] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(4736), + [anon_sym_SEMI_SEMI] = ACTIONS(4736), + [anon_sym_PIPE_AMP] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [anon_sym_EQ_TILDE] = ACTIONS(4736), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_GT_GT] = ACTIONS(4736), + [anon_sym_AMP_GT] = ACTIONS(4736), + [anon_sym_AMP_GT_GT] = ACTIONS(4736), + [anon_sym_LT_AMP] = ACTIONS(4736), + [anon_sym_GT_AMP] = ACTIONS(4736), + [anon_sym_LT_LT] = ACTIONS(4736), + [anon_sym_LT_LT_DASH] = ACTIONS(4736), + [anon_sym_LT_LT_LT] = ACTIONS(4736), + [sym__special_characters] = ACTIONS(4736), + [anon_sym_DQUOTE] = ACTIONS(4736), + [anon_sym_DOLLAR] = ACTIONS(4736), + [sym_raw_string] = ACTIONS(4736), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), + [anon_sym_BQUOTE] = ACTIONS(4736), + [anon_sym_LT_LPAREN] = ACTIONS(4736), + [anon_sym_GT_LPAREN] = ACTIONS(4736), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_LF] = ACTIONS(4736), + [anon_sym_AMP] = ACTIONS(4736), + }, + [1601] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(4738), [sym_comment] = ACTIONS(56), }, - [1811] = { - [sym__concat] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(804), - [anon_sym_RPAREN] = ACTIONS(804), - [sym_comment] = ACTIONS(56), - }, - [1812] = { - [sym__terminated_statement] = STATE(2250), - [sym_for_statement] = STATE(2251), - [sym_while_statement] = STATE(2251), - [sym_if_statement] = STATE(2251), - [sym_case_statement] = STATE(2251), - [sym_function_definition] = STATE(2251), - [sym_subshell] = STATE(2251), - [sym_pipeline] = STATE(2251), - [sym_list] = STATE(2251), - [sym_bracket_command] = STATE(2251), - [sym_command] = STATE(2251), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2252), - [sym_declaration_command] = STATE(2251), - [sym_unset_command] = STATE(2251), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(2259), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(4745), - [anon_sym_SEMI_SEMI] = ACTIONS(4747), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [1813] = { - [aux_sym_case_item_repeat1] = STATE(2255), - [anon_sym_PIPE] = ACTIONS(3880), - [anon_sym_RPAREN] = ACTIONS(4749), - [sym_comment] = ACTIONS(56), - }, - [1814] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(4751), - [sym_comment] = ACTIONS(56), - }, - [1815] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), + [1602] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2263), - [anon_sym_RBRACE] = ACTIONS(4753), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(4740), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4742), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1816] = { + [1603] = { [sym_subscript] = STATE(2267), - [sym_variable_name] = ACTIONS(4755), - [anon_sym_DOLLAR] = ACTIONS(4757), - [anon_sym_DASH] = ACTIONS(4757), + [sym_variable_name] = ACTIONS(4744), + [anon_sym_DOLLAR] = ACTIONS(4746), + [anon_sym_DASH] = ACTIONS(4746), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4759), - [anon_sym_STAR] = ACTIONS(4757), - [anon_sym_AT] = ACTIONS(4757), - [anon_sym_QMARK] = ACTIONS(4757), - [anon_sym_0] = ACTIONS(4761), - [anon_sym__] = ACTIONS(4761), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4748), + [anon_sym_STAR] = ACTIONS(4746), + [anon_sym_AT] = ACTIONS(4746), + [anon_sym_QMARK] = ACTIONS(4746), + [anon_sym_0] = ACTIONS(4750), + [anon_sym__] = ACTIONS(4750), }, - [1817] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2269), - [anon_sym_RBRACE] = ACTIONS(4763), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [1604] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2270), + [anon_sym_RBRACE] = ACTIONS(4752), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4754), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1818] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2271), - [anon_sym_RBRACE] = ACTIONS(4765), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [1605] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2273), + [anon_sym_RBRACE] = ACTIONS(4756), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4758), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1819] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4767), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), + [1606] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4760), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), [sym_comment] = ACTIONS(56), }, - [1820] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4767), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [1607] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4760), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_word] = ACTIONS(382), }, - [1821] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(4767), + [1608] = { + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(4760), [sym_comment] = ACTIONS(56), }, - [1822] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(4767), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [1609] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(4760), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_word] = ACTIONS(382), }, - [1823] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4769), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), + [1610] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4762), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), [sym_comment] = ACTIONS(56), }, - [1824] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4769), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [1611] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4762), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_word] = ACTIONS(382), }, - [1825] = { - [anon_sym_PIPE] = ACTIONS(4771), - [anon_sym_RPAREN] = ACTIONS(4771), - [anon_sym_SEMI_SEMI] = ACTIONS(4771), - [anon_sym_PIPE_AMP] = ACTIONS(4771), - [anon_sym_AMP_AMP] = ACTIONS(4771), - [anon_sym_PIPE_PIPE] = ACTIONS(4771), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4771), - [anon_sym_LF] = ACTIONS(4771), - [anon_sym_AMP] = ACTIONS(4771), + [1612] = { + [sym__concat] = ACTIONS(1858), + [anon_sym_RBRACE] = ACTIONS(1858), + [anon_sym_EQ] = ACTIONS(3008), + [sym__special_characters] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1858), + [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(1858), + [anon_sym_BQUOTE] = ACTIONS(1858), + [anon_sym_LT_LPAREN] = ACTIONS(1858), + [anon_sym_GT_LPAREN] = ACTIONS(1858), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1860), }, - [1826] = { - [anon_sym_esac] = ACTIONS(4773), + [1613] = { + [aux_sym_concatenation_repeat1] = STATE(1613), + [sym__concat] = ACTIONS(4764), + [anon_sym_RBRACE] = ACTIONS(1858), + [anon_sym_EQ] = ACTIONS(3008), + [sym__special_characters] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1858), + [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(1858), + [anon_sym_BQUOTE] = ACTIONS(1858), + [anon_sym_LT_LPAREN] = ACTIONS(1858), + [anon_sym_GT_LPAREN] = ACTIONS(1858), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1860), + }, + [1614] = { + [sym__concat] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_EQ] = ACTIONS(3013), + [sym__special_characters] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(3013), + [sym_raw_string] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(1895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1895), + [anon_sym_COLON] = ACTIONS(3013), + [anon_sym_COLON_QMARK] = ACTIONS(3013), + [anon_sym_COLON_DASH] = ACTIONS(3013), + [anon_sym_PERCENT] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1895), + [anon_sym_BQUOTE] = ACTIONS(1895), + [anon_sym_LT_LPAREN] = ACTIONS(1895), + [anon_sym_GT_LPAREN] = ACTIONS(1895), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1897), + }, + [1615] = { + [sym_concatenation] = STATE(2279), + [sym_string] = STATE(2278), + [sym_simple_expansion] = STATE(2278), + [sym_string_expansion] = STATE(2278), + [sym_expansion] = STATE(2278), + [sym_command_substitution] = STATE(2278), + [sym_process_substitution] = STATE(2278), + [anon_sym_RBRACE] = ACTIONS(4767), + [sym__special_characters] = ACTIONS(4769), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(4771), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4773), + }, + [1616] = { + [sym__concat] = ACTIONS(1940), + [anon_sym_RBRACE] = ACTIONS(1940), + [anon_sym_EQ] = ACTIONS(3023), + [sym__special_characters] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(3023), + [sym_raw_string] = ACTIONS(1940), + [anon_sym_POUND] = ACTIONS(1940), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1940), + [anon_sym_COLON] = ACTIONS(3023), + [anon_sym_COLON_QMARK] = ACTIONS(3023), + [anon_sym_COLON_DASH] = ACTIONS(3023), + [anon_sym_PERCENT] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3023), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [anon_sym_LT_LPAREN] = ACTIONS(1940), + [anon_sym_GT_LPAREN] = ACTIONS(1940), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1942), + }, + [1617] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4775), + }, + [1618] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4777), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1619] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(4779), [sym_comment] = ACTIONS(56), }, - [1827] = { - [sym_case_item] = STATE(1262), - [sym_concatenation] = STATE(2277), - [sym_string] = STATE(2276), - [sym_simple_expansion] = STATE(2276), - [sym_string_expansion] = STATE(2276), - [sym_expansion] = STATE(2276), - [sym_command_substitution] = STATE(2276), - [sym_process_substitution] = STATE(2276), - [aux_sym_case_statement_repeat1] = STATE(1827), - [sym__special_characters] = ACTIONS(4775), - [anon_sym_DQUOTE] = ACTIONS(4778), - [anon_sym_DOLLAR] = ACTIONS(4781), - [sym_raw_string] = ACTIONS(4784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4787), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), - [anon_sym_BQUOTE] = ACTIONS(4793), - [anon_sym_LT_LPAREN] = ACTIONS(4796), - [anon_sym_GT_LPAREN] = ACTIONS(4796), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4799), + [1620] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2285), + [anon_sym_RBRACE] = ACTIONS(4781), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4783), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1828] = { - [anon_sym_PIPE] = ACTIONS(4802), - [anon_sym_RPAREN] = ACTIONS(4802), - [anon_sym_SEMI_SEMI] = ACTIONS(4802), - [anon_sym_PIPE_AMP] = ACTIONS(4802), - [anon_sym_AMP_AMP] = ACTIONS(4802), - [anon_sym_PIPE_PIPE] = ACTIONS(4802), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4802), - [anon_sym_LF] = ACTIONS(4802), - [anon_sym_AMP] = ACTIONS(4802), - }, - [1829] = { - [sym_case_item] = STATE(1262), - [sym_last_case_item] = STATE(2278), - [sym_concatenation] = STATE(1264), - [sym_string] = STATE(1257), - [sym_simple_expansion] = STATE(1257), - [sym_string_expansion] = STATE(1257), - [sym_expansion] = STATE(1257), - [sym_command_substitution] = STATE(1257), - [sym_process_substitution] = STATE(1257), - [aux_sym_case_statement_repeat1] = STATE(1827), - [sym__special_characters] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2502), - [anon_sym_DOLLAR] = ACTIONS(2504), - [sym_raw_string] = ACTIONS(2506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2508), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2510), - [anon_sym_BQUOTE] = ACTIONS(2512), - [anon_sym_LT_LPAREN] = ACTIONS(2514), - [anon_sym_GT_LPAREN] = ACTIONS(2514), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3910), - }, - [1830] = { - [anon_sym_PIPE] = ACTIONS(4804), - [anon_sym_RPAREN] = ACTIONS(4804), - [anon_sym_SEMI_SEMI] = ACTIONS(4804), - [anon_sym_PIPE_AMP] = ACTIONS(4804), - [anon_sym_AMP_AMP] = ACTIONS(4804), - [anon_sym_PIPE_PIPE] = ACTIONS(4804), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4804), - [anon_sym_LF] = ACTIONS(4804), - [anon_sym_AMP] = ACTIONS(4804), - }, - [1831] = { - [anon_sym_esac] = ACTIONS(4806), - [sym_comment] = ACTIONS(56), - }, - [1832] = { - [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(178), - [anon_sym_SEMI] = ACTIONS(4808), - [anon_sym_LF] = ACTIONS(4808), - [anon_sym_AMP] = ACTIONS(4808), - }, - [1833] = { - [sym_case_item] = STATE(1262), - [sym_last_case_item] = STATE(2280), - [sym_concatenation] = STATE(1264), - [sym_string] = STATE(1257), - [sym_simple_expansion] = STATE(1257), - [sym_string_expansion] = STATE(1257), - [sym_expansion] = STATE(1257), - [sym_command_substitution] = STATE(1257), - [sym_process_substitution] = STATE(1257), - [aux_sym_case_statement_repeat1] = STATE(1827), - [sym__special_characters] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2502), - [anon_sym_DOLLAR] = ACTIONS(2504), - [sym_raw_string] = ACTIONS(2506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2508), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2510), - [anon_sym_BQUOTE] = ACTIONS(2512), - [anon_sym_LT_LPAREN] = ACTIONS(2514), - [anon_sym_GT_LPAREN] = ACTIONS(2514), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3910), - }, - [1834] = { - [sym__concat] = ACTIONS(4214), - [anon_sym_in] = ACTIONS(4216), - [anon_sym_SEMI_SEMI] = ACTIONS(4216), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4216), - [anon_sym_LF] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - }, - [1835] = { - [sym__concat] = ACTIONS(4220), - [anon_sym_in] = ACTIONS(4222), - [anon_sym_SEMI_SEMI] = ACTIONS(4222), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_LF] = ACTIONS(4222), - [anon_sym_AMP] = ACTIONS(4222), - }, - [1836] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4810), - [sym_comment] = ACTIONS(56), - }, - [1837] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4812), - [sym_comment] = ACTIONS(56), - }, - [1838] = { - [anon_sym_RBRACE] = ACTIONS(4812), - [sym_comment] = ACTIONS(56), - }, - [1839] = { - [sym__concat] = ACTIONS(4269), - [anon_sym_in] = ACTIONS(4271), - [anon_sym_SEMI_SEMI] = ACTIONS(4271), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_LF] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4271), - }, - [1840] = { - [sym__concat] = ACTIONS(4273), - [anon_sym_in] = ACTIONS(4275), - [anon_sym_SEMI_SEMI] = ACTIONS(4275), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_LF] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4275), - }, - [1841] = { - [anon_sym_PIPE] = ACTIONS(4814), - [anon_sym_RPAREN] = ACTIONS(4814), - [anon_sym_SEMI_SEMI] = ACTIONS(4814), - [anon_sym_PIPE_AMP] = ACTIONS(4814), - [anon_sym_AMP_AMP] = ACTIONS(4814), - [anon_sym_PIPE_PIPE] = ACTIONS(4814), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4814), - [anon_sym_LF] = ACTIONS(4814), - [anon_sym_AMP] = ACTIONS(4814), - }, - [1842] = { - [aux_sym_concatenation_repeat1] = STATE(1846), - [sym__concat] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3638), - [anon_sym_SEMI_SEMI] = ACTIONS(3638), - [anon_sym_PIPE_AMP] = ACTIONS(3638), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_PIPE_PIPE] = ACTIONS(3638), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym_LF] = ACTIONS(3638), - [anon_sym_AMP] = ACTIONS(3638), - }, - [1843] = { - [aux_sym_concatenation_repeat1] = STATE(1846), - [sym__concat] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(3640), - [anon_sym_SEMI_SEMI] = ACTIONS(3640), - [anon_sym_PIPE_AMP] = ACTIONS(3640), - [anon_sym_AMP_AMP] = ACTIONS(3640), - [anon_sym_PIPE_PIPE] = ACTIONS(3640), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3640), - [anon_sym_LF] = ACTIONS(3640), - [anon_sym_AMP] = ACTIONS(3640), - }, - [1844] = { - [anon_sym_PIPE] = ACTIONS(3640), - [anon_sym_RPAREN] = ACTIONS(3640), - [anon_sym_SEMI_SEMI] = ACTIONS(3640), - [anon_sym_PIPE_AMP] = ACTIONS(3640), - [anon_sym_AMP_AMP] = ACTIONS(3640), - [anon_sym_PIPE_PIPE] = ACTIONS(3640), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3640), - [anon_sym_LF] = ACTIONS(3640), - [anon_sym_AMP] = ACTIONS(3640), - }, - [1845] = { - [sym_string] = STATE(2283), - [sym_simple_expansion] = STATE(2283), - [sym_string_expansion] = STATE(2283), - [sym_expansion] = STATE(2283), - [sym_command_substitution] = STATE(2283), - [sym_process_substitution] = STATE(2283), - [sym__special_characters] = ACTIONS(4816), - [anon_sym_DQUOTE] = ACTIONS(2559), - [anon_sym_DOLLAR] = ACTIONS(2561), - [sym_raw_string] = ACTIONS(4818), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2565), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2567), - [anon_sym_BQUOTE] = ACTIONS(2569), - [anon_sym_LT_LPAREN] = ACTIONS(2571), - [anon_sym_GT_LPAREN] = ACTIONS(2571), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4816), - }, - [1846] = { - [aux_sym_concatenation_repeat1] = STATE(2284), - [sym__concat] = ACTIONS(3946), - [anon_sym_PIPE] = ACTIONS(762), - [anon_sym_SEMI_SEMI] = ACTIONS(762), - [anon_sym_PIPE_AMP] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(762), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(762), - [anon_sym_LF] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(762), - }, - [1847] = { - [sym__concat] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_SEMI_SEMI] = ACTIONS(766), - [anon_sym_PIPE_AMP] = ACTIONS(766), - [anon_sym_AMP_AMP] = ACTIONS(766), - [anon_sym_PIPE_PIPE] = ACTIONS(766), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(766), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(766), - }, - [1848] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(4820), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [1849] = { - [sym__concat] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(798), - [anon_sym_SEMI_SEMI] = ACTIONS(798), - [anon_sym_PIPE_AMP] = ACTIONS(798), - [anon_sym_AMP_AMP] = ACTIONS(798), - [anon_sym_PIPE_PIPE] = ACTIONS(798), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(798), - [anon_sym_LF] = ACTIONS(798), - [anon_sym_AMP] = ACTIONS(798), - }, - [1850] = { - [sym__concat] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(802), - [anon_sym_SEMI_SEMI] = ACTIONS(802), - [anon_sym_PIPE_AMP] = ACTIONS(802), - [anon_sym_AMP_AMP] = ACTIONS(802), - [anon_sym_PIPE_PIPE] = ACTIONS(802), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(802), - [anon_sym_LF] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(802), - }, - [1851] = { - [sym__concat] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(806), - [anon_sym_SEMI_SEMI] = ACTIONS(806), - [anon_sym_PIPE_AMP] = ACTIONS(806), - [anon_sym_AMP_AMP] = ACTIONS(806), - [anon_sym_PIPE_PIPE] = ACTIONS(806), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(806), - }, - [1852] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(4822), - [sym_comment] = ACTIONS(56), - }, - [1853] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), + [1621] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2288), - [anon_sym_RBRACE] = ACTIONS(4824), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(4785), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4787), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1854] = { - [sym_subscript] = STATE(2292), - [sym_variable_name] = ACTIONS(4826), - [anon_sym_DOLLAR] = ACTIONS(4828), - [anon_sym_DASH] = ACTIONS(4828), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4830), - [anon_sym_STAR] = ACTIONS(4828), - [anon_sym_AT] = ACTIONS(4828), - [anon_sym_QMARK] = ACTIONS(4828), - [anon_sym_0] = ACTIONS(4832), - [anon_sym__] = ACTIONS(4832), + [1622] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2290), + [anon_sym_RBRACE] = ACTIONS(4767), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4789), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1855] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2294), - [anon_sym_RBRACE] = ACTIONS(4834), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [1623] = { + [sym__concat] = ACTIONS(1992), + [anon_sym_RBRACE] = ACTIONS(1992), + [anon_sym_EQ] = ACTIONS(3041), + [sym__special_characters] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1992), + [anon_sym_DOLLAR] = ACTIONS(3041), + [sym_raw_string] = ACTIONS(1992), + [anon_sym_POUND] = ACTIONS(1992), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1992), + [anon_sym_COLON] = ACTIONS(3041), + [anon_sym_COLON_QMARK] = ACTIONS(3041), + [anon_sym_COLON_DASH] = ACTIONS(3041), + [anon_sym_PERCENT] = ACTIONS(3041), + [anon_sym_DASH] = ACTIONS(3041), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1992), + [anon_sym_BQUOTE] = ACTIONS(1992), + [anon_sym_LT_LPAREN] = ACTIONS(1992), + [anon_sym_GT_LPAREN] = ACTIONS(1992), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1994), }, - [1856] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2296), - [anon_sym_RBRACE] = ACTIONS(4836), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [1624] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4791), }, - [1857] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4838), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), + [1625] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4793), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1626] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_RBRACE] = ACTIONS(2000), + [anon_sym_EQ] = ACTIONS(3047), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(3047), + [sym_raw_string] = ACTIONS(2000), + [anon_sym_POUND] = ACTIONS(2000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2000), + [anon_sym_COLON] = ACTIONS(3047), + [anon_sym_COLON_QMARK] = ACTIONS(3047), + [anon_sym_COLON_DASH] = ACTIONS(3047), + [anon_sym_PERCENT] = ACTIONS(3047), + [anon_sym_DASH] = ACTIONS(3047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2000), + [anon_sym_BQUOTE] = ACTIONS(2000), + [anon_sym_LT_LPAREN] = ACTIONS(2000), + [anon_sym_GT_LPAREN] = ACTIONS(2000), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2002), + }, + [1627] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4795), + }, + [1628] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4767), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1629] = { + [sym_file_descriptor] = ACTIONS(4797), + [sym__concat] = ACTIONS(4797), + [anon_sym_PIPE] = ACTIONS(4799), + [anon_sym_SEMI_SEMI] = ACTIONS(4799), + [anon_sym_PIPE_AMP] = ACTIONS(4799), + [anon_sym_AMP_AMP] = ACTIONS(4799), + [anon_sym_PIPE_PIPE] = ACTIONS(4799), + [anon_sym_EQ_TILDE] = ACTIONS(4799), + [anon_sym_LT] = ACTIONS(4799), + [anon_sym_GT] = ACTIONS(4799), + [anon_sym_GT_GT] = ACTIONS(4799), + [anon_sym_AMP_GT] = ACTIONS(4799), + [anon_sym_AMP_GT_GT] = ACTIONS(4799), + [anon_sym_LT_AMP] = ACTIONS(4799), + [anon_sym_GT_AMP] = ACTIONS(4799), + [anon_sym_LT_LT] = ACTIONS(4799), + [anon_sym_LT_LT_DASH] = ACTIONS(4799), + [anon_sym_LT_LT_LT] = ACTIONS(4799), + [sym__special_characters] = ACTIONS(4799), + [anon_sym_DQUOTE] = ACTIONS(4799), + [anon_sym_DOLLAR] = ACTIONS(4799), + [sym_raw_string] = ACTIONS(4799), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4799), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4799), + [anon_sym_BQUOTE] = ACTIONS(4799), + [anon_sym_LT_LPAREN] = ACTIONS(4799), + [anon_sym_GT_LPAREN] = ACTIONS(4799), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4799), + [anon_sym_SEMI] = ACTIONS(4799), + [anon_sym_LF] = ACTIONS(4799), + [anon_sym_AMP] = ACTIONS(4799), + }, + [1630] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4801), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1631] = { + [sym__concat] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_EQ] = ACTIONS(3051), + [sym__special_characters] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_DOLLAR] = ACTIONS(3051), + [sym_raw_string] = ACTIONS(2156), + [anon_sym_POUND] = ACTIONS(2156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2156), + [anon_sym_COLON] = ACTIONS(3051), + [anon_sym_COLON_QMARK] = ACTIONS(3051), + [anon_sym_COLON_DASH] = ACTIONS(3051), + [anon_sym_PERCENT] = ACTIONS(3051), + [anon_sym_DASH] = ACTIONS(3051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2156), + [anon_sym_LT_LPAREN] = ACTIONS(2156), + [anon_sym_GT_LPAREN] = ACTIONS(2156), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2158), + }, + [1632] = { + [sym__concat] = ACTIONS(2358), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_EQ] = ACTIONS(3053), + [sym__special_characters] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2358), + [anon_sym_DOLLAR] = ACTIONS(3053), + [sym_raw_string] = ACTIONS(2358), + [anon_sym_POUND] = ACTIONS(2358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2358), + [anon_sym_COLON] = ACTIONS(3053), + [anon_sym_COLON_QMARK] = ACTIONS(3053), + [anon_sym_COLON_DASH] = ACTIONS(3053), + [anon_sym_PERCENT] = ACTIONS(3053), + [anon_sym_DASH] = ACTIONS(3053), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2358), + [anon_sym_BQUOTE] = ACTIONS(2358), + [anon_sym_LT_LPAREN] = ACTIONS(2358), + [anon_sym_GT_LPAREN] = ACTIONS(2358), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2360), + }, + [1633] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(4803), [sym_comment] = ACTIONS(56), }, - [1858] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4838), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1859] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(4838), + [1634] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(4805), [sym_comment] = ACTIONS(56), }, - [1860] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(4838), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [1861] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4840), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), + [1635] = { + [anon_sym_RBRACE] = ACTIONS(4805), [sym_comment] = ACTIONS(56), }, - [1862] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(4840), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), + [1636] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2298), + [anon_sym_RBRACE] = ACTIONS(4807), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1637] = { + [sym_file_descriptor] = ACTIONS(4809), + [sym__concat] = ACTIONS(4809), + [anon_sym_PIPE] = ACTIONS(4811), + [anon_sym_SEMI_SEMI] = ACTIONS(4811), + [anon_sym_PIPE_AMP] = ACTIONS(4811), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_EQ_TILDE] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4811), + [anon_sym_GT] = ACTIONS(4811), + [anon_sym_GT_GT] = ACTIONS(4811), + [anon_sym_AMP_GT] = ACTIONS(4811), + [anon_sym_AMP_GT_GT] = ACTIONS(4811), + [anon_sym_LT_AMP] = ACTIONS(4811), + [anon_sym_GT_AMP] = ACTIONS(4811), + [anon_sym_LT_LT] = ACTIONS(4811), + [anon_sym_LT_LT_DASH] = ACTIONS(4811), + [anon_sym_LT_LT_LT] = ACTIONS(4811), + [sym__special_characters] = ACTIONS(4811), + [anon_sym_DQUOTE] = ACTIONS(4811), + [anon_sym_DOLLAR] = ACTIONS(4811), + [sym_raw_string] = ACTIONS(4811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4811), + [anon_sym_BQUOTE] = ACTIONS(4811), + [anon_sym_LT_LPAREN] = ACTIONS(4811), + [anon_sym_GT_LPAREN] = ACTIONS(4811), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4811), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym_LF] = ACTIONS(4811), + [anon_sym_AMP] = ACTIONS(4811), + }, + [1638] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2300), + [anon_sym_RBRACE] = ACTIONS(4813), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1639] = { + [sym_file_descriptor] = ACTIONS(4815), + [sym__concat] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(4817), + [anon_sym_SEMI_SEMI] = ACTIONS(4817), + [anon_sym_PIPE_AMP] = ACTIONS(4817), + [anon_sym_AMP_AMP] = ACTIONS(4817), + [anon_sym_PIPE_PIPE] = ACTIONS(4817), + [anon_sym_EQ_TILDE] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4817), + [anon_sym_GT] = ACTIONS(4817), + [anon_sym_GT_GT] = ACTIONS(4817), + [anon_sym_AMP_GT] = ACTIONS(4817), + [anon_sym_AMP_GT_GT] = ACTIONS(4817), + [anon_sym_LT_AMP] = ACTIONS(4817), + [anon_sym_GT_AMP] = ACTIONS(4817), + [anon_sym_LT_LT] = ACTIONS(4817), + [anon_sym_LT_LT_DASH] = ACTIONS(4817), + [anon_sym_LT_LT_LT] = ACTIONS(4817), + [sym__special_characters] = ACTIONS(4817), + [anon_sym_DQUOTE] = ACTIONS(4817), + [anon_sym_DOLLAR] = ACTIONS(4817), + [sym_raw_string] = ACTIONS(4817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4817), + [anon_sym_BQUOTE] = ACTIONS(4817), + [anon_sym_LT_LPAREN] = ACTIONS(4817), + [anon_sym_GT_LPAREN] = ACTIONS(4817), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4817), + [anon_sym_SEMI] = ACTIONS(4817), + [anon_sym_LF] = ACTIONS(4817), + [anon_sym_AMP] = ACTIONS(4817), + }, + [1640] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2302), + [anon_sym_RBRACE] = ACTIONS(4819), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1641] = { + [sym_file_descriptor] = ACTIONS(4821), + [sym__concat] = ACTIONS(4821), + [anon_sym_PIPE] = ACTIONS(4823), + [anon_sym_SEMI_SEMI] = ACTIONS(4823), + [anon_sym_PIPE_AMP] = ACTIONS(4823), + [anon_sym_AMP_AMP] = ACTIONS(4823), + [anon_sym_PIPE_PIPE] = ACTIONS(4823), + [anon_sym_EQ_TILDE] = ACTIONS(4823), + [anon_sym_LT] = ACTIONS(4823), + [anon_sym_GT] = ACTIONS(4823), + [anon_sym_GT_GT] = ACTIONS(4823), + [anon_sym_AMP_GT] = ACTIONS(4823), + [anon_sym_AMP_GT_GT] = ACTIONS(4823), + [anon_sym_LT_AMP] = ACTIONS(4823), + [anon_sym_GT_AMP] = ACTIONS(4823), + [anon_sym_LT_LT] = ACTIONS(4823), + [anon_sym_LT_LT_DASH] = ACTIONS(4823), + [anon_sym_LT_LT_LT] = ACTIONS(4823), + [sym__special_characters] = ACTIONS(4823), + [anon_sym_DQUOTE] = ACTIONS(4823), + [anon_sym_DOLLAR] = ACTIONS(4823), + [sym_raw_string] = ACTIONS(4823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4823), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4823), + [anon_sym_BQUOTE] = ACTIONS(4823), + [anon_sym_LT_LPAREN] = ACTIONS(4823), + [anon_sym_GT_LPAREN] = ACTIONS(4823), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4823), + [anon_sym_SEMI] = ACTIONS(4823), + [anon_sym_LF] = ACTIONS(4823), + [anon_sym_AMP] = ACTIONS(4823), + }, + [1642] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4825), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1643] = { + [sym_file_descriptor] = ACTIONS(4827), + [sym__concat] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_SEMI_SEMI] = ACTIONS(4829), + [anon_sym_PIPE_AMP] = ACTIONS(4829), + [anon_sym_AMP_AMP] = ACTIONS(4829), + [anon_sym_PIPE_PIPE] = ACTIONS(4829), + [anon_sym_EQ_TILDE] = ACTIONS(4829), + [anon_sym_LT] = ACTIONS(4829), + [anon_sym_GT] = ACTIONS(4829), + [anon_sym_GT_GT] = ACTIONS(4829), + [anon_sym_AMP_GT] = ACTIONS(4829), + [anon_sym_AMP_GT_GT] = ACTIONS(4829), + [anon_sym_LT_AMP] = ACTIONS(4829), + [anon_sym_GT_AMP] = ACTIONS(4829), + [anon_sym_LT_LT] = ACTIONS(4829), + [anon_sym_LT_LT_DASH] = ACTIONS(4829), + [anon_sym_LT_LT_LT] = ACTIONS(4829), + [sym__special_characters] = ACTIONS(4829), + [anon_sym_DQUOTE] = ACTIONS(4829), + [anon_sym_DOLLAR] = ACTIONS(4829), + [sym_raw_string] = ACTIONS(4829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4829), + [anon_sym_BQUOTE] = ACTIONS(4829), + [anon_sym_LT_LPAREN] = ACTIONS(4829), + [anon_sym_GT_LPAREN] = ACTIONS(4829), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4829), + [anon_sym_SEMI] = ACTIONS(4829), + [anon_sym_LF] = ACTIONS(4829), + [anon_sym_AMP] = ACTIONS(4829), + }, + [1644] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4831), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1645] = { + [sym_file_descriptor] = ACTIONS(2517), + [sym_variable_name] = ACTIONS(2517), + [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_RPAREN] = ACTIONS(2517), + [anon_sym_PIPE_AMP] = ACTIONS(2517), + [anon_sym_AMP_AMP] = ACTIONS(2517), + [anon_sym_PIPE_PIPE] = ACTIONS(2517), + [anon_sym_LT] = ACTIONS(4833), + [anon_sym_GT] = ACTIONS(4833), + [anon_sym_GT_GT] = ACTIONS(2517), + [anon_sym_AMP_GT] = ACTIONS(4833), + [anon_sym_AMP_GT_GT] = ACTIONS(2517), + [anon_sym_LT_AMP] = ACTIONS(2517), + [anon_sym_GT_AMP] = ACTIONS(2517), + [sym__special_characters] = ACTIONS(4833), + [anon_sym_DQUOTE] = ACTIONS(2517), + [anon_sym_DOLLAR] = ACTIONS(4833), + [sym_raw_string] = ACTIONS(2517), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2517), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2517), + [anon_sym_BQUOTE] = ACTIONS(2517), + [anon_sym_LT_LPAREN] = ACTIONS(2517), + [anon_sym_GT_LPAREN] = ACTIONS(2517), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), + [sym_word] = ACTIONS(4833), }, - [1863] = { - [sym_file_descriptor] = ACTIONS(1790), - [sym__concat] = ACTIONS(1790), - [sym_variable_name] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [anon_sym_PIPE_AMP] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_GT_GT] = ACTIONS(1792), - [anon_sym_AMP_GT] = ACTIONS(1792), - [anon_sym_AMP_GT_GT] = ACTIONS(1792), - [anon_sym_LT_AMP] = ACTIONS(1792), - [anon_sym_GT_AMP] = ACTIONS(1792), - [sym__special_characters] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1792), - [sym_raw_string] = ACTIONS(1792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1792), - [anon_sym_LT_LPAREN] = ACTIONS(1792), - [anon_sym_GT_LPAREN] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), + [1646] = { + [sym_concatenation] = STATE(660), + [sym_string] = STATE(655), + [sym_simple_expansion] = STATE(655), + [sym_string_expansion] = STATE(655), + [sym_expansion] = STATE(655), + [sym_command_substitution] = STATE(655), + [sym_process_substitution] = STATE(655), + [aux_sym_for_statement_repeat1] = STATE(1269), + [anon_sym_RPAREN] = ACTIONS(4835), + [sym__special_characters] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_DOLLAR] = ACTIONS(1265), + [sym_raw_string] = ACTIONS(1267), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1269), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1273), + [anon_sym_LT_LPAREN] = ACTIONS(1275), + [anon_sym_GT_LPAREN] = ACTIONS(1275), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1277), }, - [1864] = { - [aux_sym_concatenation_repeat1] = STATE(1864), - [sym_file_descriptor] = ACTIONS(1790), - [sym__concat] = ACTIONS(4842), - [sym_variable_name] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [anon_sym_PIPE_AMP] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_GT_GT] = ACTIONS(1792), - [anon_sym_AMP_GT] = ACTIONS(1792), - [anon_sym_AMP_GT_GT] = ACTIONS(1792), - [anon_sym_LT_AMP] = ACTIONS(1792), - [anon_sym_GT_AMP] = ACTIONS(1792), - [sym__special_characters] = ACTIONS(1792), - [anon_sym_DQUOTE] = ACTIONS(1792), - [anon_sym_DOLLAR] = ACTIONS(1792), - [sym_raw_string] = ACTIONS(1792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1792), - [anon_sym_BQUOTE] = ACTIONS(1792), - [anon_sym_LT_LPAREN] = ACTIONS(1792), - [anon_sym_GT_LPAREN] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1792), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), + [1647] = { + [sym_string] = STATE(2306), + [sym_simple_expansion] = STATE(2306), + [sym_string_expansion] = STATE(2306), + [sym_expansion] = STATE(2306), + [sym_command_substitution] = STATE(2306), + [sym_process_substitution] = STATE(2306), + [sym__special_characters] = ACTIONS(4837), + [anon_sym_DQUOTE] = ACTIONS(2012), + [anon_sym_DOLLAR] = ACTIONS(2014), + [sym_raw_string] = ACTIONS(4839), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2020), + [anon_sym_BQUOTE] = ACTIONS(2022), + [anon_sym_LT_LPAREN] = ACTIONS(2024), + [anon_sym_GT_LPAREN] = ACTIONS(2024), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4837), }, - [1865] = { - [sym_file_descriptor] = ACTIONS(1821), - [sym__concat] = ACTIONS(1821), - [sym_variable_name] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_RPAREN] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_GT_GT] = ACTIONS(1823), - [anon_sym_AMP_GT] = ACTIONS(1823), - [anon_sym_AMP_GT_GT] = ACTIONS(1823), - [anon_sym_LT_AMP] = ACTIONS(1823), - [anon_sym_GT_AMP] = ACTIONS(1823), - [sym__special_characters] = ACTIONS(1823), - [anon_sym_DQUOTE] = ACTIONS(1823), - [anon_sym_DOLLAR] = ACTIONS(1823), - [sym_raw_string] = ACTIONS(1823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1823), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1823), - [anon_sym_BQUOTE] = ACTIONS(1823), - [anon_sym_LT_LPAREN] = ACTIONS(1823), - [anon_sym_GT_LPAREN] = ACTIONS(1823), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LF] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), + [1648] = { + [aux_sym_concatenation_repeat1] = STATE(2307), + [sym_file_descriptor] = ACTIONS(772), + [sym__concat] = ACTIONS(3372), + [sym_variable_name] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(1539), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_PIPE_AMP] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(772), + [anon_sym_PIPE_PIPE] = ACTIONS(772), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_GT_GT] = ACTIONS(772), + [anon_sym_AMP_GT] = ACTIONS(1539), + [anon_sym_AMP_GT_GT] = ACTIONS(772), + [anon_sym_LT_AMP] = ACTIONS(772), + [anon_sym_GT_AMP] = ACTIONS(772), + [sym__special_characters] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(1539), + [sym_raw_string] = ACTIONS(772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(772), + [anon_sym_BQUOTE] = ACTIONS(772), + [anon_sym_LT_LPAREN] = ACTIONS(772), + [anon_sym_GT_LPAREN] = ACTIONS(772), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1539), }, - [1866] = { - [sym_concatenation] = STATE(2302), - [sym_string] = STATE(2301), - [sym_simple_expansion] = STATE(2301), - [sym_string_expansion] = STATE(2301), - [sym_expansion] = STATE(2301), - [sym_command_substitution] = STATE(2301), - [sym_process_substitution] = STATE(2301), + [1649] = { + [sym_file_descriptor] = ACTIONS(776), + [sym__concat] = ACTIONS(776), + [sym_variable_name] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_RPAREN] = ACTIONS(776), + [anon_sym_PIPE_AMP] = ACTIONS(776), + [anon_sym_AMP_AMP] = ACTIONS(776), + [anon_sym_PIPE_PIPE] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(1541), + [anon_sym_GT] = ACTIONS(1541), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_AMP_GT] = ACTIONS(1541), + [anon_sym_AMP_GT_GT] = ACTIONS(776), + [anon_sym_LT_AMP] = ACTIONS(776), + [anon_sym_GT_AMP] = ACTIONS(776), + [sym__special_characters] = ACTIONS(1541), + [anon_sym_DQUOTE] = ACTIONS(776), + [anon_sym_DOLLAR] = ACTIONS(1541), + [sym_raw_string] = ACTIONS(776), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(776), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(776), + [anon_sym_BQUOTE] = ACTIONS(776), + [anon_sym_LT_LPAREN] = ACTIONS(776), + [anon_sym_GT_LPAREN] = ACTIONS(776), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1541), + }, + [1650] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(4841), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [1651] = { + [sym_file_descriptor] = ACTIONS(808), + [sym__concat] = ACTIONS(808), + [sym_variable_name] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_RPAREN] = ACTIONS(808), + [anon_sym_PIPE_AMP] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_GT_GT] = ACTIONS(808), + [anon_sym_AMP_GT] = ACTIONS(1545), + [anon_sym_AMP_GT_GT] = ACTIONS(808), + [anon_sym_LT_AMP] = ACTIONS(808), + [anon_sym_GT_AMP] = ACTIONS(808), + [sym__special_characters] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(808), + [anon_sym_DOLLAR] = ACTIONS(1545), + [sym_raw_string] = ACTIONS(808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(808), + [anon_sym_BQUOTE] = ACTIONS(808), + [anon_sym_LT_LPAREN] = ACTIONS(808), + [anon_sym_GT_LPAREN] = ACTIONS(808), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1545), + }, + [1652] = { + [sym_file_descriptor] = ACTIONS(812), + [sym__concat] = ACTIONS(812), + [sym_variable_name] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(1547), + [anon_sym_RPAREN] = ACTIONS(812), + [anon_sym_PIPE_AMP] = ACTIONS(812), + [anon_sym_AMP_AMP] = ACTIONS(812), + [anon_sym_PIPE_PIPE] = ACTIONS(812), + [anon_sym_LT] = ACTIONS(1547), + [anon_sym_GT] = ACTIONS(1547), + [anon_sym_GT_GT] = ACTIONS(812), + [anon_sym_AMP_GT] = ACTIONS(1547), + [anon_sym_AMP_GT_GT] = ACTIONS(812), + [anon_sym_LT_AMP] = ACTIONS(812), + [anon_sym_GT_AMP] = ACTIONS(812), + [sym__special_characters] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR] = ACTIONS(1547), + [sym_raw_string] = ACTIONS(812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(812), + [anon_sym_BQUOTE] = ACTIONS(812), + [anon_sym_LT_LPAREN] = ACTIONS(812), + [anon_sym_GT_LPAREN] = ACTIONS(812), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1547), + }, + [1653] = { + [sym_file_descriptor] = ACTIONS(816), + [sym__concat] = ACTIONS(816), + [sym_variable_name] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_RPAREN] = ACTIONS(816), + [anon_sym_PIPE_AMP] = ACTIONS(816), + [anon_sym_AMP_AMP] = ACTIONS(816), + [anon_sym_PIPE_PIPE] = ACTIONS(816), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1549), + [anon_sym_GT_GT] = ACTIONS(816), + [anon_sym_AMP_GT] = ACTIONS(1549), + [anon_sym_AMP_GT_GT] = ACTIONS(816), + [anon_sym_LT_AMP] = ACTIONS(816), + [anon_sym_GT_AMP] = ACTIONS(816), + [sym__special_characters] = ACTIONS(1549), + [anon_sym_DQUOTE] = ACTIONS(816), + [anon_sym_DOLLAR] = ACTIONS(1549), + [sym_raw_string] = ACTIONS(816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(816), + [anon_sym_BQUOTE] = ACTIONS(816), + [anon_sym_LT_LPAREN] = ACTIONS(816), + [anon_sym_GT_LPAREN] = ACTIONS(816), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1549), + }, + [1654] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(4843), + [sym_comment] = ACTIONS(56), + }, + [1655] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2312), [anon_sym_RBRACE] = ACTIONS(4845), - [sym__special_characters] = ACTIONS(4847), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(4849), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4847), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1656] = { + [sym_subscript] = STATE(2316), + [sym_variable_name] = ACTIONS(4849), + [anon_sym_DOLLAR] = ACTIONS(4851), + [anon_sym_DASH] = ACTIONS(4851), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4851), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4853), + [anon_sym_STAR] = ACTIONS(4851), + [anon_sym_AT] = ACTIONS(4851), + [anon_sym_QMARK] = ACTIONS(4851), + [anon_sym_0] = ACTIONS(4855), + [anon_sym__] = ACTIONS(4855), }, - [1867] = { - [sym_file_descriptor] = ACTIONS(1866), - [sym__concat] = ACTIONS(1866), - [sym_variable_name] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_RPAREN] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [anon_sym_PIPE_AMP] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_GT_GT] = ACTIONS(1868), - [anon_sym_AMP_GT] = ACTIONS(1868), - [anon_sym_AMP_GT_GT] = ACTIONS(1868), - [anon_sym_LT_AMP] = ACTIONS(1868), - [anon_sym_GT_AMP] = ACTIONS(1868), - [sym__special_characters] = ACTIONS(1868), - [anon_sym_DQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR] = ACTIONS(1868), - [sym_raw_string] = ACTIONS(1868), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1868), - [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(178), - [sym_word] = ACTIONS(1868), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - }, - [1868] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4853), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1869] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(4855), - [sym_comment] = ACTIONS(56), - }, - [1870] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2306), + [1657] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2319), [anon_sym_RBRACE] = ACTIONS(4857), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4859), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1871] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2308), - [anon_sym_RBRACE] = ACTIONS(4859), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1872] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2309), - [anon_sym_RBRACE] = ACTIONS(4845), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1873] = { - [sym_file_descriptor] = ACTIONS(1910), - [sym__concat] = ACTIONS(1910), - [sym_variable_name] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1912), - [anon_sym_SEMI_SEMI] = ACTIONS(1912), - [anon_sym_PIPE_AMP] = ACTIONS(1912), - [anon_sym_AMP_AMP] = ACTIONS(1912), - [anon_sym_PIPE_PIPE] = ACTIONS(1912), - [anon_sym_LT] = ACTIONS(1912), - [anon_sym_GT] = ACTIONS(1912), - [anon_sym_GT_GT] = ACTIONS(1912), - [anon_sym_AMP_GT] = ACTIONS(1912), - [anon_sym_AMP_GT_GT] = ACTIONS(1912), - [anon_sym_LT_AMP] = ACTIONS(1912), - [anon_sym_GT_AMP] = ACTIONS(1912), - [sym__special_characters] = ACTIONS(1912), - [anon_sym_DQUOTE] = ACTIONS(1912), - [anon_sym_DOLLAR] = ACTIONS(1912), - [sym_raw_string] = ACTIONS(1912), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1912), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1912), - [anon_sym_BQUOTE] = ACTIONS(1912), - [anon_sym_LT_LPAREN] = ACTIONS(1912), - [anon_sym_GT_LPAREN] = ACTIONS(1912), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1912), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_LF] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1912), - }, - [1874] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), + [1658] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2322), [anon_sym_RBRACE] = ACTIONS(4861), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4863), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1875] = { - [sym_file_descriptor] = ACTIONS(1916), - [sym__concat] = ACTIONS(1916), - [sym_variable_name] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_RPAREN] = ACTIONS(1918), - [anon_sym_SEMI_SEMI] = ACTIONS(1918), - [anon_sym_PIPE_AMP] = ACTIONS(1918), - [anon_sym_AMP_AMP] = ACTIONS(1918), - [anon_sym_PIPE_PIPE] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_GT] = ACTIONS(1918), - [anon_sym_GT_GT] = ACTIONS(1918), - [anon_sym_AMP_GT] = ACTIONS(1918), - [anon_sym_AMP_GT_GT] = ACTIONS(1918), - [anon_sym_LT_AMP] = ACTIONS(1918), - [anon_sym_GT_AMP] = ACTIONS(1918), - [sym__special_characters] = ACTIONS(1918), - [anon_sym_DQUOTE] = ACTIONS(1918), - [anon_sym_DOLLAR] = ACTIONS(1918), - [sym_raw_string] = ACTIONS(1918), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1918), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1918), - [anon_sym_BQUOTE] = ACTIONS(1918), - [anon_sym_LT_LPAREN] = ACTIONS(1918), - [anon_sym_GT_LPAREN] = ACTIONS(1918), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(1918), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_LF] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), - }, - [1876] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4845), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1877] = { - [sym_file_descriptor] = ACTIONS(2064), - [sym__concat] = ACTIONS(2064), - [sym_variable_name] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_RPAREN] = ACTIONS(2066), - [anon_sym_SEMI_SEMI] = ACTIONS(2066), - [anon_sym_PIPE_AMP] = ACTIONS(2066), - [anon_sym_AMP_AMP] = ACTIONS(2066), - [anon_sym_PIPE_PIPE] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_GT] = ACTIONS(2066), - [anon_sym_GT_GT] = ACTIONS(2066), - [anon_sym_AMP_GT] = ACTIONS(2066), - [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(2066), - [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(178), - [sym_word] = ACTIONS(2066), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_LF] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2066), - }, - [1878] = { - [sym_file_descriptor] = ACTIONS(2228), - [sym__concat] = ACTIONS(2228), - [sym_variable_name] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_RPAREN] = ACTIONS(2230), - [anon_sym_SEMI_SEMI] = ACTIONS(2230), - [anon_sym_PIPE_AMP] = ACTIONS(2230), - [anon_sym_AMP_AMP] = ACTIONS(2230), - [anon_sym_PIPE_PIPE] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_AMP_GT] = ACTIONS(2230), - [anon_sym_AMP_GT_GT] = ACTIONS(2230), - [anon_sym_LT_AMP] = ACTIONS(2230), - [anon_sym_GT_AMP] = ACTIONS(2230), - [sym__special_characters] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2230), - [anon_sym_DOLLAR] = ACTIONS(2230), - [sym_raw_string] = ACTIONS(2230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2230), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2230), - [anon_sym_BQUOTE] = ACTIONS(2230), - [anon_sym_LT_LPAREN] = ACTIONS(2230), - [anon_sym_GT_LPAREN] = ACTIONS(2230), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_LF] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - }, - [1879] = { - [sym_file_redirect] = STATE(1841), - [sym_file_descriptor] = ACTIONS(2599), - [anon_sym_PIPE] = ACTIONS(3934), - [anon_sym_RPAREN] = ACTIONS(3934), - [anon_sym_SEMI_SEMI] = ACTIONS(3934), - [anon_sym_PIPE_AMP] = ACTIONS(3934), - [anon_sym_AMP_AMP] = ACTIONS(3934), - [anon_sym_PIPE_PIPE] = ACTIONS(3934), - [anon_sym_LT] = ACTIONS(2601), - [anon_sym_GT] = ACTIONS(2601), - [anon_sym_GT_GT] = ACTIONS(2601), - [anon_sym_AMP_GT] = ACTIONS(2601), - [anon_sym_AMP_GT_GT] = ACTIONS(2601), - [anon_sym_LT_AMP] = ACTIONS(2601), - [anon_sym_GT_AMP] = ACTIONS(2601), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3934), - [anon_sym_LF] = ACTIONS(3934), - [anon_sym_AMP] = ACTIONS(3934), - }, - [1880] = { - [sym_concatenation] = STATE(1844), - [sym_string] = STATE(2312), - [sym_simple_expansion] = STATE(2312), - [sym_string_expansion] = STATE(2312), - [sym_expansion] = STATE(2312), - [sym_command_substitution] = STATE(2312), - [sym_process_substitution] = STATE(2312), - [sym__special_characters] = ACTIONS(4863), - [anon_sym_DQUOTE] = ACTIONS(3998), - [anon_sym_DOLLAR] = ACTIONS(4000), - [sym_raw_string] = ACTIONS(4865), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4004), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4006), - [anon_sym_BQUOTE] = ACTIONS(4008), - [anon_sym_LT_LPAREN] = ACTIONS(4010), - [anon_sym_GT_LPAREN] = ACTIONS(4010), + [1659] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4865), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4867), }, - [1881] = { - [aux_sym_concatenation_repeat1] = STATE(2314), - [sym__concat] = ACTIONS(4869), - [anon_sym_PIPE] = ACTIONS(2244), - [anon_sym_RPAREN] = ACTIONS(2244), - [anon_sym_SEMI_SEMI] = ACTIONS(2244), - [anon_sym_PIPE_AMP] = ACTIONS(2244), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE_PIPE] = ACTIONS(2244), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2244), - [anon_sym_LF] = ACTIONS(2244), - [anon_sym_AMP] = ACTIONS(2244), + [1660] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4865), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), }, - [1882] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(2316), - [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [1661] = { + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(4865), + [sym_comment] = ACTIONS(56), }, - [1883] = { - [sym_string] = STATE(2319), - [anon_sym_DQUOTE] = ACTIONS(3998), - [anon_sym_DOLLAR] = ACTIONS(4873), - [anon_sym_POUND] = ACTIONS(4873), - [anon_sym_DASH] = ACTIONS(4873), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4875), - [anon_sym_STAR] = ACTIONS(4873), - [anon_sym_AT] = ACTIONS(4873), - [anon_sym_QMARK] = ACTIONS(4873), - [anon_sym_0] = ACTIONS(4877), - [anon_sym__] = ACTIONS(4877), + [1662] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(4865), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), }, - [1884] = { - [aux_sym_concatenation_repeat1] = STATE(2314), - [sym__concat] = ACTIONS(4869), - [anon_sym_PIPE] = ACTIONS(2254), - [anon_sym_RPAREN] = ACTIONS(2254), - [anon_sym_SEMI_SEMI] = ACTIONS(2254), - [anon_sym_PIPE_AMP] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2254), - [anon_sym_LF] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2254), + [1663] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4867), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), }, - [1885] = { - [sym_subscript] = STATE(2324), - [sym_variable_name] = ACTIONS(4879), - [anon_sym_DOLLAR] = ACTIONS(4881), - [anon_sym_POUND] = ACTIONS(4883), - [anon_sym_DASH] = ACTIONS(4881), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4885), - [anon_sym_STAR] = ACTIONS(4881), - [anon_sym_AT] = ACTIONS(4881), - [anon_sym_QMARK] = ACTIONS(4881), - [anon_sym_0] = ACTIONS(4887), - [anon_sym__] = ACTIONS(4887), + [1664] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(4867), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), }, - [1886] = { - [sym_for_statement] = STATE(2325), - [sym_while_statement] = STATE(2325), - [sym_if_statement] = STATE(2325), - [sym_case_statement] = STATE(2325), - [sym_function_definition] = STATE(2325), - [sym_subshell] = STATE(2325), - [sym_pipeline] = STATE(2325), - [sym_list] = STATE(2325), - [sym_bracket_command] = STATE(2325), - [sym_command] = STATE(2325), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(2326), - [sym_declaration_command] = STATE(2325), - [sym_unset_command] = STATE(2325), - [sym_subscript] = STATE(168), + [1665] = { + [sym_concatenation] = STATE(688), + [sym_string] = STATE(683), + [sym_simple_expansion] = STATE(683), + [sym_string_expansion] = STATE(683), + [sym_expansion] = STATE(683), + [sym_command_substitution] = STATE(683), + [sym_process_substitution] = STATE(683), + [aux_sym_for_statement_repeat1] = STATE(1308), + [anon_sym_SEMI_SEMI] = ACTIONS(4869), + [sym__special_characters] = ACTIONS(2609), + [anon_sym_DQUOTE] = ACTIONS(2611), + [anon_sym_DOLLAR] = ACTIONS(2613), + [sym_raw_string] = ACTIONS(2615), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2617), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2619), + [anon_sym_BQUOTE] = ACTIONS(2621), + [anon_sym_LT_LPAREN] = ACTIONS(2623), + [anon_sym_GT_LPAREN] = ACTIONS(2623), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2615), + [anon_sym_SEMI] = ACTIONS(4869), + [anon_sym_LF] = ACTIONS(4869), + [anon_sym_AMP] = ACTIONS(4869), + }, + [1666] = { + [sym_file_descriptor] = ACTIONS(2625), + [anon_sym_PIPE] = ACTIONS(4871), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_PIPE_AMP] = ACTIONS(2625), + [anon_sym_AMP_AMP] = ACTIONS(2625), + [anon_sym_PIPE_PIPE] = ACTIONS(2625), + [anon_sym_LT] = ACTIONS(4871), + [anon_sym_GT] = ACTIONS(4871), + [anon_sym_GT_GT] = ACTIONS(2625), + [anon_sym_AMP_GT] = ACTIONS(4871), + [anon_sym_AMP_GT_GT] = ACTIONS(2625), + [anon_sym_LT_AMP] = ACTIONS(2625), + [anon_sym_GT_AMP] = ACTIONS(2625), + [anon_sym_LT_LT] = ACTIONS(4871), + [anon_sym_LT_LT_DASH] = ACTIONS(2625), + [anon_sym_LT_LT_LT] = ACTIONS(2625), + [anon_sym_BQUOTE] = ACTIONS(2625), + [sym_comment] = ACTIONS(56), + }, + [1667] = { + [sym__terminated_statement] = STATE(691), + [sym_for_statement] = STATE(692), + [sym_while_statement] = STATE(692), + [sym_if_statement] = STATE(692), + [sym_case_statement] = STATE(692), + [sym_function_definition] = STATE(692), + [sym_subshell] = STATE(692), + [sym_pipeline] = STATE(692), + [sym_list] = STATE(692), + [sym_command] = STATE(692), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(692), + [sym_variable_assignment] = STATE(693), + [sym_declaration_command] = STATE(692), + [sym_unset_command] = STATE(692), + [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1311), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_done] = ACTIONS(4873), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -53155,60 +49187,104 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym_word] = ACTIONS(58), }, - [1887] = { - [sym_for_statement] = STATE(2327), - [sym_while_statement] = STATE(2327), - [sym_if_statement] = STATE(2327), - [sym_case_statement] = STATE(2327), - [sym_function_definition] = STATE(2327), - [sym_subshell] = STATE(2327), - [sym_pipeline] = STATE(2327), - [sym_list] = STATE(2327), - [sym_bracket_command] = STATE(2327), - [sym_command] = STATE(2327), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(2328), - [sym_declaration_command] = STATE(2327), - [sym_unset_command] = STATE(2327), - [sym_subscript] = STATE(188), + [1668] = { + [sym_file_redirect] = STATE(539), + [sym_heredoc_redirect] = STATE(539), + [sym_herestring_redirect] = STATE(539), + [aux_sym_while_statement_repeat1] = STATE(1101), + [sym_file_descriptor] = ACTIONS(962), + [anon_sym_PIPE] = ACTIONS(4875), + [anon_sym_RPAREN] = ACTIONS(4877), + [anon_sym_PIPE_AMP] = ACTIONS(4877), + [anon_sym_AMP_AMP] = ACTIONS(4877), + [anon_sym_PIPE_PIPE] = ACTIONS(4877), + [anon_sym_LT] = ACTIONS(970), + [anon_sym_GT] = ACTIONS(970), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_AMP_GT] = ACTIONS(970), + [anon_sym_AMP_GT_GT] = ACTIONS(972), + [anon_sym_LT_AMP] = ACTIONS(972), + [anon_sym_GT_AMP] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_LT_LT_DASH] = ACTIONS(976), + [anon_sym_LT_LT_LT] = ACTIONS(978), + [sym_comment] = ACTIONS(56), + }, + [1669] = { + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_RPAREN] = ACTIONS(4881), + [anon_sym_PIPE_AMP] = ACTIONS(4881), + [anon_sym_AMP_AMP] = ACTIONS(4881), + [anon_sym_PIPE_PIPE] = ACTIONS(4881), + [anon_sym_BQUOTE] = ACTIONS(4881), + [sym_comment] = ACTIONS(56), + }, + [1670] = { + [anon_sym_fi] = ACTIONS(4883), + [sym_comment] = ACTIONS(56), + }, + [1671] = { + [sym__terminated_statement] = STATE(699), + [sym_for_statement] = STATE(700), + [sym_while_statement] = STATE(700), + [sym_if_statement] = STATE(700), + [sym_elif_clause] = STATE(701), + [sym_else_clause] = STATE(2328), + [sym_case_statement] = STATE(700), + [sym_function_definition] = STATE(700), + [sym_subshell] = STATE(700), + [sym_pipeline] = STATE(700), + [sym_list] = STATE(700), + [sym_command] = STATE(700), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(700), + [sym_variable_assignment] = STATE(703), + [sym_declaration_command] = STATE(700), + [sym_unset_command] = STATE(700), + [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1320), + [aux_sym_if_statement_repeat1] = STATE(2329), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_fi] = ACTIONS(4885), + [anon_sym_elif] = ACTIONS(1327), + [anon_sym_else] = ACTIONS(1329), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -53216,60 +49292,156 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), + [sym_word] = ACTIONS(58), }, - [1888] = { - [sym_for_statement] = STATE(2329), - [sym_while_statement] = STATE(2329), - [sym_if_statement] = STATE(2329), - [sym_case_statement] = STATE(2329), - [sym_function_definition] = STATE(2329), - [sym_subshell] = STATE(2329), - [sym_pipeline] = STATE(2329), - [sym_list] = STATE(2329), - [sym_bracket_command] = STATE(2329), - [sym_command] = STATE(2329), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(2330), - [sym_declaration_command] = STATE(2329), - [sym_unset_command] = STATE(2329), - [sym_subscript] = STATE(168), + [1672] = { + [sym_elif_clause] = STATE(701), + [sym_else_clause] = STATE(2328), + [aux_sym_if_statement_repeat1] = STATE(1322), + [anon_sym_fi] = ACTIONS(4883), + [anon_sym_elif] = ACTIONS(2647), + [anon_sym_else] = ACTIONS(2649), + [sym_comment] = ACTIONS(56), + }, + [1673] = { + [sym_case_item] = STATE(1332), + [sym_last_case_item] = STATE(2331), + [sym_concatenation] = STATE(1334), + [sym_string] = STATE(1327), + [sym_simple_expansion] = STATE(1327), + [sym_string_expansion] = STATE(1327), + [sym_expansion] = STATE(1327), + [sym_command_substitution] = STATE(1327), + [sym_process_substitution] = STATE(1327), + [aux_sym_case_statement_repeat1] = STATE(2332), + [anon_sym_esac] = ACTIONS(4887), + [sym__special_characters] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2657), + [sym_raw_string] = ACTIONS(2659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2663), + [anon_sym_BQUOTE] = ACTIONS(2665), + [anon_sym_LT_LPAREN] = ACTIONS(2667), + [anon_sym_GT_LPAREN] = ACTIONS(2667), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2669), + }, + [1674] = { + [anon_sym_SEMI_SEMI] = ACTIONS(4889), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4889), + [anon_sym_LF] = ACTIONS(4889), + [anon_sym_AMP] = ACTIONS(4889), + }, + [1675] = { + [sym_case_item] = STATE(1332), + [sym_last_case_item] = STATE(2335), + [sym_concatenation] = STATE(1334), + [sym_string] = STATE(1327), + [sym_simple_expansion] = STATE(1327), + [sym_string_expansion] = STATE(1327), + [sym_expansion] = STATE(1327), + [sym_command_substitution] = STATE(1327), + [sym_process_substitution] = STATE(1327), + [aux_sym_case_statement_repeat1] = STATE(2336), + [anon_sym_esac] = ACTIONS(4891), + [sym__special_characters] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2657), + [sym_raw_string] = ACTIONS(2659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2663), + [anon_sym_BQUOTE] = ACTIONS(2665), + [anon_sym_LT_LPAREN] = ACTIONS(2667), + [anon_sym_GT_LPAREN] = ACTIONS(2667), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2669), + }, + [1676] = { + [anon_sym_SEMI_SEMI] = ACTIONS(4893), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4893), + [anon_sym_LF] = ACTIONS(4893), + [anon_sym_AMP] = ACTIONS(4893), + }, + [1677] = { + [sym_compound_statement] = STATE(2338), + [anon_sym_LBRACE] = ACTIONS(2046), + [sym_comment] = ACTIONS(56), + }, + [1678] = { + [sym_file_descriptor] = ACTIONS(2710), + [anon_sym_PIPE] = ACTIONS(4895), + [anon_sym_RPAREN] = ACTIONS(2710), + [anon_sym_PIPE_AMP] = ACTIONS(2710), + [anon_sym_AMP_AMP] = ACTIONS(2710), + [anon_sym_PIPE_PIPE] = ACTIONS(2710), + [anon_sym_LT] = ACTIONS(4895), + [anon_sym_GT] = ACTIONS(4895), + [anon_sym_GT_GT] = ACTIONS(2710), + [anon_sym_AMP_GT] = ACTIONS(4895), + [anon_sym_AMP_GT_GT] = ACTIONS(2710), + [anon_sym_LT_AMP] = ACTIONS(2710), + [anon_sym_GT_AMP] = ACTIONS(2710), + [anon_sym_BQUOTE] = ACTIONS(2710), + [sym_comment] = ACTIONS(56), + }, + [1679] = { + [sym__terminated_statement] = STATE(731), + [sym_for_statement] = STATE(732), + [sym_while_statement] = STATE(732), + [sym_if_statement] = STATE(732), + [sym_case_statement] = STATE(732), + [sym_function_definition] = STATE(732), + [sym_subshell] = STATE(732), + [sym_pipeline] = STATE(732), + [sym_list] = STATE(732), + [sym_command] = STATE(732), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(732), + [sym_variable_assignment] = STATE(733), + [sym_declaration_command] = STATE(732), + [sym_unset_command] = STATE(732), + [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1362), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_RBRACE] = ACTIONS(4897), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -53277,2394 +49449,1081 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [sym_word] = ACTIONS(58), }, - [1889] = { - [sym__concat] = ACTIONS(2969), - [sym_variable_name] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_RPAREN] = ACTIONS(2971), - [anon_sym_SEMI_SEMI] = ACTIONS(2971), - [anon_sym_PIPE_AMP] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_PIPE_PIPE] = ACTIONS(2971), - [sym__special_characters] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2971), - [sym_raw_string] = ACTIONS(2971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2971), - [anon_sym_BQUOTE] = ACTIONS(2971), - [anon_sym_LT_LPAREN] = ACTIONS(2971), - [anon_sym_GT_LPAREN] = ACTIONS(2971), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2971), - [sym_word] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - }, - [1890] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4889), + [1680] = { + [anon_sym_LT] = ACTIONS(4899), + [anon_sym_GT] = ACTIONS(4899), + [anon_sym_GT_GT] = ACTIONS(4901), + [anon_sym_AMP_GT] = ACTIONS(4899), + [anon_sym_AMP_GT_GT] = ACTIONS(4901), + [anon_sym_LT_AMP] = ACTIONS(4901), + [anon_sym_GT_AMP] = ACTIONS(4901), [sym_comment] = ACTIONS(56), }, - [1891] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4891), - [sym_comment] = ACTIONS(56), - }, - [1892] = { - [anon_sym_RBRACE] = ACTIONS(4891), - [sym_comment] = ACTIONS(56), - }, - [1893] = { - [sym__concat] = ACTIONS(3023), - [sym_variable_name] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3025), - [anon_sym_RPAREN] = ACTIONS(3025), - [anon_sym_SEMI_SEMI] = ACTIONS(3025), - [anon_sym_PIPE_AMP] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [sym__special_characters] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_DOLLAR] = ACTIONS(3025), - [sym_raw_string] = ACTIONS(3025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3025), - [anon_sym_LT_LPAREN] = ACTIONS(3025), - [anon_sym_GT_LPAREN] = ACTIONS(3025), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3025), - [sym_word] = ACTIONS(3025), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_LF] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3025), - }, - [1894] = { - [sym_concatenation] = STATE(2335), - [sym_string] = STATE(2334), - [sym_simple_expansion] = STATE(2334), - [sym_string_expansion] = STATE(2334), - [sym_expansion] = STATE(2334), - [sym_command_substitution] = STATE(2334), - [sym_process_substitution] = STATE(2334), - [anon_sym_RBRACE] = ACTIONS(4891), - [sym__special_characters] = ACTIONS(4893), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(4895), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4897), - }, - [1895] = { - [sym__concat] = ACTIONS(3068), - [sym_variable_name] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_RPAREN] = ACTIONS(3070), - [anon_sym_SEMI_SEMI] = ACTIONS(3070), - [anon_sym_PIPE_AMP] = ACTIONS(3070), - [anon_sym_AMP_AMP] = ACTIONS(3070), - [anon_sym_PIPE_PIPE] = ACTIONS(3070), - [sym__special_characters] = ACTIONS(3070), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3070), - [sym_raw_string] = ACTIONS(3070), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3070), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3070), - [anon_sym_BQUOTE] = ACTIONS(3070), - [anon_sym_LT_LPAREN] = ACTIONS(3070), - [anon_sym_GT_LPAREN] = ACTIONS(3070), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3070), - [sym_word] = ACTIONS(3070), - [anon_sym_SEMI] = ACTIONS(3070), - [anon_sym_LF] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3070), - }, - [1896] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4899), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1897] = { - [sym__concat] = ACTIONS(3074), - [sym_variable_name] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(3076), - [anon_sym_RPAREN] = ACTIONS(3076), - [anon_sym_SEMI_SEMI] = ACTIONS(3076), - [anon_sym_PIPE_AMP] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [sym__special_characters] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR] = ACTIONS(3076), - [sym_raw_string] = ACTIONS(3076), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3076), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3076), - [anon_sym_BQUOTE] = ACTIONS(3076), - [anon_sym_LT_LPAREN] = ACTIONS(3076), - [anon_sym_GT_LPAREN] = ACTIONS(3076), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3076), - [sym_word] = ACTIONS(3076), - [anon_sym_SEMI] = ACTIONS(3076), - [anon_sym_LF] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3076), - }, - [1898] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4901), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1899] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4891), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1900] = { - [sym__concat] = ACTIONS(3080), - [sym_variable_name] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(3082), - [anon_sym_RPAREN] = ACTIONS(3082), - [anon_sym_SEMI_SEMI] = ACTIONS(3082), - [anon_sym_PIPE_AMP] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [sym__special_characters] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_DOLLAR] = ACTIONS(3082), - [sym_raw_string] = ACTIONS(3082), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3082), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3082), - [anon_sym_BQUOTE] = ACTIONS(3082), - [anon_sym_LT_LPAREN] = ACTIONS(3082), - [anon_sym_GT_LPAREN] = ACTIONS(3082), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3082), - [sym_word] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3082), - [anon_sym_LF] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3082), - }, - [1901] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_RPAREN] = ACTIONS(2971), - [anon_sym_SEMI_SEMI] = ACTIONS(2971), - [anon_sym_PIPE_AMP] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_PIPE_PIPE] = ACTIONS(2971), - [sym__special_characters] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2971), - [sym_raw_string] = ACTIONS(2971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2971), - [anon_sym_BQUOTE] = ACTIONS(2971), - [anon_sym_LT_LPAREN] = ACTIONS(2971), - [anon_sym_GT_LPAREN] = ACTIONS(2971), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2971), - [sym_word] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - }, - [1902] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4903), - [sym_comment] = ACTIONS(56), - }, - [1903] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4905), - [sym_comment] = ACTIONS(56), - }, - [1904] = { - [anon_sym_RBRACE] = ACTIONS(4905), - [sym_comment] = ACTIONS(56), - }, - [1905] = { - [sym__concat] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3025), - [anon_sym_RPAREN] = ACTIONS(3025), - [anon_sym_SEMI_SEMI] = ACTIONS(3025), - [anon_sym_PIPE_AMP] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [sym__special_characters] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_DOLLAR] = ACTIONS(3025), - [sym_raw_string] = ACTIONS(3025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3025), - [anon_sym_LT_LPAREN] = ACTIONS(3025), - [anon_sym_GT_LPAREN] = ACTIONS(3025), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3025), - [sym_word] = ACTIONS(3025), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_LF] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3025), - }, - [1906] = { - [sym_concatenation] = STATE(2342), - [sym_string] = STATE(2341), - [sym_simple_expansion] = STATE(2341), - [sym_string_expansion] = STATE(2341), - [sym_expansion] = STATE(2341), - [sym_command_substitution] = STATE(2341), - [sym_process_substitution] = STATE(2341), - [anon_sym_RBRACE] = ACTIONS(4905), - [sym__special_characters] = ACTIONS(4907), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), + [1681] = { + [sym_concatenation] = STATE(2349), + [sym_string] = STATE(2344), + [sym_simple_expansion] = STATE(2344), + [sym_string_expansion] = STATE(2344), + [sym_expansion] = STATE(2344), + [sym_command_substitution] = STATE(2344), + [sym_process_substitution] = STATE(2344), + [sym__special_characters] = ACTIONS(4903), + [anon_sym_DQUOTE] = ACTIONS(4905), + [anon_sym_DOLLAR] = ACTIONS(4907), [sym_raw_string] = ACTIONS(4909), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4911), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4913), + [anon_sym_BQUOTE] = ACTIONS(4915), + [anon_sym_LT_LPAREN] = ACTIONS(4917), + [anon_sym_GT_LPAREN] = ACTIONS(4917), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4919), + }, + [1682] = { + [anon_sym_PIPE] = ACTIONS(4921), + [anon_sym_RPAREN] = ACTIONS(4923), + [anon_sym_PIPE_AMP] = ACTIONS(4923), + [anon_sym_AMP_AMP] = ACTIONS(4923), + [anon_sym_PIPE_PIPE] = ACTIONS(4923), + [anon_sym_BQUOTE] = ACTIONS(4923), + [sym_comment] = ACTIONS(56), + }, + [1683] = { + [anon_sym_PIPE] = ACTIONS(4925), + [anon_sym_RPAREN] = ACTIONS(4927), + [anon_sym_PIPE_AMP] = ACTIONS(4927), + [anon_sym_AMP_AMP] = ACTIONS(4927), + [anon_sym_PIPE_PIPE] = ACTIONS(4927), + [anon_sym_BQUOTE] = ACTIONS(4927), + [sym_comment] = ACTIONS(56), + }, + [1684] = { + [sym_file_descriptor] = ACTIONS(1080), + [sym_variable_name] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_RPAREN] = ACTIONS(4929), + [anon_sym_function] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1080), + [anon_sym_declare] = ACTIONS(1082), + [anon_sym_typeset] = ACTIONS(1082), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_readonly] = ACTIONS(1082), + [anon_sym_local] = ACTIONS(1082), + [anon_sym_unset] = ACTIONS(1082), + [anon_sym_unsetenv] = ACTIONS(1082), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1080), + [anon_sym_LT_AMP] = ACTIONS(1080), + [anon_sym_GT_AMP] = ACTIONS(1080), + [sym__special_characters] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(1080), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1080), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1080), + [anon_sym_BQUOTE] = ACTIONS(1080), + [anon_sym_LT_LPAREN] = ACTIONS(1080), + [anon_sym_GT_LPAREN] = ACTIONS(1080), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1084), + }, + [1685] = { + [sym_file_redirect] = STATE(539), + [sym_heredoc_redirect] = STATE(539), + [sym_herestring_redirect] = STATE(539), + [aux_sym_while_statement_repeat1] = STATE(1101), + [sym_file_descriptor] = ACTIONS(962), + [anon_sym_PIPE] = ACTIONS(4931), + [anon_sym_RPAREN] = ACTIONS(4933), + [anon_sym_PIPE_AMP] = ACTIONS(4933), + [anon_sym_AMP_AMP] = ACTIONS(4933), + [anon_sym_PIPE_PIPE] = ACTIONS(4933), + [anon_sym_LT] = ACTIONS(970), + [anon_sym_GT] = ACTIONS(970), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_AMP_GT] = ACTIONS(970), + [anon_sym_AMP_GT_GT] = ACTIONS(972), + [anon_sym_LT_AMP] = ACTIONS(972), + [anon_sym_GT_AMP] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_LT_LT_DASH] = ACTIONS(976), + [anon_sym_LT_LT_LT] = ACTIONS(978), + [sym_comment] = ACTIONS(56), + }, + [1686] = { + [sym_variable_name] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(3368), + [anon_sym_RPAREN] = ACTIONS(1255), + [anon_sym_PIPE_AMP] = ACTIONS(1255), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [sym__special_characters] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(1255), + [anon_sym_DOLLAR] = ACTIONS(3368), + [sym_raw_string] = ACTIONS(1255), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1255), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1255), + [anon_sym_BQUOTE] = ACTIONS(1255), + [anon_sym_LT_LPAREN] = ACTIONS(1255), + [anon_sym_GT_LPAREN] = ACTIONS(1255), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3368), + [sym_word] = ACTIONS(1257), + }, + [1687] = { + [sym_concatenation] = STATE(660), + [sym_string] = STATE(655), + [sym_simple_expansion] = STATE(655), + [sym_string_expansion] = STATE(655), + [sym_expansion] = STATE(655), + [sym_command_substitution] = STATE(655), + [sym_process_substitution] = STATE(655), + [aux_sym_for_statement_repeat1] = STATE(2352), + [anon_sym_RPAREN] = ACTIONS(4935), + [sym__special_characters] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_DOLLAR] = ACTIONS(1265), + [sym_raw_string] = ACTIONS(1267), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1269), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1273), + [anon_sym_LT_LPAREN] = ACTIONS(1275), + [anon_sym_GT_LPAREN] = ACTIONS(1275), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1277), + }, + [1688] = { + [aux_sym_concatenation_repeat1] = STATE(1021), + [sym__concat] = ACTIONS(2056), + [sym_variable_name] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(3374), + [anon_sym_RPAREN] = ACTIONS(1279), + [anon_sym_PIPE_AMP] = ACTIONS(1279), + [anon_sym_AMP_AMP] = ACTIONS(1279), + [anon_sym_PIPE_PIPE] = ACTIONS(1279), + [sym__special_characters] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(3374), + [sym_raw_string] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_LT_LPAREN] = ACTIONS(1279), + [anon_sym_GT_LPAREN] = ACTIONS(1279), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3374), + [sym_word] = ACTIONS(1283), + }, + [1689] = { + [aux_sym_concatenation_repeat1] = STATE(1021), + [sym__concat] = ACTIONS(2056), + [sym_variable_name] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(3368), + [anon_sym_RPAREN] = ACTIONS(1255), + [anon_sym_PIPE_AMP] = ACTIONS(1255), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [sym__special_characters] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(1255), + [anon_sym_DOLLAR] = ACTIONS(3368), + [sym_raw_string] = ACTIONS(1255), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1255), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1255), + [anon_sym_BQUOTE] = ACTIONS(1255), + [anon_sym_LT_LPAREN] = ACTIONS(1255), + [anon_sym_GT_LPAREN] = ACTIONS(1255), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3368), + [sym_word] = ACTIONS(1257), + }, + [1690] = { + [sym__concat] = ACTIONS(1858), + [sym_variable_name] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(1858), + [anon_sym_PIPE_AMP] = ACTIONS(1858), + [anon_sym_AMP_AMP] = ACTIONS(1858), + [anon_sym_PIPE_PIPE] = ACTIONS(1858), + [sym__special_characters] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1858), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), + [anon_sym_BQUOTE] = ACTIONS(1858), + [anon_sym_LT_LPAREN] = ACTIONS(1858), + [anon_sym_GT_LPAREN] = ACTIONS(1858), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4911), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3008), + [sym_word] = ACTIONS(1860), }, - [1907] = { - [sym__concat] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_RPAREN] = ACTIONS(3070), - [anon_sym_SEMI_SEMI] = ACTIONS(3070), - [anon_sym_PIPE_AMP] = ACTIONS(3070), - [anon_sym_AMP_AMP] = ACTIONS(3070), - [anon_sym_PIPE_PIPE] = ACTIONS(3070), - [sym__special_characters] = ACTIONS(3070), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3070), - [sym_raw_string] = ACTIONS(3070), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3070), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3070), - [anon_sym_BQUOTE] = ACTIONS(3070), - [anon_sym_LT_LPAREN] = ACTIONS(3070), - [anon_sym_GT_LPAREN] = ACTIONS(3070), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3070), - [sym_word] = ACTIONS(3070), - [anon_sym_SEMI] = ACTIONS(3070), - [anon_sym_LF] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3070), - }, - [1908] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4913), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1909] = { - [sym__concat] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(3076), - [anon_sym_RPAREN] = ACTIONS(3076), - [anon_sym_SEMI_SEMI] = ACTIONS(3076), - [anon_sym_PIPE_AMP] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [sym__special_characters] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR] = ACTIONS(3076), - [sym_raw_string] = ACTIONS(3076), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3076), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3076), - [anon_sym_BQUOTE] = ACTIONS(3076), - [anon_sym_LT_LPAREN] = ACTIONS(3076), - [anon_sym_GT_LPAREN] = ACTIONS(3076), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3076), - [sym_word] = ACTIONS(3076), - [anon_sym_SEMI] = ACTIONS(3076), - [anon_sym_LF] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3076), - }, - [1910] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4915), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1911] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4905), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1912] = { - [sym__concat] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(3082), - [anon_sym_RPAREN] = ACTIONS(3082), - [anon_sym_SEMI_SEMI] = ACTIONS(3082), - [anon_sym_PIPE_AMP] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [sym__special_characters] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_DOLLAR] = ACTIONS(3082), - [sym_raw_string] = ACTIONS(3082), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3082), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3082), - [anon_sym_BQUOTE] = ACTIONS(3082), - [anon_sym_LT_LPAREN] = ACTIONS(3082), - [anon_sym_GT_LPAREN] = ACTIONS(3082), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3082), - [sym_word] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3082), - [anon_sym_LF] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3082), - }, - [1913] = { - [sym_file_descriptor] = ACTIONS(4214), - [sym__concat] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_RPAREN] = ACTIONS(4216), - [anon_sym_SEMI_SEMI] = ACTIONS(4216), - [anon_sym_PIPE_AMP] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4216), - [anon_sym_PIPE_PIPE] = ACTIONS(4216), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_AMP_GT] = ACTIONS(4216), - [anon_sym_AMP_GT_GT] = ACTIONS(4216), - [anon_sym_LT_AMP] = ACTIONS(4216), - [anon_sym_GT_AMP] = ACTIONS(4216), - [anon_sym_LT_LT] = ACTIONS(4216), - [anon_sym_LT_LT_DASH] = ACTIONS(4216), - [anon_sym_LT_LT_LT] = ACTIONS(4216), - [sym__special_characters] = ACTIONS(4216), - [anon_sym_DQUOTE] = ACTIONS(4216), - [anon_sym_DOLLAR] = ACTIONS(4216), - [sym_raw_string] = ACTIONS(4216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4216), - [anon_sym_BQUOTE] = ACTIONS(4216), - [anon_sym_LT_LPAREN] = ACTIONS(4216), - [anon_sym_GT_LPAREN] = ACTIONS(4216), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(4216), - [anon_sym_SEMI] = ACTIONS(4216), - [anon_sym_LF] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - }, - [1914] = { - [sym_file_descriptor] = ACTIONS(4220), - [sym__concat] = ACTIONS(4220), - [anon_sym_PIPE] = ACTIONS(4222), - [anon_sym_RPAREN] = ACTIONS(4222), - [anon_sym_SEMI_SEMI] = ACTIONS(4222), - [anon_sym_PIPE_AMP] = ACTIONS(4222), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [anon_sym_LT] = ACTIONS(4222), - [anon_sym_GT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4222), - [anon_sym_AMP_GT] = ACTIONS(4222), - [anon_sym_AMP_GT_GT] = ACTIONS(4222), - [anon_sym_LT_AMP] = ACTIONS(4222), - [anon_sym_GT_AMP] = ACTIONS(4222), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_LT_LT_DASH] = ACTIONS(4222), - [anon_sym_LT_LT_LT] = ACTIONS(4222), - [sym__special_characters] = ACTIONS(4222), - [anon_sym_DQUOTE] = ACTIONS(4222), - [anon_sym_DOLLAR] = ACTIONS(4222), - [sym_raw_string] = ACTIONS(4222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4222), - [anon_sym_BQUOTE] = ACTIONS(4222), - [anon_sym_LT_LPAREN] = ACTIONS(4222), - [anon_sym_GT_LPAREN] = ACTIONS(4222), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(4222), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_LF] = ACTIONS(4222), - [anon_sym_AMP] = ACTIONS(4222), - }, - [1915] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4917), - [sym_comment] = ACTIONS(56), - }, - [1916] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4919), - [sym_comment] = ACTIONS(56), - }, - [1917] = { - [anon_sym_RBRACE] = ACTIONS(4919), - [sym_comment] = ACTIONS(56), - }, - [1918] = { - [sym_file_descriptor] = ACTIONS(4269), - [sym__concat] = ACTIONS(4269), - [anon_sym_PIPE] = ACTIONS(4271), - [anon_sym_RPAREN] = ACTIONS(4271), - [anon_sym_SEMI_SEMI] = ACTIONS(4271), - [anon_sym_PIPE_AMP] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4271), - [anon_sym_GT] = ACTIONS(4271), - [anon_sym_GT_GT] = ACTIONS(4271), - [anon_sym_AMP_GT] = ACTIONS(4271), - [anon_sym_AMP_GT_GT] = ACTIONS(4271), - [anon_sym_LT_AMP] = ACTIONS(4271), - [anon_sym_GT_AMP] = ACTIONS(4271), - [anon_sym_LT_LT] = ACTIONS(4271), - [anon_sym_LT_LT_DASH] = ACTIONS(4271), - [anon_sym_LT_LT_LT] = ACTIONS(4271), - [sym__special_characters] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4271), - [sym_raw_string] = ACTIONS(4271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4271), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4271), - [anon_sym_BQUOTE] = ACTIONS(4271), - [anon_sym_LT_LPAREN] = ACTIONS(4271), - [anon_sym_GT_LPAREN] = ACTIONS(4271), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(4271), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_LF] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4271), - }, - [1919] = { - [sym_file_descriptor] = ACTIONS(4273), - [sym__concat] = ACTIONS(4273), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [anon_sym_SEMI_SEMI] = ACTIONS(4275), - [anon_sym_PIPE_AMP] = ACTIONS(4275), - [anon_sym_AMP_AMP] = ACTIONS(4275), - [anon_sym_PIPE_PIPE] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_GT_GT] = ACTIONS(4275), - [anon_sym_AMP_GT] = ACTIONS(4275), - [anon_sym_AMP_GT_GT] = ACTIONS(4275), - [anon_sym_LT_AMP] = ACTIONS(4275), - [anon_sym_GT_AMP] = ACTIONS(4275), - [anon_sym_LT_LT] = ACTIONS(4275), - [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(4275), - [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(178), - [sym_word] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_LF] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4275), - }, - [1920] = { - [sym_file_descriptor] = ACTIONS(1790), - [sym__concat] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [anon_sym_PIPE_AMP] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_GT_GT] = ACTIONS(1792), - [anon_sym_AMP_GT] = ACTIONS(1792), - [anon_sym_AMP_GT_GT] = ACTIONS(1792), - [anon_sym_LT_AMP] = ACTIONS(1792), - [anon_sym_GT_AMP] = ACTIONS(1792), - [anon_sym_LT_LT] = ACTIONS(1792), - [anon_sym_LT_LT_DASH] = ACTIONS(1792), - [anon_sym_LT_LT_LT] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - }, - [1921] = { - [aux_sym_concatenation_repeat1] = STATE(1921), - [sym_file_descriptor] = ACTIONS(1790), - [sym__concat] = ACTIONS(4921), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [anon_sym_PIPE_AMP] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_GT_GT] = ACTIONS(1792), - [anon_sym_AMP_GT] = ACTIONS(1792), - [anon_sym_AMP_GT_GT] = ACTIONS(1792), - [anon_sym_LT_AMP] = ACTIONS(1792), - [anon_sym_GT_AMP] = ACTIONS(1792), - [anon_sym_LT_LT] = ACTIONS(1792), - [anon_sym_LT_LT_DASH] = ACTIONS(1792), - [anon_sym_LT_LT_LT] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - }, - [1922] = { - [sym_file_descriptor] = ACTIONS(1821), - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_RPAREN] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_GT] = ACTIONS(1823), - [anon_sym_GT_GT] = ACTIONS(1823), - [anon_sym_AMP_GT] = ACTIONS(1823), - [anon_sym_AMP_GT_GT] = ACTIONS(1823), - [anon_sym_LT_AMP] = ACTIONS(1823), - [anon_sym_GT_AMP] = ACTIONS(1823), - [anon_sym_LT_LT] = ACTIONS(1823), - [anon_sym_LT_LT_DASH] = ACTIONS(1823), - [anon_sym_LT_LT_LT] = ACTIONS(1823), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LF] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - }, - [1923] = { - [sym_concatenation] = STATE(2350), - [sym_string] = STATE(2349), - [sym_simple_expansion] = STATE(2349), - [sym_string_expansion] = STATE(2349), - [sym_expansion] = STATE(2349), - [sym_command_substitution] = STATE(2349), - [sym_process_substitution] = STATE(2349), - [anon_sym_RBRACE] = ACTIONS(4924), - [sym__special_characters] = ACTIONS(4926), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(4928), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), + [1691] = { + [aux_sym_concatenation_repeat1] = STATE(1691), + [sym__concat] = ACTIONS(4937), + [sym_variable_name] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(1858), + [anon_sym_PIPE_AMP] = ACTIONS(1858), + [anon_sym_AMP_AMP] = ACTIONS(1858), + [anon_sym_PIPE_PIPE] = ACTIONS(1858), + [sym__special_characters] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1858), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), + [anon_sym_BQUOTE] = ACTIONS(1858), + [anon_sym_LT_LPAREN] = ACTIONS(1858), + [anon_sym_GT_LPAREN] = ACTIONS(1858), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4930), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3008), + [sym_word] = ACTIONS(1860), }, - [1924] = { - [sym_file_descriptor] = ACTIONS(1866), - [sym__concat] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_RPAREN] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [anon_sym_PIPE_AMP] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_GT_GT] = ACTIONS(1868), - [anon_sym_AMP_GT] = ACTIONS(1868), - [anon_sym_AMP_GT_GT] = ACTIONS(1868), - [anon_sym_LT_AMP] = ACTIONS(1868), - [anon_sym_GT_AMP] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1868), - [anon_sym_LT_LT_DASH] = ACTIONS(1868), - [anon_sym_LT_LT_LT] = ACTIONS(1868), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - }, - [1925] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4932), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1926] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(4934), + [1692] = { + [sym__concat] = ACTIONS(1895), + [sym_variable_name] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_RPAREN] = ACTIONS(1895), + [anon_sym_PIPE_AMP] = ACTIONS(1895), + [anon_sym_AMP_AMP] = ACTIONS(1895), + [anon_sym_PIPE_PIPE] = ACTIONS(1895), + [sym__special_characters] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(3013), + [sym_raw_string] = ACTIONS(1895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1895), + [anon_sym_BQUOTE] = ACTIONS(1895), + [anon_sym_LT_LPAREN] = ACTIONS(1895), + [anon_sym_GT_LPAREN] = ACTIONS(1895), [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3013), + [sym_word] = ACTIONS(1897), }, - [1927] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2354), - [anon_sym_RBRACE] = ACTIONS(4936), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1928] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2356), - [anon_sym_RBRACE] = ACTIONS(4938), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1929] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2357), - [anon_sym_RBRACE] = ACTIONS(4924), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1930] = { - [sym_file_descriptor] = ACTIONS(1910), - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1912), - [anon_sym_SEMI_SEMI] = ACTIONS(1912), - [anon_sym_PIPE_AMP] = ACTIONS(1912), - [anon_sym_AMP_AMP] = ACTIONS(1912), - [anon_sym_PIPE_PIPE] = ACTIONS(1912), - [anon_sym_LT] = ACTIONS(1912), - [anon_sym_GT] = ACTIONS(1912), - [anon_sym_GT_GT] = ACTIONS(1912), - [anon_sym_AMP_GT] = ACTIONS(1912), - [anon_sym_AMP_GT_GT] = ACTIONS(1912), - [anon_sym_LT_AMP] = ACTIONS(1912), - [anon_sym_GT_AMP] = ACTIONS(1912), - [anon_sym_LT_LT] = ACTIONS(1912), - [anon_sym_LT_LT_DASH] = ACTIONS(1912), - [anon_sym_LT_LT_LT] = ACTIONS(1912), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_LF] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1912), - }, - [1931] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), + [1693] = { + [sym_concatenation] = STATE(2356), + [sym_string] = STATE(2355), + [sym_simple_expansion] = STATE(2355), + [sym_string_expansion] = STATE(2355), + [sym_expansion] = STATE(2355), + [sym_command_substitution] = STATE(2355), + [sym_process_substitution] = STATE(2355), [anon_sym_RBRACE] = ACTIONS(4940), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1932] = { - [sym_file_descriptor] = ACTIONS(1916), - [sym__concat] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_RPAREN] = ACTIONS(1918), - [anon_sym_SEMI_SEMI] = ACTIONS(1918), - [anon_sym_PIPE_AMP] = ACTIONS(1918), - [anon_sym_AMP_AMP] = ACTIONS(1918), - [anon_sym_PIPE_PIPE] = ACTIONS(1918), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_GT] = ACTIONS(1918), - [anon_sym_GT_GT] = ACTIONS(1918), - [anon_sym_AMP_GT] = ACTIONS(1918), - [anon_sym_AMP_GT_GT] = ACTIONS(1918), - [anon_sym_LT_AMP] = ACTIONS(1918), - [anon_sym_GT_AMP] = ACTIONS(1918), - [anon_sym_LT_LT] = ACTIONS(1918), - [anon_sym_LT_LT_DASH] = ACTIONS(1918), - [anon_sym_LT_LT_LT] = ACTIONS(1918), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_LF] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), - }, - [1933] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4924), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1934] = { - [sym_file_descriptor] = ACTIONS(2064), - [sym__concat] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_RPAREN] = ACTIONS(2066), - [anon_sym_SEMI_SEMI] = ACTIONS(2066), - [anon_sym_PIPE_AMP] = ACTIONS(2066), - [anon_sym_AMP_AMP] = ACTIONS(2066), - [anon_sym_PIPE_PIPE] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_GT] = ACTIONS(2066), - [anon_sym_GT_GT] = ACTIONS(2066), - [anon_sym_AMP_GT] = ACTIONS(2066), - [anon_sym_AMP_GT_GT] = ACTIONS(2066), - [anon_sym_LT_AMP] = ACTIONS(2066), - [anon_sym_GT_AMP] = ACTIONS(2066), - [anon_sym_LT_LT] = ACTIONS(2066), - [anon_sym_LT_LT_DASH] = ACTIONS(2066), - [anon_sym_LT_LT_LT] = ACTIONS(2066), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_LF] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2066), - }, - [1935] = { - [sym_file_descriptor] = ACTIONS(2228), - [sym__concat] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_RPAREN] = ACTIONS(2230), - [anon_sym_SEMI_SEMI] = ACTIONS(2230), - [anon_sym_PIPE_AMP] = ACTIONS(2230), - [anon_sym_AMP_AMP] = ACTIONS(2230), - [anon_sym_PIPE_PIPE] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_AMP_GT] = ACTIONS(2230), - [anon_sym_AMP_GT_GT] = ACTIONS(2230), - [anon_sym_LT_AMP] = ACTIONS(2230), - [anon_sym_GT_AMP] = ACTIONS(2230), - [anon_sym_LT_LT] = ACTIONS(2230), - [anon_sym_LT_LT_DASH] = ACTIONS(2230), - [anon_sym_LT_LT_LT] = ACTIONS(2230), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_LF] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - }, - [1936] = { - [sym__concat] = ACTIONS(4214), - [anon_sym_EQ_TILDE] = ACTIONS(4942), - [anon_sym_RBRACK] = ACTIONS(4214), - [sym__special_characters] = ACTIONS(4216), - [anon_sym_DQUOTE] = ACTIONS(4214), - [anon_sym_DOLLAR] = ACTIONS(4942), - [sym_raw_string] = ACTIONS(4214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4214), - [anon_sym_BQUOTE] = ACTIONS(4214), - [anon_sym_LT_LPAREN] = ACTIONS(4214), - [anon_sym_GT_LPAREN] = ACTIONS(4214), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4216), - }, - [1937] = { - [sym__concat] = ACTIONS(4220), - [anon_sym_EQ_TILDE] = ACTIONS(4944), - [anon_sym_RBRACK] = ACTIONS(4220), - [sym__special_characters] = ACTIONS(4222), - [anon_sym_DQUOTE] = ACTIONS(4220), - [anon_sym_DOLLAR] = ACTIONS(4944), - [sym_raw_string] = ACTIONS(4220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4220), - [anon_sym_BQUOTE] = ACTIONS(4220), - [anon_sym_LT_LPAREN] = ACTIONS(4220), - [anon_sym_GT_LPAREN] = ACTIONS(4220), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4222), - }, - [1938] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4946), - [sym_comment] = ACTIONS(56), - }, - [1939] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4948), - [sym_comment] = ACTIONS(56), - }, - [1940] = { - [anon_sym_RBRACE] = ACTIONS(4948), - [sym_comment] = ACTIONS(56), - }, - [1941] = { - [sym__concat] = ACTIONS(4269), - [anon_sym_EQ_TILDE] = ACTIONS(4950), - [anon_sym_RBRACK] = ACTIONS(4269), - [sym__special_characters] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4269), - [anon_sym_DOLLAR] = ACTIONS(4950), - [sym_raw_string] = ACTIONS(4269), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4269), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4269), - [anon_sym_BQUOTE] = ACTIONS(4269), - [anon_sym_LT_LPAREN] = ACTIONS(4269), - [anon_sym_GT_LPAREN] = ACTIONS(4269), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4271), - }, - [1942] = { - [sym__concat] = ACTIONS(4273), - [anon_sym_EQ_TILDE] = ACTIONS(4952), - [anon_sym_RBRACK] = ACTIONS(4273), - [sym__special_characters] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4273), - [anon_sym_DOLLAR] = ACTIONS(4952), - [sym_raw_string] = ACTIONS(4273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4273), - [anon_sym_BQUOTE] = ACTIONS(4273), - [anon_sym_LT_LPAREN] = ACTIONS(4273), - [anon_sym_GT_LPAREN] = ACTIONS(4273), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4275), - }, - [1943] = { - [sym__concat] = ACTIONS(4214), - [anon_sym_EQ_TILDE] = ACTIONS(4942), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4214), - [sym__special_characters] = ACTIONS(4216), - [anon_sym_DQUOTE] = ACTIONS(4214), - [anon_sym_DOLLAR] = ACTIONS(4942), - [sym_raw_string] = ACTIONS(4214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4214), - [anon_sym_BQUOTE] = ACTIONS(4214), - [anon_sym_LT_LPAREN] = ACTIONS(4214), - [anon_sym_GT_LPAREN] = ACTIONS(4214), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4216), - }, - [1944] = { - [sym__concat] = ACTIONS(4220), - [anon_sym_EQ_TILDE] = ACTIONS(4944), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4220), - [sym__special_characters] = ACTIONS(4222), - [anon_sym_DQUOTE] = ACTIONS(4220), - [anon_sym_DOLLAR] = ACTIONS(4944), - [sym_raw_string] = ACTIONS(4220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4220), - [anon_sym_BQUOTE] = ACTIONS(4220), - [anon_sym_LT_LPAREN] = ACTIONS(4220), - [anon_sym_GT_LPAREN] = ACTIONS(4220), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4222), - }, - [1945] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4954), - [sym_comment] = ACTIONS(56), - }, - [1946] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4956), - [sym_comment] = ACTIONS(56), - }, - [1947] = { - [anon_sym_RBRACE] = ACTIONS(4956), - [sym_comment] = ACTIONS(56), - }, - [1948] = { - [sym__concat] = ACTIONS(4269), - [anon_sym_EQ_TILDE] = ACTIONS(4950), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4269), - [sym__special_characters] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4269), - [anon_sym_DOLLAR] = ACTIONS(4950), - [sym_raw_string] = ACTIONS(4269), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4269), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4269), - [anon_sym_BQUOTE] = ACTIONS(4269), - [anon_sym_LT_LPAREN] = ACTIONS(4269), - [anon_sym_GT_LPAREN] = ACTIONS(4269), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4271), - }, - [1949] = { - [sym__concat] = ACTIONS(4273), - [anon_sym_EQ_TILDE] = ACTIONS(4952), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4273), - [sym__special_characters] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4273), - [anon_sym_DOLLAR] = ACTIONS(4952), - [sym_raw_string] = ACTIONS(4273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4273), - [anon_sym_BQUOTE] = ACTIONS(4273), - [anon_sym_LT_LPAREN] = ACTIONS(4273), - [anon_sym_GT_LPAREN] = ACTIONS(4273), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4275), - }, - [1950] = { - [sym_variable_name] = ACTIONS(3751), - [anon_sym_PIPE] = ACTIONS(3753), - [anon_sym_RPAREN] = ACTIONS(3753), - [anon_sym_SEMI_SEMI] = ACTIONS(3753), - [anon_sym_PIPE_AMP] = ACTIONS(3753), - [anon_sym_AMP_AMP] = ACTIONS(3753), - [anon_sym_PIPE_PIPE] = ACTIONS(3753), - [sym__special_characters] = ACTIONS(3753), - [anon_sym_DQUOTE] = ACTIONS(3753), - [anon_sym_DOLLAR] = ACTIONS(3753), - [sym_raw_string] = ACTIONS(3753), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3753), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3753), - [anon_sym_BQUOTE] = ACTIONS(3753), - [anon_sym_LT_LPAREN] = ACTIONS(3753), - [anon_sym_GT_LPAREN] = ACTIONS(3753), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3753), - [sym_word] = ACTIONS(3753), - [anon_sym_SEMI] = ACTIONS(3753), - [anon_sym_LF] = ACTIONS(3753), - [anon_sym_AMP] = ACTIONS(3753), - }, - [1951] = { - [sym__concat] = ACTIONS(4214), - [sym_variable_name] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_SEMI_SEMI] = ACTIONS(4216), - [anon_sym_PIPE_AMP] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4216), - [anon_sym_PIPE_PIPE] = ACTIONS(4216), - [sym__special_characters] = ACTIONS(4216), - [anon_sym_DQUOTE] = ACTIONS(4216), - [anon_sym_DOLLAR] = ACTIONS(4216), - [sym_raw_string] = ACTIONS(4216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4216), - [anon_sym_BQUOTE] = ACTIONS(4216), - [anon_sym_LT_LPAREN] = ACTIONS(4216), - [anon_sym_GT_LPAREN] = ACTIONS(4216), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4216), - [sym_word] = ACTIONS(4216), - [anon_sym_SEMI] = ACTIONS(4216), - [anon_sym_LF] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - }, - [1952] = { - [sym__concat] = ACTIONS(4220), - [sym_variable_name] = ACTIONS(4220), - [anon_sym_PIPE] = ACTIONS(4222), - [anon_sym_SEMI_SEMI] = ACTIONS(4222), - [anon_sym_PIPE_AMP] = ACTIONS(4222), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym__special_characters] = ACTIONS(4222), - [anon_sym_DQUOTE] = ACTIONS(4222), - [anon_sym_DOLLAR] = ACTIONS(4222), - [sym_raw_string] = ACTIONS(4222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4222), - [anon_sym_BQUOTE] = ACTIONS(4222), - [anon_sym_LT_LPAREN] = ACTIONS(4222), - [anon_sym_GT_LPAREN] = ACTIONS(4222), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4222), - [sym_word] = ACTIONS(4222), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_LF] = ACTIONS(4222), - [anon_sym_AMP] = ACTIONS(4222), - }, - [1953] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4958), - [sym_comment] = ACTIONS(56), - }, - [1954] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4960), - [sym_comment] = ACTIONS(56), - }, - [1955] = { - [anon_sym_RBRACE] = ACTIONS(4960), - [sym_comment] = ACTIONS(56), - }, - [1956] = { - [sym__concat] = ACTIONS(4269), - [sym_variable_name] = ACTIONS(4269), - [anon_sym_PIPE] = ACTIONS(4271), - [anon_sym_SEMI_SEMI] = ACTIONS(4271), - [anon_sym_PIPE_AMP] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [sym__special_characters] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4271), - [sym_raw_string] = ACTIONS(4271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4271), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4271), - [anon_sym_BQUOTE] = ACTIONS(4271), - [anon_sym_LT_LPAREN] = ACTIONS(4271), - [anon_sym_GT_LPAREN] = ACTIONS(4271), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4271), - [sym_word] = ACTIONS(4271), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_LF] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4271), - }, - [1957] = { - [sym__concat] = ACTIONS(4273), - [sym_variable_name] = ACTIONS(4273), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_SEMI_SEMI] = 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(4275), - [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(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4275), - [sym_word] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_LF] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4275), - }, - [1958] = { - [sym__concat] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_SEMI_SEMI] = ACTIONS(4216), - [anon_sym_PIPE_AMP] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4216), - [anon_sym_PIPE_PIPE] = ACTIONS(4216), - [sym__special_characters] = ACTIONS(4216), - [anon_sym_DQUOTE] = ACTIONS(4216), - [anon_sym_DOLLAR] = ACTIONS(4216), - [sym_raw_string] = ACTIONS(4216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4216), - [anon_sym_BQUOTE] = ACTIONS(4216), - [anon_sym_LT_LPAREN] = ACTIONS(4216), - [anon_sym_GT_LPAREN] = ACTIONS(4216), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4216), - [sym_word] = ACTIONS(4216), - [anon_sym_SEMI] = ACTIONS(4216), - [anon_sym_LF] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - }, - [1959] = { - [sym__concat] = ACTIONS(4220), - [anon_sym_PIPE] = ACTIONS(4222), - [anon_sym_SEMI_SEMI] = ACTIONS(4222), - [anon_sym_PIPE_AMP] = ACTIONS(4222), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym__special_characters] = ACTIONS(4222), - [anon_sym_DQUOTE] = ACTIONS(4222), - [anon_sym_DOLLAR] = ACTIONS(4222), - [sym_raw_string] = ACTIONS(4222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4222), - [anon_sym_BQUOTE] = ACTIONS(4222), - [anon_sym_LT_LPAREN] = ACTIONS(4222), - [anon_sym_GT_LPAREN] = ACTIONS(4222), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4222), - [sym_word] = ACTIONS(4222), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_LF] = ACTIONS(4222), - [anon_sym_AMP] = ACTIONS(4222), - }, - [1960] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4962), - [sym_comment] = ACTIONS(56), - }, - [1961] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4964), - [sym_comment] = ACTIONS(56), - }, - [1962] = { - [anon_sym_RBRACE] = ACTIONS(4964), - [sym_comment] = ACTIONS(56), - }, - [1963] = { - [sym__concat] = ACTIONS(4269), - [anon_sym_PIPE] = ACTIONS(4271), - [anon_sym_SEMI_SEMI] = ACTIONS(4271), - [anon_sym_PIPE_AMP] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [sym__special_characters] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4271), - [sym_raw_string] = ACTIONS(4271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4271), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4271), - [anon_sym_BQUOTE] = ACTIONS(4271), - [anon_sym_LT_LPAREN] = ACTIONS(4271), - [anon_sym_GT_LPAREN] = ACTIONS(4271), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4271), - [sym_word] = ACTIONS(4271), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_LF] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4271), - }, - [1964] = { - [sym__concat] = ACTIONS(4273), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_SEMI_SEMI] = 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(4275), - [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(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4275), - [sym_word] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_LF] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4275), - }, - [1965] = { - [sym_file_descriptor] = ACTIONS(4214), - [sym__concat] = ACTIONS(4214), - [sym_variable_name] = ACTIONS(4214), - [anon_sym_LT] = ACTIONS(4942), - [anon_sym_GT] = ACTIONS(4942), - [anon_sym_GT_GT] = ACTIONS(4214), - [anon_sym_AMP_GT] = ACTIONS(4942), - [anon_sym_AMP_GT_GT] = ACTIONS(4214), - [anon_sym_LT_AMP] = ACTIONS(4214), - [anon_sym_GT_AMP] = ACTIONS(4214), [sym__special_characters] = ACTIONS(4942), - [anon_sym_DQUOTE] = ACTIONS(4214), - [anon_sym_DOLLAR] = ACTIONS(4942), - [sym_raw_string] = ACTIONS(4214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4214), - [anon_sym_BQUOTE] = ACTIONS(4214), - [anon_sym_LT_LPAREN] = ACTIONS(4214), - [anon_sym_GT_LPAREN] = ACTIONS(4214), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(4944), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4942), + [sym_word] = ACTIONS(4946), }, - [1966] = { - [sym_file_descriptor] = ACTIONS(4220), - [sym__concat] = ACTIONS(4220), - [sym_variable_name] = ACTIONS(4220), - [anon_sym_LT] = ACTIONS(4944), - [anon_sym_GT] = ACTIONS(4944), - [anon_sym_GT_GT] = ACTIONS(4220), - [anon_sym_AMP_GT] = ACTIONS(4944), - [anon_sym_AMP_GT_GT] = ACTIONS(4220), - [anon_sym_LT_AMP] = ACTIONS(4220), - [anon_sym_GT_AMP] = ACTIONS(4220), - [sym__special_characters] = ACTIONS(4944), - [anon_sym_DQUOTE] = ACTIONS(4220), - [anon_sym_DOLLAR] = ACTIONS(4944), - [sym_raw_string] = ACTIONS(4220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4220), - [anon_sym_BQUOTE] = ACTIONS(4220), - [anon_sym_LT_LPAREN] = ACTIONS(4220), - [anon_sym_GT_LPAREN] = ACTIONS(4220), + [1694] = { + [sym__concat] = ACTIONS(1940), + [sym_variable_name] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(3023), + [anon_sym_RPAREN] = ACTIONS(1940), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [sym__special_characters] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(3023), + [sym_raw_string] = ACTIONS(1940), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1940), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [anon_sym_LT_LPAREN] = ACTIONS(1940), + [anon_sym_GT_LPAREN] = ACTIONS(1940), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4944), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3023), + [sym_word] = ACTIONS(1942), }, - [1967] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), + [1695] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4948), + }, + [1696] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4950), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1697] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(4952), + [sym_comment] = ACTIONS(56), + }, + [1698] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2362), + [anon_sym_RBRACE] = ACTIONS(4954), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4956), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1699] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2365), + [anon_sym_RBRACE] = ACTIONS(4958), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4960), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1700] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2367), + [anon_sym_RBRACE] = ACTIONS(4940), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4962), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1701] = { + [sym__concat] = ACTIONS(1992), + [sym_variable_name] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(3041), + [anon_sym_RPAREN] = ACTIONS(1992), + [anon_sym_PIPE_AMP] = ACTIONS(1992), + [anon_sym_AMP_AMP] = ACTIONS(1992), + [anon_sym_PIPE_PIPE] = ACTIONS(1992), + [sym__special_characters] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(1992), + [anon_sym_DOLLAR] = ACTIONS(3041), + [sym_raw_string] = ACTIONS(1992), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1992), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1992), + [anon_sym_BQUOTE] = ACTIONS(1992), + [anon_sym_LT_LPAREN] = ACTIONS(1992), + [anon_sym_GT_LPAREN] = ACTIONS(1992), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3041), + [sym_word] = ACTIONS(1994), + }, + [1702] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4964), + }, + [1703] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), [anon_sym_RBRACE] = ACTIONS(4966), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1704] = { + [sym__concat] = ACTIONS(2000), + [sym_variable_name] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(3047), + [anon_sym_RPAREN] = ACTIONS(2000), + [anon_sym_PIPE_AMP] = ACTIONS(2000), + [anon_sym_AMP_AMP] = ACTIONS(2000), + [anon_sym_PIPE_PIPE] = ACTIONS(2000), + [sym__special_characters] = ACTIONS(3047), + [anon_sym_DQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(3047), + [sym_raw_string] = ACTIONS(2000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2000), + [anon_sym_BQUOTE] = ACTIONS(2000), + [anon_sym_LT_LPAREN] = ACTIONS(2000), + [anon_sym_GT_LPAREN] = ACTIONS(2000), [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3047), + [sym_word] = ACTIONS(2002), }, - [1968] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4968), + [1705] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4968), + }, + [1706] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4940), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1707] = { + [sym__concat] = ACTIONS(2156), + [sym_variable_name] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_RPAREN] = ACTIONS(2156), + [anon_sym_PIPE_AMP] = ACTIONS(2156), + [anon_sym_AMP_AMP] = ACTIONS(2156), + [anon_sym_PIPE_PIPE] = ACTIONS(2156), + [sym__special_characters] = ACTIONS(3051), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_DOLLAR] = ACTIONS(3051), + [sym_raw_string] = ACTIONS(2156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2156), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2156), + [anon_sym_LT_LPAREN] = ACTIONS(2156), + [anon_sym_GT_LPAREN] = ACTIONS(2156), [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3051), + [sym_word] = ACTIONS(2158), }, - [1969] = { - [anon_sym_RBRACE] = ACTIONS(4968), + [1708] = { + [sym__concat] = ACTIONS(2358), + [sym_variable_name] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(3053), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_PIPE_AMP] = ACTIONS(2358), + [anon_sym_AMP_AMP] = ACTIONS(2358), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [sym__special_characters] = ACTIONS(3053), + [anon_sym_DQUOTE] = ACTIONS(2358), + [anon_sym_DOLLAR] = ACTIONS(3053), + [sym_raw_string] = ACTIONS(2358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2358), + [anon_sym_BQUOTE] = ACTIONS(2358), + [anon_sym_LT_LPAREN] = ACTIONS(2358), + [anon_sym_GT_LPAREN] = ACTIONS(2358), [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3053), + [sym_word] = ACTIONS(2360), }, - [1970] = { - [sym_file_descriptor] = ACTIONS(4269), - [sym__concat] = ACTIONS(4269), - [sym_variable_name] = ACTIONS(4269), - [anon_sym_LT] = ACTIONS(4950), - [anon_sym_GT] = ACTIONS(4950), - [anon_sym_GT_GT] = ACTIONS(4269), - [anon_sym_AMP_GT] = ACTIONS(4950), - [anon_sym_AMP_GT_GT] = ACTIONS(4269), - [anon_sym_LT_AMP] = ACTIONS(4269), - [anon_sym_GT_AMP] = ACTIONS(4269), - [sym__special_characters] = ACTIONS(4950), - [anon_sym_DQUOTE] = ACTIONS(4269), - [anon_sym_DOLLAR] = ACTIONS(4950), - [sym_raw_string] = ACTIONS(4269), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4269), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4269), - [anon_sym_BQUOTE] = ACTIONS(4269), - [anon_sym_LT_LPAREN] = ACTIONS(4269), - [anon_sym_GT_LPAREN] = ACTIONS(4269), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4950), - }, - [1971] = { - [sym_file_descriptor] = ACTIONS(4273), - [sym__concat] = ACTIONS(4273), - [sym_variable_name] = ACTIONS(4273), - [anon_sym_LT] = ACTIONS(4952), - [anon_sym_GT] = ACTIONS(4952), - [anon_sym_GT_GT] = ACTIONS(4273), - [anon_sym_AMP_GT] = ACTIONS(4952), - [anon_sym_AMP_GT_GT] = ACTIONS(4273), - [anon_sym_LT_AMP] = ACTIONS(4273), - [anon_sym_GT_AMP] = ACTIONS(4273), - [sym__special_characters] = ACTIONS(4952), - [anon_sym_DQUOTE] = ACTIONS(4273), - [anon_sym_DOLLAR] = ACTIONS(4952), - [sym_raw_string] = ACTIONS(4273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4273), - [anon_sym_BQUOTE] = ACTIONS(4273), - [anon_sym_LT_LPAREN] = ACTIONS(4273), - [anon_sym_GT_LPAREN] = ACTIONS(4273), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4952), - }, - [1972] = { - [sym__concat] = ACTIONS(4214), - [anon_sym_DQUOTE] = ACTIONS(4216), - [anon_sym_DOLLAR] = ACTIONS(4216), - [sym__string_content] = ACTIONS(4942), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4216), - [anon_sym_BQUOTE] = ACTIONS(4216), - [sym_comment] = ACTIONS(178), - }, - [1973] = { - [sym__concat] = ACTIONS(4220), - [anon_sym_DQUOTE] = ACTIONS(4222), - [anon_sym_DOLLAR] = ACTIONS(4222), - [sym__string_content] = ACTIONS(4944), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4222), - [anon_sym_BQUOTE] = ACTIONS(4222), - [sym_comment] = ACTIONS(178), - }, - [1974] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4970), - [sym_comment] = ACTIONS(56), - }, - [1975] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(4972), - [sym_comment] = ACTIONS(56), - }, - [1976] = { - [anon_sym_RBRACE] = ACTIONS(4972), - [sym_comment] = ACTIONS(56), - }, - [1977] = { - [sym__concat] = ACTIONS(4269), - [anon_sym_DQUOTE] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4271), - [sym__string_content] = ACTIONS(4950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4271), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4271), - [anon_sym_BQUOTE] = ACTIONS(4271), - [sym_comment] = ACTIONS(178), - }, - [1978] = { - [sym__concat] = ACTIONS(4273), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4275), - [sym__string_content] = ACTIONS(4952), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4275), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4275), - [anon_sym_BQUOTE] = ACTIONS(4275), - [sym_comment] = ACTIONS(178), - }, - [1979] = { - [sym__concat] = ACTIONS(4974), - [anon_sym_RBRACE] = ACTIONS(3698), - [anon_sym_EQ] = ACTIONS(4976), - [sym__special_characters] = ACTIONS(4978), - [anon_sym_DQUOTE] = ACTIONS(3698), - [anon_sym_DOLLAR] = ACTIONS(4976), - [sym_raw_string] = ACTIONS(3698), - [anon_sym_POUND] = ACTIONS(3698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3698), - [anon_sym_COLON] = ACTIONS(4976), - [anon_sym_COLON_QMARK] = ACTIONS(4976), - [anon_sym_COLON_DASH] = ACTIONS(4976), - [anon_sym_PERCENT] = ACTIONS(4976), - [anon_sym_SLASH] = ACTIONS(4976), - [anon_sym_DASH] = ACTIONS(4976), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3698), - [anon_sym_BQUOTE] = ACTIONS(3698), - [anon_sym_LT_LPAREN] = ACTIONS(3698), - [anon_sym_GT_LPAREN] = ACTIONS(3698), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(4978), - }, - [1980] = { - [anon_sym_RBRACE] = ACTIONS(3698), - [anon_sym_EQ] = ACTIONS(4976), - [sym__special_characters] = ACTIONS(4978), - [anon_sym_DQUOTE] = ACTIONS(3698), - [anon_sym_DOLLAR] = ACTIONS(4976), - [sym_raw_string] = ACTIONS(3698), - [anon_sym_POUND] = ACTIONS(3698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3698), - [anon_sym_COLON] = ACTIONS(4976), - [anon_sym_COLON_QMARK] = ACTIONS(4976), - [anon_sym_COLON_DASH] = ACTIONS(4976), - [anon_sym_PERCENT] = ACTIONS(4976), - [anon_sym_SLASH] = ACTIONS(4976), - [anon_sym_DASH] = ACTIONS(4976), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3698), - [anon_sym_BQUOTE] = ACTIONS(3698), - [anon_sym_LT_LPAREN] = ACTIONS(3698), - [anon_sym_GT_LPAREN] = ACTIONS(3698), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(4978), - }, - [1981] = { - [sym__concat] = ACTIONS(4980), - [anon_sym_RBRACE] = ACTIONS(3705), - [anon_sym_EQ] = ACTIONS(4982), - [sym__special_characters] = ACTIONS(4984), - [anon_sym_DQUOTE] = ACTIONS(3705), - [anon_sym_DOLLAR] = ACTIONS(4982), - [sym_raw_string] = ACTIONS(3705), - [anon_sym_POUND] = ACTIONS(3705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3705), - [anon_sym_COLON] = ACTIONS(4982), - [anon_sym_COLON_QMARK] = ACTIONS(4982), - [anon_sym_COLON_DASH] = ACTIONS(4982), - [anon_sym_PERCENT] = ACTIONS(4982), - [anon_sym_SLASH] = ACTIONS(4982), - [anon_sym_DASH] = ACTIONS(4982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3705), - [anon_sym_BQUOTE] = ACTIONS(3705), - [anon_sym_LT_LPAREN] = ACTIONS(3705), - [anon_sym_GT_LPAREN] = ACTIONS(3705), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(4984), - }, - [1982] = { - [anon_sym_RBRACE] = ACTIONS(3705), - [anon_sym_EQ] = ACTIONS(4982), - [sym__special_characters] = ACTIONS(4984), - [anon_sym_DQUOTE] = ACTIONS(3705), - [anon_sym_DOLLAR] = ACTIONS(4982), - [sym_raw_string] = ACTIONS(3705), - [anon_sym_POUND] = ACTIONS(3705), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3705), - [anon_sym_COLON] = ACTIONS(4982), - [anon_sym_COLON_QMARK] = ACTIONS(4982), - [anon_sym_COLON_DASH] = ACTIONS(4982), - [anon_sym_PERCENT] = ACTIONS(4982), - [anon_sym_SLASH] = ACTIONS(4982), - [anon_sym_DASH] = ACTIONS(4982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3705), - [anon_sym_BQUOTE] = ACTIONS(3705), - [anon_sym_LT_LPAREN] = ACTIONS(3705), - [anon_sym_GT_LPAREN] = ACTIONS(3705), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(4984), - }, - [1983] = { - [sym__concat] = ACTIONS(1790), - [anon_sym_RBRACE] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - }, - [1984] = { - [aux_sym_concatenation_repeat1] = STATE(1984), - [sym__concat] = ACTIONS(4986), - [anon_sym_RBRACE] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - }, - [1985] = { - [sym__concat] = ACTIONS(1821), - [anon_sym_RBRACE] = ACTIONS(1821), - [sym_comment] = ACTIONS(56), - }, - [1986] = { - [sym_concatenation] = STATE(2376), - [sym_string] = STATE(2375), - [sym_simple_expansion] = STATE(2375), - [sym_string_expansion] = STATE(2375), - [sym_expansion] = STATE(2375), - [sym_command_substitution] = STATE(2375), - [sym_process_substitution] = STATE(2375), - [anon_sym_RBRACE] = ACTIONS(4989), - [sym__special_characters] = ACTIONS(4991), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(4993), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), + [1709] = { + [sym__concat] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(1858), + [anon_sym_PIPE_AMP] = ACTIONS(1858), + [anon_sym_AMP_AMP] = ACTIONS(1858), + [anon_sym_PIPE_PIPE] = ACTIONS(1858), + [sym__special_characters] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1858), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), + [anon_sym_BQUOTE] = ACTIONS(1858), + [anon_sym_LT_LPAREN] = ACTIONS(1858), + [anon_sym_GT_LPAREN] = ACTIONS(1858), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4995), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3008), + [sym_word] = ACTIONS(1860), }, - [1987] = { - [sym__concat] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), + [1710] = { + [aux_sym_concatenation_repeat1] = STATE(1710), + [sym__concat] = ACTIONS(4970), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(1858), + [anon_sym_PIPE_AMP] = ACTIONS(1858), + [anon_sym_AMP_AMP] = ACTIONS(1858), + [anon_sym_PIPE_PIPE] = ACTIONS(1858), + [sym__special_characters] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), + [anon_sym_BQUOTE] = ACTIONS(1858), + [anon_sym_LT_LPAREN] = ACTIONS(1858), + [anon_sym_GT_LPAREN] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3008), + [sym_word] = ACTIONS(1860), + }, + [1711] = { + [sym__concat] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_RPAREN] = ACTIONS(1895), + [anon_sym_PIPE_AMP] = ACTIONS(1895), + [anon_sym_AMP_AMP] = ACTIONS(1895), + [anon_sym_PIPE_PIPE] = ACTIONS(1895), + [sym__special_characters] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(3013), + [sym_raw_string] = ACTIONS(1895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1895), + [anon_sym_BQUOTE] = ACTIONS(1895), + [anon_sym_LT_LPAREN] = ACTIONS(1895), + [anon_sym_GT_LPAREN] = ACTIONS(1895), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3013), + [sym_word] = ACTIONS(1897), + }, + [1712] = { + [sym_concatenation] = STATE(2374), + [sym_string] = STATE(2373), + [sym_simple_expansion] = STATE(2373), + [sym_string_expansion] = STATE(2373), + [sym_expansion] = STATE(2373), + [sym_command_substitution] = STATE(2373), + [sym_process_substitution] = STATE(2373), + [anon_sym_RBRACE] = ACTIONS(4973), + [sym__special_characters] = ACTIONS(4975), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(4977), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4979), + }, + [1713] = { + [sym__concat] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(3023), + [anon_sym_RPAREN] = ACTIONS(1940), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [sym__special_characters] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(3023), + [sym_raw_string] = ACTIONS(1940), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1940), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [anon_sym_LT_LPAREN] = ACTIONS(1940), + [anon_sym_GT_LPAREN] = ACTIONS(1940), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3023), + [sym_word] = ACTIONS(1942), + }, + [1714] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4981), + }, + [1715] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4983), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1716] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(4985), [sym_comment] = ACTIONS(56), }, - [1988] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4997), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1989] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(4999), - [sym_comment] = ACTIONS(56), - }, - [1990] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), + [1717] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2380), - [anon_sym_RBRACE] = ACTIONS(5001), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(4987), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4989), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1991] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2382), - [anon_sym_RBRACE] = ACTIONS(5003), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1992] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), + [1718] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2383), - [anon_sym_RBRACE] = ACTIONS(4989), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(4991), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4993), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [1993] = { - [sym__concat] = ACTIONS(1910), - [anon_sym_RBRACE] = ACTIONS(1910), + [1719] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2385), + [anon_sym_RBRACE] = ACTIONS(4973), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(4995), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1720] = { + [sym__concat] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(3041), + [anon_sym_RPAREN] = ACTIONS(1992), + [anon_sym_PIPE_AMP] = ACTIONS(1992), + [anon_sym_AMP_AMP] = ACTIONS(1992), + [anon_sym_PIPE_PIPE] = ACTIONS(1992), + [sym__special_characters] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(1992), + [anon_sym_DOLLAR] = ACTIONS(3041), + [sym_raw_string] = ACTIONS(1992), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1992), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1992), + [anon_sym_BQUOTE] = ACTIONS(1992), + [anon_sym_LT_LPAREN] = ACTIONS(1992), + [anon_sym_GT_LPAREN] = ACTIONS(1992), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3041), + [sym_word] = ACTIONS(1994), + }, + [1721] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4997), + }, + [1722] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4999), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1723] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(3047), + [anon_sym_RPAREN] = ACTIONS(2000), + [anon_sym_PIPE_AMP] = ACTIONS(2000), + [anon_sym_AMP_AMP] = ACTIONS(2000), + [anon_sym_PIPE_PIPE] = ACTIONS(2000), + [sym__special_characters] = ACTIONS(3047), + [anon_sym_DQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(3047), + [sym_raw_string] = ACTIONS(2000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2000), + [anon_sym_BQUOTE] = ACTIONS(2000), + [anon_sym_LT_LPAREN] = ACTIONS(2000), + [anon_sym_GT_LPAREN] = ACTIONS(2000), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3047), + [sym_word] = ACTIONS(2002), + }, + [1724] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5001), + }, + [1725] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(4973), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1726] = { + [sym__concat] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_RPAREN] = ACTIONS(2156), + [anon_sym_PIPE_AMP] = ACTIONS(2156), + [anon_sym_AMP_AMP] = ACTIONS(2156), + [anon_sym_PIPE_PIPE] = ACTIONS(2156), + [sym__special_characters] = ACTIONS(3051), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_DOLLAR] = ACTIONS(3051), + [sym_raw_string] = ACTIONS(2156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2156), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2156), + [anon_sym_LT_LPAREN] = ACTIONS(2156), + [anon_sym_GT_LPAREN] = ACTIONS(2156), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3051), + [sym_word] = ACTIONS(2158), + }, + [1727] = { + [sym__concat] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(3053), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_PIPE_AMP] = ACTIONS(2358), + [anon_sym_AMP_AMP] = ACTIONS(2358), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [sym__special_characters] = ACTIONS(3053), + [anon_sym_DQUOTE] = ACTIONS(2358), + [anon_sym_DOLLAR] = ACTIONS(3053), + [sym_raw_string] = ACTIONS(2358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2358), + [anon_sym_BQUOTE] = ACTIONS(2358), + [anon_sym_LT_LPAREN] = ACTIONS(2358), + [anon_sym_GT_LPAREN] = ACTIONS(2358), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3053), + [sym_word] = ACTIONS(2360), + }, + [1728] = { + [sym_file_descriptor] = ACTIONS(3235), + [sym__concat] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(3235), + [anon_sym_PIPE_AMP] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_EQ_TILDE] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_GT_GT] = ACTIONS(3235), + [anon_sym_AMP_GT] = ACTIONS(4540), + [anon_sym_AMP_GT_GT] = ACTIONS(3235), + [anon_sym_LT_AMP] = ACTIONS(3235), + [anon_sym_GT_AMP] = ACTIONS(3235), + [anon_sym_LT_LT] = ACTIONS(4540), + [anon_sym_LT_LT_DASH] = ACTIONS(3235), + [anon_sym_LT_LT_LT] = ACTIONS(3235), + [sym__special_characters] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_DOLLAR] = ACTIONS(4540), + [sym_raw_string] = ACTIONS(3235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3235), + [anon_sym_BQUOTE] = ACTIONS(3235), + [anon_sym_LT_LPAREN] = ACTIONS(3235), + [anon_sym_GT_LPAREN] = ACTIONS(3235), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3237), + }, + [1729] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(5003), [sym_comment] = ACTIONS(56), }, - [1994] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), + [1730] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), [anon_sym_RBRACE] = ACTIONS(5005), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1995] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_RBRACE] = ACTIONS(1916), [sym_comment] = ACTIONS(56), }, - [1996] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(4989), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [1997] = { - [sym__concat] = ACTIONS(2064), - [anon_sym_RBRACE] = ACTIONS(2064), + [1731] = { + [anon_sym_RBRACE] = ACTIONS(5005), [sym_comment] = ACTIONS(56), }, - [1998] = { - [sym__concat] = ACTIONS(2228), - [anon_sym_RBRACE] = ACTIONS(2228), - [sym_comment] = ACTIONS(56), - }, - [1999] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_RBRACE] = ACTIONS(2969), - [anon_sym_EQ] = ACTIONS(4098), - [sym__special_characters] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2969), - [anon_sym_DOLLAR] = ACTIONS(4098), - [sym_raw_string] = ACTIONS(2969), - [anon_sym_POUND] = ACTIONS(2969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2969), - [anon_sym_COLON] = ACTIONS(4098), - [anon_sym_COLON_QMARK] = ACTIONS(4098), - [anon_sym_COLON_DASH] = ACTIONS(4098), - [anon_sym_PERCENT] = ACTIONS(4098), - [anon_sym_SLASH] = ACTIONS(4098), - [anon_sym_DASH] = ACTIONS(4098), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2969), - [anon_sym_BQUOTE] = ACTIONS(2969), - [anon_sym_LT_LPAREN] = ACTIONS(2969), - [anon_sym_GT_LPAREN] = ACTIONS(2969), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(2971), - }, - [2000] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), + [1732] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2392), [anon_sym_RBRACE] = ACTIONS(5007), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1733] = { + [sym_file_descriptor] = ACTIONS(3297), + [sym__concat] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(3297), + [anon_sym_PIPE_AMP] = ACTIONS(3297), + [anon_sym_AMP_AMP] = ACTIONS(3297), + [anon_sym_PIPE_PIPE] = ACTIONS(3297), + [anon_sym_EQ_TILDE] = ACTIONS(4548), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4548), + [anon_sym_GT_GT] = ACTIONS(3297), + [anon_sym_AMP_GT] = ACTIONS(4548), + [anon_sym_AMP_GT_GT] = ACTIONS(3297), + [anon_sym_LT_AMP] = ACTIONS(3297), + [anon_sym_GT_AMP] = ACTIONS(3297), + [anon_sym_LT_LT] = ACTIONS(4548), + [anon_sym_LT_LT_DASH] = ACTIONS(3297), + [anon_sym_LT_LT_LT] = ACTIONS(3297), + [sym__special_characters] = ACTIONS(4548), + [anon_sym_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(4548), + [sym_raw_string] = ACTIONS(3297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3297), + [anon_sym_BQUOTE] = ACTIONS(3297), + [anon_sym_LT_LPAREN] = ACTIONS(3297), + [anon_sym_GT_LPAREN] = ACTIONS(3297), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3299), }, - [2001] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5009), - [sym_comment] = ACTIONS(56), - }, - [2002] = { - [anon_sym_RBRACE] = ACTIONS(5009), - [sym_comment] = ACTIONS(56), - }, - [2003] = { - [sym__concat] = ACTIONS(3023), - [anon_sym_RBRACE] = ACTIONS(3023), - [anon_sym_EQ] = ACTIONS(4104), - [sym__special_characters] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR] = ACTIONS(4104), - [sym_raw_string] = ACTIONS(3023), - [anon_sym_POUND] = ACTIONS(3023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3023), - [anon_sym_COLON] = ACTIONS(4104), - [anon_sym_COLON_QMARK] = ACTIONS(4104), - [anon_sym_COLON_DASH] = ACTIONS(4104), - [anon_sym_PERCENT] = ACTIONS(4104), - [anon_sym_SLASH] = ACTIONS(4104), - [anon_sym_DASH] = ACTIONS(4104), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3023), - [anon_sym_BQUOTE] = ACTIONS(3023), - [anon_sym_LT_LPAREN] = ACTIONS(3023), - [anon_sym_GT_LPAREN] = ACTIONS(3023), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3025), - }, - [2004] = { - [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(5009), - [sym__special_characters] = ACTIONS(5011), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5013), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5015), - }, - [2005] = { - [sym__concat] = ACTIONS(3068), - [anon_sym_RBRACE] = ACTIONS(3068), - [anon_sym_EQ] = ACTIONS(4112), - [sym__special_characters] = ACTIONS(3070), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(4112), - [sym_raw_string] = ACTIONS(3068), - [anon_sym_POUND] = ACTIONS(3068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3068), - [anon_sym_COLON] = ACTIONS(4112), - [anon_sym_COLON_QMARK] = ACTIONS(4112), - [anon_sym_COLON_DASH] = ACTIONS(4112), - [anon_sym_PERCENT] = ACTIONS(4112), - [anon_sym_SLASH] = ACTIONS(4112), - [anon_sym_DASH] = ACTIONS(4112), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3068), - [anon_sym_BQUOTE] = ACTIONS(3068), - [anon_sym_LT_LPAREN] = ACTIONS(3068), - [anon_sym_GT_LPAREN] = ACTIONS(3068), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3070), - }, - [2006] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5017), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2007] = { - [sym__concat] = ACTIONS(3074), - [anon_sym_RBRACE] = ACTIONS(3074), - [anon_sym_EQ] = ACTIONS(4116), - [sym__special_characters] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_DOLLAR] = ACTIONS(4116), - [sym_raw_string] = ACTIONS(3074), - [anon_sym_POUND] = ACTIONS(3074), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3074), - [anon_sym_COLON] = ACTIONS(4116), - [anon_sym_COLON_QMARK] = ACTIONS(4116), - [anon_sym_COLON_DASH] = ACTIONS(4116), - [anon_sym_PERCENT] = ACTIONS(4116), - [anon_sym_SLASH] = ACTIONS(4116), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3074), - [anon_sym_BQUOTE] = ACTIONS(3074), - [anon_sym_LT_LPAREN] = ACTIONS(3074), - [anon_sym_GT_LPAREN] = ACTIONS(3074), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3076), - }, - [2008] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2009] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5009), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2010] = { - [sym__concat] = ACTIONS(3080), - [anon_sym_RBRACE] = ACTIONS(3080), - [anon_sym_EQ] = ACTIONS(4120), - [sym__special_characters] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3080), - [anon_sym_DOLLAR] = ACTIONS(4120), - [sym_raw_string] = ACTIONS(3080), - [anon_sym_POUND] = ACTIONS(3080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3080), - [anon_sym_COLON] = ACTIONS(4120), - [anon_sym_COLON_QMARK] = ACTIONS(4120), - [anon_sym_COLON_DASH] = ACTIONS(4120), - [anon_sym_PERCENT] = ACTIONS(4120), - [anon_sym_SLASH] = ACTIONS(4120), - [anon_sym_DASH] = ACTIONS(4120), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3080), - [anon_sym_BQUOTE] = ACTIONS(3080), - [anon_sym_LT_LPAREN] = ACTIONS(3080), - [anon_sym_GT_LPAREN] = ACTIONS(3080), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3082), - }, - [2011] = { - [sym_file_descriptor] = ACTIONS(5021), - [sym__concat] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_SEMI_SEMI] = ACTIONS(5023), - [anon_sym_PIPE_AMP] = ACTIONS(5023), - [anon_sym_AMP_AMP] = ACTIONS(5023), - [anon_sym_PIPE_PIPE] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5023), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_GT_GT] = ACTIONS(5023), - [anon_sym_AMP_GT] = ACTIONS(5023), - [anon_sym_AMP_GT_GT] = ACTIONS(5023), - [anon_sym_LT_AMP] = ACTIONS(5023), - [anon_sym_GT_AMP] = ACTIONS(5023), - [anon_sym_LT_LT] = ACTIONS(5023), - [anon_sym_LT_LT_DASH] = ACTIONS(5023), - [anon_sym_LT_LT_LT] = ACTIONS(5023), - [sym__special_characters] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5023), - [sym_raw_string] = ACTIONS(5023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5023), - [anon_sym_BQUOTE] = ACTIONS(5023), - [anon_sym_LT_LPAREN] = ACTIONS(5023), - [anon_sym_GT_LPAREN] = ACTIONS(5023), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(5023), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_LF] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(5023), - }, - [2012] = { - [sym_file_descriptor] = ACTIONS(5025), - [sym__concat] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_SEMI_SEMI] = ACTIONS(5027), - [anon_sym_PIPE_AMP] = ACTIONS(5027), - [anon_sym_AMP_AMP] = ACTIONS(5027), - [anon_sym_PIPE_PIPE] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5027), - [anon_sym_GT] = ACTIONS(5027), - [anon_sym_GT_GT] = ACTIONS(5027), - [anon_sym_AMP_GT] = ACTIONS(5027), - [anon_sym_AMP_GT_GT] = ACTIONS(5027), - [anon_sym_LT_AMP] = ACTIONS(5027), - [anon_sym_GT_AMP] = ACTIONS(5027), - [anon_sym_LT_LT] = ACTIONS(5027), - [anon_sym_LT_LT_DASH] = ACTIONS(5027), - [anon_sym_LT_LT_LT] = ACTIONS(5027), - [sym__special_characters] = ACTIONS(5027), - [anon_sym_DQUOTE] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5027), - [sym_raw_string] = ACTIONS(5027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5027), - [anon_sym_BQUOTE] = ACTIONS(5027), - [anon_sym_LT_LPAREN] = ACTIONS(5027), - [anon_sym_GT_LPAREN] = ACTIONS(5027), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(5027), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_LF] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(5027), - }, - [2013] = { - [sym_file_descriptor] = ACTIONS(3751), - [sym_variable_name] = ACTIONS(3751), - [anon_sym_PIPE] = ACTIONS(5029), - [anon_sym_RPAREN] = ACTIONS(3751), - [anon_sym_PIPE_AMP] = ACTIONS(3751), - [anon_sym_AMP_AMP] = ACTIONS(3751), - [anon_sym_PIPE_PIPE] = ACTIONS(3751), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5029), - [anon_sym_GT_GT] = ACTIONS(3751), - [anon_sym_AMP_GT] = ACTIONS(5029), - [anon_sym_AMP_GT_GT] = ACTIONS(3751), - [anon_sym_LT_AMP] = ACTIONS(3751), - [anon_sym_GT_AMP] = ACTIONS(3751), - [sym__special_characters] = ACTIONS(5029), - [anon_sym_DQUOTE] = ACTIONS(3751), - [anon_sym_DOLLAR] = ACTIONS(5029), - [sym_raw_string] = ACTIONS(3751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3751), - [anon_sym_BQUOTE] = ACTIONS(3751), - [anon_sym_LT_LPAREN] = ACTIONS(3751), - [anon_sym_GT_LPAREN] = ACTIONS(3751), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5029), - }, - [2014] = { - [sym_file_descriptor] = ACTIONS(1790), - [sym__concat] = ACTIONS(1790), - [sym_variable_name] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_RPAREN] = ACTIONS(1790), - [anon_sym_PIPE_AMP] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(1790), - [anon_sym_PIPE_PIPE] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(1790), - [anon_sym_AMP_GT] = ACTIONS(2816), - [anon_sym_AMP_GT_GT] = ACTIONS(1790), - [anon_sym_LT_AMP] = ACTIONS(1790), - [anon_sym_GT_AMP] = ACTIONS(1790), - [sym__special_characters] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_LT_LPAREN] = ACTIONS(1790), - [anon_sym_GT_LPAREN] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2816), - }, - [2015] = { - [aux_sym_concatenation_repeat1] = STATE(2015), - [sym_file_descriptor] = ACTIONS(1790), - [sym__concat] = ACTIONS(5031), - [sym_variable_name] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_RPAREN] = ACTIONS(1790), - [anon_sym_PIPE_AMP] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(1790), - [anon_sym_PIPE_PIPE] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(1790), - [anon_sym_AMP_GT] = ACTIONS(2816), - [anon_sym_AMP_GT_GT] = ACTIONS(1790), - [anon_sym_LT_AMP] = ACTIONS(1790), - [anon_sym_GT_AMP] = ACTIONS(1790), - [sym__special_characters] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_LT_LPAREN] = ACTIONS(1790), - [anon_sym_GT_LPAREN] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2816), - }, - [2016] = { - [sym_file_descriptor] = ACTIONS(1821), - [sym__concat] = ACTIONS(1821), - [sym_variable_name] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(2821), - [anon_sym_RPAREN] = ACTIONS(1821), - [anon_sym_PIPE_AMP] = ACTIONS(1821), - [anon_sym_AMP_AMP] = ACTIONS(1821), - [anon_sym_PIPE_PIPE] = ACTIONS(1821), - [anon_sym_LT] = ACTIONS(2821), - [anon_sym_GT] = ACTIONS(2821), - [anon_sym_GT_GT] = ACTIONS(1821), - [anon_sym_AMP_GT] = ACTIONS(2821), - [anon_sym_AMP_GT_GT] = ACTIONS(1821), - [anon_sym_LT_AMP] = ACTIONS(1821), - [anon_sym_GT_AMP] = ACTIONS(1821), - [sym__special_characters] = ACTIONS(2821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [anon_sym_DOLLAR] = ACTIONS(2821), - [sym_raw_string] = ACTIONS(1821), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1821), - [anon_sym_BQUOTE] = ACTIONS(1821), - [anon_sym_LT_LPAREN] = ACTIONS(1821), - [anon_sym_GT_LPAREN] = ACTIONS(1821), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2821), - }, - [2017] = { + [1734] = { [sym_concatenation] = STATE(2395), [sym_string] = STATE(2394), [sym_simple_expansion] = STATE(2394), @@ -55672,1535 +50531,1311 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(2394), [sym_command_substitution] = STATE(2394), [sym_process_substitution] = STATE(2394), - [anon_sym_RBRACE] = ACTIONS(5034), - [sym__special_characters] = ACTIONS(5036), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(5005), + [sym__special_characters] = ACTIONS(5009), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(5011), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5040), + [sym_word] = ACTIONS(5013), }, - [2018] = { - [sym_file_descriptor] = ACTIONS(1866), - [sym__concat] = ACTIONS(1866), - [sym_variable_name] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_PIPE_AMP] = ACTIONS(1866), - [anon_sym_AMP_AMP] = ACTIONS(1866), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_LT] = ACTIONS(2831), - [anon_sym_GT] = ACTIONS(2831), - [anon_sym_GT_GT] = ACTIONS(1866), - [anon_sym_AMP_GT] = ACTIONS(2831), - [anon_sym_AMP_GT_GT] = ACTIONS(1866), - [anon_sym_LT_AMP] = ACTIONS(1866), - [anon_sym_GT_AMP] = ACTIONS(1866), - [sym__special_characters] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(2831), - [sym_raw_string] = ACTIONS(1866), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1866), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1866), - [anon_sym_BQUOTE] = ACTIONS(1866), - [anon_sym_LT_LPAREN] = ACTIONS(1866), - [anon_sym_GT_LPAREN] = ACTIONS(1866), + [1735] = { + [sym_file_descriptor] = ACTIONS(3342), + [sym__concat] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(3342), + [anon_sym_PIPE_AMP] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_EQ_TILDE] = ACTIONS(4556), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4556), + [anon_sym_GT_GT] = ACTIONS(3342), + [anon_sym_AMP_GT] = ACTIONS(4556), + [anon_sym_AMP_GT_GT] = ACTIONS(3342), + [anon_sym_LT_AMP] = ACTIONS(3342), + [anon_sym_GT_AMP] = ACTIONS(3342), + [anon_sym_LT_LT] = ACTIONS(4556), + [anon_sym_LT_LT_DASH] = ACTIONS(3342), + [anon_sym_LT_LT_LT] = ACTIONS(3342), + [sym__special_characters] = ACTIONS(4556), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(4556), + [sym_raw_string] = ACTIONS(3342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3342), + [anon_sym_BQUOTE] = ACTIONS(3342), + [anon_sym_LT_LPAREN] = ACTIONS(3342), + [anon_sym_GT_LPAREN] = ACTIONS(3342), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2831), + [sym_word] = ACTIONS(3344), }, - [2019] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5042), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [1736] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5015), }, - [2020] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(5044), + [1737] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5017), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1738] = { + [sym_file_descriptor] = ACTIONS(3350), + [sym__concat] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(3350), + [anon_sym_PIPE_AMP] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_EQ_TILDE] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_GT_GT] = ACTIONS(3350), + [anon_sym_AMP_GT] = ACTIONS(4562), + [anon_sym_AMP_GT_GT] = ACTIONS(3350), + [anon_sym_LT_AMP] = ACTIONS(3350), + [anon_sym_GT_AMP] = ACTIONS(3350), + [anon_sym_LT_LT] = ACTIONS(4562), + [anon_sym_LT_LT_DASH] = ACTIONS(3350), + [anon_sym_LT_LT_LT] = ACTIONS(3350), + [sym__special_characters] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_DOLLAR] = ACTIONS(4562), + [sym_raw_string] = ACTIONS(3350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3350), + [anon_sym_BQUOTE] = ACTIONS(3350), + [anon_sym_LT_LPAREN] = ACTIONS(3350), + [anon_sym_GT_LPAREN] = ACTIONS(3350), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3352), }, - [2021] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2399), - [anon_sym_RBRACE] = ACTIONS(5046), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [1739] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5019), }, - [2022] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2401), - [anon_sym_RBRACE] = ACTIONS(5048), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [1740] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5021), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2023] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), + [1741] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5023), + }, + [1742] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5005), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1743] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2402), - [anon_sym_RBRACE] = ACTIONS(5034), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(5025), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2024] = { - [sym_file_descriptor] = ACTIONS(1910), - [sym__concat] = ACTIONS(1910), - [sym_variable_name] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(2841), - [anon_sym_RPAREN] = ACTIONS(1910), - [anon_sym_PIPE_AMP] = ACTIONS(1910), - [anon_sym_AMP_AMP] = ACTIONS(1910), - [anon_sym_PIPE_PIPE] = ACTIONS(1910), - [anon_sym_LT] = ACTIONS(2841), - [anon_sym_GT] = ACTIONS(2841), - [anon_sym_GT_GT] = ACTIONS(1910), - [anon_sym_AMP_GT] = ACTIONS(2841), - [anon_sym_AMP_GT_GT] = ACTIONS(1910), - [anon_sym_LT_AMP] = ACTIONS(1910), - [anon_sym_GT_AMP] = ACTIONS(1910), - [sym__special_characters] = ACTIONS(2841), - [anon_sym_DQUOTE] = ACTIONS(1910), - [anon_sym_DOLLAR] = ACTIONS(2841), - [sym_raw_string] = ACTIONS(1910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1910), - [anon_sym_BQUOTE] = ACTIONS(1910), - [anon_sym_LT_LPAREN] = ACTIONS(1910), - [anon_sym_GT_LPAREN] = ACTIONS(1910), + [1744] = { + [sym_file_descriptor] = ACTIONS(3362), + [sym__concat] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(3362), + [anon_sym_PIPE_AMP] = ACTIONS(3362), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_PIPE_PIPE] = ACTIONS(3362), + [anon_sym_EQ_TILDE] = ACTIONS(4572), + [anon_sym_LT] = ACTIONS(4572), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_GT_GT] = ACTIONS(3362), + [anon_sym_AMP_GT] = ACTIONS(4572), + [anon_sym_AMP_GT_GT] = ACTIONS(3362), + [anon_sym_LT_AMP] = ACTIONS(3362), + [anon_sym_GT_AMP] = ACTIONS(3362), + [anon_sym_LT_LT] = ACTIONS(4572), + [anon_sym_LT_LT_DASH] = ACTIONS(3362), + [anon_sym_LT_LT_LT] = ACTIONS(3362), + [sym__special_characters] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(3362), + [anon_sym_DOLLAR] = ACTIONS(4572), + [sym_raw_string] = ACTIONS(3362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3362), + [anon_sym_BQUOTE] = ACTIONS(3362), + [anon_sym_LT_LPAREN] = ACTIONS(3362), + [anon_sym_GT_LPAREN] = ACTIONS(3362), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2841), + [sym_word] = ACTIONS(3364), }, - [2025] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5050), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [1745] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2404), + [anon_sym_RBRACE] = ACTIONS(5027), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2026] = { - [sym_file_descriptor] = ACTIONS(1916), - [sym__concat] = ACTIONS(1916), - [sym_variable_name] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(2845), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(2845), - [anon_sym_GT] = ACTIONS(2845), - [anon_sym_GT_GT] = ACTIONS(1916), - [anon_sym_AMP_GT] = ACTIONS(2845), - [anon_sym_AMP_GT_GT] = ACTIONS(1916), - [anon_sym_LT_AMP] = ACTIONS(1916), - [anon_sym_GT_AMP] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(2845), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(2845), - [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(56), - [sym_word] = ACTIONS(2845), - }, - [2027] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5034), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2028] = { - [sym_file_descriptor] = ACTIONS(2064), - [sym__concat] = ACTIONS(2064), - [sym_variable_name] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2847), - [anon_sym_RPAREN] = ACTIONS(2064), - [anon_sym_PIPE_AMP] = ACTIONS(2064), - [anon_sym_AMP_AMP] = ACTIONS(2064), - [anon_sym_PIPE_PIPE] = ACTIONS(2064), - [anon_sym_LT] = ACTIONS(2847), - [anon_sym_GT] = ACTIONS(2847), - [anon_sym_GT_GT] = ACTIONS(2064), - [anon_sym_AMP_GT] = ACTIONS(2847), - [anon_sym_AMP_GT_GT] = ACTIONS(2064), - [anon_sym_LT_AMP] = ACTIONS(2064), - [anon_sym_GT_AMP] = ACTIONS(2064), - [sym__special_characters] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2847), - [sym_raw_string] = ACTIONS(2064), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2064), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2064), - [anon_sym_BQUOTE] = ACTIONS(2064), - [anon_sym_LT_LPAREN] = ACTIONS(2064), - [anon_sym_GT_LPAREN] = ACTIONS(2064), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2847), - }, - [2029] = { - [sym_file_descriptor] = ACTIONS(2228), - [sym__concat] = ACTIONS(2228), - [sym_variable_name] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_RPAREN] = ACTIONS(2228), - [anon_sym_PIPE_AMP] = ACTIONS(2228), - [anon_sym_AMP_AMP] = ACTIONS(2228), - [anon_sym_PIPE_PIPE] = ACTIONS(2228), - [anon_sym_LT] = ACTIONS(2849), - [anon_sym_GT] = ACTIONS(2849), - [anon_sym_GT_GT] = ACTIONS(2228), - [anon_sym_AMP_GT] = ACTIONS(2849), - [anon_sym_AMP_GT_GT] = ACTIONS(2228), - [anon_sym_LT_AMP] = ACTIONS(2228), - [anon_sym_GT_AMP] = ACTIONS(2228), - [sym__special_characters] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2228), - [anon_sym_DOLLAR] = ACTIONS(2849), - [sym_raw_string] = ACTIONS(2228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2228), - [anon_sym_BQUOTE] = ACTIONS(2228), - [anon_sym_LT_LPAREN] = ACTIONS(2228), - [anon_sym_GT_LPAREN] = ACTIONS(2228), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2849), - }, - [2030] = { - [sym_do_group] = STATE(2405), - [anon_sym_do] = ACTIONS(5052), + [1746] = { + [sym_file_redirect] = STATE(2405), + [sym_file_descriptor] = ACTIONS(3414), + [anon_sym_PIPE] = ACTIONS(4921), + [anon_sym_RPAREN] = ACTIONS(4923), + [anon_sym_PIPE_AMP] = ACTIONS(4923), + [anon_sym_AMP_AMP] = ACTIONS(4923), + [anon_sym_PIPE_PIPE] = ACTIONS(4923), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_GT_GT] = ACTIONS(3422), + [anon_sym_AMP_GT] = ACTIONS(3420), + [anon_sym_AMP_GT_GT] = ACTIONS(3422), + [anon_sym_LT_AMP] = ACTIONS(3422), + [anon_sym_GT_AMP] = ACTIONS(3422), [sym_comment] = ACTIONS(56), }, - [2031] = { - [sym_file_descriptor] = ACTIONS(3855), - [anon_sym_PIPE] = ACTIONS(5054), - [anon_sym_RPAREN] = ACTIONS(3855), - [anon_sym_PIPE_AMP] = ACTIONS(3855), - [anon_sym_AMP_AMP] = ACTIONS(3855), - [anon_sym_PIPE_PIPE] = ACTIONS(3855), - [anon_sym_LT] = ACTIONS(5054), - [anon_sym_GT] = ACTIONS(5054), - [anon_sym_GT_GT] = ACTIONS(3855), - [anon_sym_AMP_GT] = ACTIONS(5054), - [anon_sym_AMP_GT_GT] = ACTIONS(3855), - [anon_sym_LT_AMP] = ACTIONS(3855), - [anon_sym_GT_AMP] = ACTIONS(3855), - [anon_sym_LT_LT] = ACTIONS(5054), - [anon_sym_LT_LT_DASH] = ACTIONS(3855), - [anon_sym_LT_LT_LT] = ACTIONS(3855), - [anon_sym_BQUOTE] = ACTIONS(3855), + [1747] = { + [aux_sym_concatenation_repeat1] = STATE(1751), + [sym_file_descriptor] = ACTIONS(1219), + [sym__concat] = ACTIONS(3628), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_PIPE_AMP] = ACTIONS(1219), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_GT_GT] = ACTIONS(1219), + [anon_sym_AMP_GT] = ACTIONS(1221), + [anon_sym_AMP_GT_GT] = ACTIONS(1219), + [anon_sym_LT_AMP] = ACTIONS(1219), + [anon_sym_GT_AMP] = ACTIONS(1219), + [anon_sym_LT_LT] = ACTIONS(1221), + [anon_sym_LT_LT_DASH] = ACTIONS(1219), + [anon_sym_LT_LT_LT] = ACTIONS(1219), [sym_comment] = ACTIONS(56), }, - [2032] = { - [anon_sym_PIPE] = ACTIONS(5056), - [anon_sym_RPAREN] = ACTIONS(5058), - [anon_sym_PIPE_AMP] = ACTIONS(5058), - [anon_sym_AMP_AMP] = ACTIONS(5058), - [anon_sym_PIPE_PIPE] = ACTIONS(5058), - [anon_sym_BQUOTE] = ACTIONS(5058), + [1748] = { + [aux_sym_concatenation_repeat1] = STATE(1751), + [sym_file_descriptor] = ACTIONS(1223), + [sym__concat] = ACTIONS(3628), + [anon_sym_PIPE] = ACTIONS(1225), + [anon_sym_RPAREN] = ACTIONS(1223), + [anon_sym_PIPE_AMP] = ACTIONS(1223), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(1225), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_GT_GT] = ACTIONS(1223), + [anon_sym_AMP_GT] = ACTIONS(1225), + [anon_sym_AMP_GT_GT] = ACTIONS(1223), + [anon_sym_LT_AMP] = ACTIONS(1223), + [anon_sym_GT_AMP] = ACTIONS(1223), + [anon_sym_LT_LT] = ACTIONS(1225), + [anon_sym_LT_LT_DASH] = ACTIONS(1223), + [anon_sym_LT_LT_LT] = ACTIONS(1223), [sym_comment] = ACTIONS(56), }, - [2033] = { - [anon_sym_fi] = ACTIONS(5060), + [1749] = { + [sym_file_descriptor] = ACTIONS(1223), + [anon_sym_PIPE] = ACTIONS(1225), + [anon_sym_RPAREN] = ACTIONS(1223), + [anon_sym_PIPE_AMP] = ACTIONS(1223), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(1225), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_GT_GT] = ACTIONS(1223), + [anon_sym_AMP_GT] = ACTIONS(1225), + [anon_sym_AMP_GT_GT] = ACTIONS(1223), + [anon_sym_LT_AMP] = ACTIONS(1223), + [anon_sym_GT_AMP] = ACTIONS(1223), + [anon_sym_LT_LT] = ACTIONS(1225), + [anon_sym_LT_LT_DASH] = ACTIONS(1223), + [anon_sym_LT_LT_LT] = ACTIONS(1223), + [anon_sym_BQUOTE] = ACTIONS(1223), [sym_comment] = ACTIONS(56), }, - [2034] = { - [sym_elif_clause] = STATE(683), - [sym_else_clause] = STATE(2407), - [aux_sym_if_statement_repeat1] = STATE(1252), - [anon_sym_fi] = ACTIONS(5060), - [anon_sym_elif] = ACTIONS(2494), - [anon_sym_else] = ACTIONS(2496), + [1750] = { + [sym_string] = STATE(2406), + [sym_simple_expansion] = STATE(2406), + [sym_string_expansion] = STATE(2406), + [sym_expansion] = STATE(2406), + [sym_command_substitution] = STATE(2406), + [sym_process_substitution] = STATE(2406), + [sym__special_characters] = ACTIONS(5029), + [anon_sym_DQUOTE] = ACTIONS(2184), + [anon_sym_DOLLAR] = ACTIONS(2186), + [sym_raw_string] = ACTIONS(5031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), + [anon_sym_BQUOTE] = ACTIONS(2194), + [anon_sym_LT_LPAREN] = ACTIONS(2196), + [anon_sym_GT_LPAREN] = ACTIONS(2196), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5029), + }, + [1751] = { + [aux_sym_concatenation_repeat1] = STATE(2407), + [sym_file_descriptor] = ACTIONS(772), + [sym__concat] = ACTIONS(3628), + [anon_sym_PIPE] = ACTIONS(1539), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_PIPE_AMP] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(772), + [anon_sym_PIPE_PIPE] = ACTIONS(772), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_GT_GT] = ACTIONS(772), + [anon_sym_AMP_GT] = ACTIONS(1539), + [anon_sym_AMP_GT_GT] = ACTIONS(772), + [anon_sym_LT_AMP] = ACTIONS(772), + [anon_sym_GT_AMP] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(1539), + [anon_sym_LT_LT_DASH] = ACTIONS(772), + [anon_sym_LT_LT_LT] = ACTIONS(772), [sym_comment] = ACTIONS(56), }, - [2035] = { - [anon_sym_PIPE] = ACTIONS(5062), - [anon_sym_RPAREN] = ACTIONS(5064), - [anon_sym_PIPE_AMP] = ACTIONS(5064), - [anon_sym_AMP_AMP] = ACTIONS(5064), - [anon_sym_PIPE_PIPE] = ACTIONS(5064), - [anon_sym_BQUOTE] = ACTIONS(5064), + [1752] = { + [sym_file_descriptor] = ACTIONS(776), + [sym__concat] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_RPAREN] = ACTIONS(776), + [anon_sym_PIPE_AMP] = ACTIONS(776), + [anon_sym_AMP_AMP] = ACTIONS(776), + [anon_sym_PIPE_PIPE] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(1541), + [anon_sym_GT] = ACTIONS(1541), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_AMP_GT] = ACTIONS(1541), + [anon_sym_AMP_GT_GT] = ACTIONS(776), + [anon_sym_LT_AMP] = ACTIONS(776), + [anon_sym_GT_AMP] = ACTIONS(776), + [anon_sym_LT_LT] = ACTIONS(1541), + [anon_sym_LT_LT_DASH] = ACTIONS(776), + [anon_sym_LT_LT_LT] = ACTIONS(776), [sym_comment] = ACTIONS(56), }, - [2036] = { - [anon_sym_esac] = ACTIONS(5066), + [1753] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(5033), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [1754] = { + [sym_file_descriptor] = ACTIONS(808), + [sym__concat] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_RPAREN] = ACTIONS(808), + [anon_sym_PIPE_AMP] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_GT_GT] = ACTIONS(808), + [anon_sym_AMP_GT] = ACTIONS(1545), + [anon_sym_AMP_GT_GT] = ACTIONS(808), + [anon_sym_LT_AMP] = ACTIONS(808), + [anon_sym_GT_AMP] = ACTIONS(808), + [anon_sym_LT_LT] = ACTIONS(1545), + [anon_sym_LT_LT_DASH] = ACTIONS(808), + [anon_sym_LT_LT_LT] = ACTIONS(808), [sym_comment] = ACTIONS(56), }, - [2037] = { - [sym_case_item] = STATE(1262), - [sym_last_case_item] = STATE(2409), - [sym_concatenation] = STATE(1264), - [sym_string] = STATE(1257), - [sym_simple_expansion] = STATE(1257), - [sym_string_expansion] = STATE(1257), - [sym_expansion] = STATE(1257), - [sym_command_substitution] = STATE(1257), - [sym_process_substitution] = STATE(1257), - [aux_sym_case_statement_repeat1] = STATE(1827), - [sym__special_characters] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2502), - [anon_sym_DOLLAR] = ACTIONS(2504), - [sym_raw_string] = ACTIONS(2506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2508), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2510), - [anon_sym_BQUOTE] = ACTIONS(2512), - [anon_sym_LT_LPAREN] = ACTIONS(2514), - [anon_sym_GT_LPAREN] = ACTIONS(2514), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3910), - }, - [2038] = { - [sym_case_item] = STATE(1262), - [sym_last_case_item] = STATE(2409), - [sym_concatenation] = STATE(1264), - [sym_string] = STATE(1257), - [sym_simple_expansion] = STATE(1257), - [sym_string_expansion] = STATE(1257), - [sym_expansion] = STATE(1257), - [sym_command_substitution] = STATE(1257), - [sym_process_substitution] = STATE(1257), - [aux_sym_case_statement_repeat1] = STATE(2411), - [anon_sym_esac] = ACTIONS(5068), - [sym__special_characters] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2502), - [anon_sym_DOLLAR] = ACTIONS(2504), - [sym_raw_string] = ACTIONS(2506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2508), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2510), - [anon_sym_BQUOTE] = ACTIONS(2512), - [anon_sym_LT_LPAREN] = ACTIONS(2514), - [anon_sym_GT_LPAREN] = ACTIONS(2514), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2516), - }, - [2039] = { - [anon_sym_PIPE] = ACTIONS(5070), - [anon_sym_RPAREN] = ACTIONS(5072), - [anon_sym_PIPE_AMP] = ACTIONS(5072), - [anon_sym_AMP_AMP] = ACTIONS(5072), - [anon_sym_PIPE_PIPE] = ACTIONS(5072), - [anon_sym_BQUOTE] = ACTIONS(5072), + [1755] = { + [sym_file_descriptor] = ACTIONS(812), + [sym__concat] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(1547), + [anon_sym_RPAREN] = ACTIONS(812), + [anon_sym_PIPE_AMP] = ACTIONS(812), + [anon_sym_AMP_AMP] = ACTIONS(812), + [anon_sym_PIPE_PIPE] = ACTIONS(812), + [anon_sym_LT] = ACTIONS(1547), + [anon_sym_GT] = ACTIONS(1547), + [anon_sym_GT_GT] = ACTIONS(812), + [anon_sym_AMP_GT] = ACTIONS(1547), + [anon_sym_AMP_GT_GT] = ACTIONS(812), + [anon_sym_LT_AMP] = ACTIONS(812), + [anon_sym_GT_AMP] = ACTIONS(812), + [anon_sym_LT_LT] = ACTIONS(1547), + [anon_sym_LT_LT_DASH] = ACTIONS(812), + [anon_sym_LT_LT_LT] = ACTIONS(812), [sym_comment] = ACTIONS(56), }, - [2040] = { - [anon_sym_esac] = ACTIONS(5074), + [1756] = { + [sym_file_descriptor] = ACTIONS(816), + [sym__concat] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_RPAREN] = ACTIONS(816), + [anon_sym_PIPE_AMP] = ACTIONS(816), + [anon_sym_AMP_AMP] = ACTIONS(816), + [anon_sym_PIPE_PIPE] = ACTIONS(816), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1549), + [anon_sym_GT_GT] = ACTIONS(816), + [anon_sym_AMP_GT] = ACTIONS(1549), + [anon_sym_AMP_GT_GT] = ACTIONS(816), + [anon_sym_LT_AMP] = ACTIONS(816), + [anon_sym_GT_AMP] = ACTIONS(816), + [anon_sym_LT_LT] = ACTIONS(1549), + [anon_sym_LT_LT_DASH] = ACTIONS(816), + [anon_sym_LT_LT_LT] = ACTIONS(816), [sym_comment] = ACTIONS(56), }, - [2041] = { - [sym_case_item] = STATE(1262), - [sym_last_case_item] = STATE(2413), - [sym_concatenation] = STATE(1264), - [sym_string] = STATE(1257), - [sym_simple_expansion] = STATE(1257), - [sym_string_expansion] = STATE(1257), - [sym_expansion] = STATE(1257), - [sym_command_substitution] = STATE(1257), - [sym_process_substitution] = STATE(1257), - [aux_sym_case_statement_repeat1] = STATE(1827), - [sym__special_characters] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2502), - [anon_sym_DOLLAR] = ACTIONS(2504), - [sym_raw_string] = ACTIONS(2506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2508), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2510), - [anon_sym_BQUOTE] = ACTIONS(2512), - [anon_sym_LT_LPAREN] = ACTIONS(2514), - [anon_sym_GT_LPAREN] = ACTIONS(2514), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3910), - }, - [2042] = { - [sym_case_item] = STATE(1262), - [sym_last_case_item] = STATE(2413), - [sym_concatenation] = STATE(1264), - [sym_string] = STATE(1257), - [sym_simple_expansion] = STATE(1257), - [sym_string_expansion] = STATE(1257), - [sym_expansion] = STATE(1257), - [sym_command_substitution] = STATE(1257), - [sym_process_substitution] = STATE(1257), - [aux_sym_case_statement_repeat1] = STATE(2415), - [anon_sym_esac] = ACTIONS(5076), - [sym__special_characters] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2502), - [anon_sym_DOLLAR] = ACTIONS(2504), - [sym_raw_string] = ACTIONS(2506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2508), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2510), - [anon_sym_BQUOTE] = ACTIONS(2512), - [anon_sym_LT_LPAREN] = ACTIONS(2514), - [anon_sym_GT_LPAREN] = ACTIONS(2514), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2516), - }, - [2043] = { - [sym_file_redirect] = STATE(2416), - [sym_file_descriptor] = ACTIONS(3130), - [anon_sym_PIPE] = ACTIONS(5078), - [anon_sym_RPAREN] = ACTIONS(5080), - [anon_sym_PIPE_AMP] = ACTIONS(5080), - [anon_sym_AMP_AMP] = ACTIONS(5080), - [anon_sym_PIPE_PIPE] = ACTIONS(5080), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_GT] = ACTIONS(3136), - [anon_sym_GT_GT] = ACTIONS(3138), - [anon_sym_AMP_GT] = ACTIONS(3136), - [anon_sym_AMP_GT_GT] = ACTIONS(3138), - [anon_sym_LT_AMP] = ACTIONS(3138), - [anon_sym_GT_AMP] = ACTIONS(3138), + [1757] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(5035), [sym_comment] = ACTIONS(56), }, - [2044] = { - [sym_file_descriptor] = ACTIONS(3936), - [anon_sym_PIPE] = ACTIONS(5082), - [anon_sym_RPAREN] = ACTIONS(3936), - [anon_sym_PIPE_AMP] = ACTIONS(3936), - [anon_sym_AMP_AMP] = ACTIONS(3936), - [anon_sym_PIPE_PIPE] = ACTIONS(3936), - [anon_sym_LT] = ACTIONS(5082), - [anon_sym_GT] = ACTIONS(5082), - [anon_sym_GT_GT] = ACTIONS(3936), - [anon_sym_AMP_GT] = ACTIONS(5082), - [anon_sym_AMP_GT_GT] = ACTIONS(3936), - [anon_sym_LT_AMP] = ACTIONS(3936), - [anon_sym_GT_AMP] = ACTIONS(3936), - [anon_sym_BQUOTE] = ACTIONS(3936), + [1758] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2412), + [anon_sym_RBRACE] = ACTIONS(5037), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5039), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1759] = { + [sym_subscript] = STATE(2416), + [sym_variable_name] = ACTIONS(5041), + [anon_sym_DOLLAR] = ACTIONS(5043), + [anon_sym_DASH] = ACTIONS(5043), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5045), + [anon_sym_STAR] = ACTIONS(5043), + [anon_sym_AT] = ACTIONS(5043), + [anon_sym_QMARK] = ACTIONS(5043), + [anon_sym_0] = ACTIONS(5047), + [anon_sym__] = ACTIONS(5047), + }, + [1760] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2419), + [anon_sym_RBRACE] = ACTIONS(5049), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5051), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1761] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2422), + [anon_sym_RBRACE] = ACTIONS(5053), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5055), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1762] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(5057), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), [sym_comment] = ACTIONS(56), }, - [2045] = { - [sym_concatenation] = STATE(2419), - [sym_string] = STATE(2418), - [sym_simple_expansion] = STATE(2418), - [sym_string_expansion] = STATE(2418), - [sym_expansion] = STATE(2418), - [sym_command_substitution] = STATE(2418), - [sym_process_substitution] = STATE(2418), - [sym__special_characters] = ACTIONS(5084), - [anon_sym_DQUOTE] = ACTIONS(4343), - [anon_sym_DOLLAR] = ACTIONS(4345), - [sym_raw_string] = ACTIONS(5086), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4351), - [anon_sym_BQUOTE] = ACTIONS(4353), - [anon_sym_LT_LPAREN] = ACTIONS(4355), - [anon_sym_GT_LPAREN] = ACTIONS(4355), + [1763] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(5057), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5088), + [sym_word] = ACTIONS(382), }, - [2046] = { - [aux_sym_concatenation_repeat1] = STATE(2421), - [sym__concat] = ACTIONS(5090), - [anon_sym_PIPE] = ACTIONS(732), - [anon_sym_RPAREN] = ACTIONS(728), - [anon_sym_PIPE_AMP] = ACTIONS(728), - [anon_sym_AMP_AMP] = ACTIONS(728), - [anon_sym_PIPE_PIPE] = ACTIONS(728), + [1764] = { + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(5057), [sym_comment] = ACTIONS(56), }, - [2047] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(2423), - [anon_sym_DQUOTE] = ACTIONS(5092), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), + [1765] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(5057), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), }, - [2048] = { + [1766] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(5059), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [1767] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(5059), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1768] = { + [sym_file_descriptor] = ACTIONS(4014), + [anon_sym_PIPE] = ACTIONS(5061), + [anon_sym_RPAREN] = ACTIONS(4014), + [anon_sym_PIPE_AMP] = ACTIONS(4014), + [anon_sym_AMP_AMP] = ACTIONS(4014), + [anon_sym_PIPE_PIPE] = ACTIONS(4014), + [anon_sym_LT] = ACTIONS(5061), + [anon_sym_GT] = ACTIONS(5061), + [anon_sym_GT_GT] = ACTIONS(4014), + [anon_sym_AMP_GT] = ACTIONS(5061), + [anon_sym_AMP_GT_GT] = ACTIONS(4014), + [anon_sym_LT_AMP] = ACTIONS(4014), + [anon_sym_GT_AMP] = ACTIONS(4014), + [anon_sym_LT_LT] = ACTIONS(5061), + [anon_sym_LT_LT_DASH] = ACTIONS(4014), + [anon_sym_LT_LT_LT] = ACTIONS(4014), + [anon_sym_BQUOTE] = ACTIONS(4014), + [sym_comment] = ACTIONS(56), + }, + [1769] = { + [sym_simple_expansion] = STATE(1218), + [sym_expansion] = STATE(1218), + [aux_sym_heredoc_repeat1] = STATE(1902), + [sym__heredoc_middle] = ACTIONS(2400), + [sym__heredoc_end] = ACTIONS(5063), + [anon_sym_DOLLAR] = ACTIONS(2404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2406), + [sym_comment] = ACTIONS(56), + }, + [1770] = { + [sym_file_redirect] = STATE(539), + [sym_heredoc_redirect] = STATE(539), + [sym_herestring_redirect] = STATE(539), + [aux_sym_while_statement_repeat1] = STATE(1101), + [sym_file_descriptor] = ACTIONS(962), + [anon_sym_PIPE] = ACTIONS(5065), + [anon_sym_RPAREN] = ACTIONS(5067), + [anon_sym_PIPE_AMP] = ACTIONS(5067), + [anon_sym_AMP_AMP] = ACTIONS(5067), + [anon_sym_PIPE_PIPE] = ACTIONS(5067), + [anon_sym_LT] = ACTIONS(970), + [anon_sym_GT] = ACTIONS(970), + [anon_sym_GT_GT] = ACTIONS(972), + [anon_sym_AMP_GT] = ACTIONS(970), + [anon_sym_AMP_GT_GT] = ACTIONS(972), + [anon_sym_LT_AMP] = ACTIONS(972), + [anon_sym_GT_AMP] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_LT_LT_DASH] = ACTIONS(976), + [anon_sym_LT_LT_LT] = ACTIONS(978), + [sym_comment] = ACTIONS(56), + }, + [1771] = { [sym_string] = STATE(2426), - [anon_sym_DQUOTE] = ACTIONS(4343), - [anon_sym_DOLLAR] = ACTIONS(5094), - [anon_sym_POUND] = ACTIONS(5094), - [anon_sym_DASH] = ACTIONS(5094), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5096), - [anon_sym_STAR] = ACTIONS(5094), - [anon_sym_AT] = ACTIONS(5094), - [anon_sym_QMARK] = ACTIONS(5094), - [anon_sym_0] = ACTIONS(5098), - [anon_sym__] = ACTIONS(5098), + [sym_simple_expansion] = STATE(2426), + [sym_string_expansion] = STATE(2426), + [sym_expansion] = STATE(2426), + [sym_command_substitution] = STATE(2426), + [sym_process_substitution] = STATE(2426), + [sym__special_characters] = ACTIONS(5069), + [anon_sym_DQUOTE] = ACTIONS(2218), + [anon_sym_DOLLAR] = ACTIONS(2220), + [sym_raw_string] = ACTIONS(5071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2224), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2226), + [anon_sym_BQUOTE] = ACTIONS(2228), + [anon_sym_LT_LPAREN] = ACTIONS(2230), + [anon_sym_GT_LPAREN] = ACTIONS(2230), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5069), }, - [2049] = { - [aux_sym_concatenation_repeat1] = STATE(2421), - [sym__concat] = ACTIONS(5090), - [anon_sym_PIPE] = ACTIONS(744), - [anon_sym_RPAREN] = ACTIONS(742), - [anon_sym_PIPE_AMP] = ACTIONS(742), - [anon_sym_AMP_AMP] = ACTIONS(742), - [anon_sym_PIPE_PIPE] = ACTIONS(742), + [1772] = { + [aux_sym_concatenation_repeat1] = STATE(2427), + [sym_file_descriptor] = ACTIONS(772), + [sym__concat] = ACTIONS(3714), + [sym_variable_name] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(1539), + [anon_sym_PIPE_AMP] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(772), + [anon_sym_PIPE_PIPE] = ACTIONS(772), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_GT_GT] = ACTIONS(772), + [anon_sym_AMP_GT] = ACTIONS(1539), + [anon_sym_AMP_GT_GT] = ACTIONS(772), + [anon_sym_LT_AMP] = ACTIONS(772), + [anon_sym_GT_AMP] = ACTIONS(772), + [sym__special_characters] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(1539), + [sym_raw_string] = ACTIONS(772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(772), + [anon_sym_BQUOTE] = ACTIONS(772), + [anon_sym_LT_LPAREN] = ACTIONS(772), + [anon_sym_GT_LPAREN] = ACTIONS(772), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1539), + }, + [1773] = { + [sym_file_descriptor] = ACTIONS(776), + [sym__concat] = ACTIONS(776), + [sym_variable_name] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_PIPE_AMP] = ACTIONS(776), + [anon_sym_AMP_AMP] = ACTIONS(776), + [anon_sym_PIPE_PIPE] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(1541), + [anon_sym_GT] = ACTIONS(1541), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_AMP_GT] = ACTIONS(1541), + [anon_sym_AMP_GT_GT] = ACTIONS(776), + [anon_sym_LT_AMP] = ACTIONS(776), + [anon_sym_GT_AMP] = ACTIONS(776), + [sym__special_characters] = ACTIONS(1541), + [anon_sym_DQUOTE] = ACTIONS(776), + [anon_sym_DOLLAR] = ACTIONS(1541), + [sym_raw_string] = ACTIONS(776), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(776), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(776), + [anon_sym_BQUOTE] = ACTIONS(776), + [anon_sym_LT_LPAREN] = ACTIONS(776), + [anon_sym_GT_LPAREN] = ACTIONS(776), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1541), + }, + [1774] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(5073), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [1775] = { + [sym_file_descriptor] = ACTIONS(808), + [sym__concat] = ACTIONS(808), + [sym_variable_name] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PIPE_AMP] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_GT_GT] = ACTIONS(808), + [anon_sym_AMP_GT] = ACTIONS(1545), + [anon_sym_AMP_GT_GT] = ACTIONS(808), + [anon_sym_LT_AMP] = ACTIONS(808), + [anon_sym_GT_AMP] = ACTIONS(808), + [sym__special_characters] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(808), + [anon_sym_DOLLAR] = ACTIONS(1545), + [sym_raw_string] = ACTIONS(808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(808), + [anon_sym_BQUOTE] = ACTIONS(808), + [anon_sym_LT_LPAREN] = ACTIONS(808), + [anon_sym_GT_LPAREN] = ACTIONS(808), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1545), + }, + [1776] = { + [sym_file_descriptor] = ACTIONS(812), + [sym__concat] = ACTIONS(812), + [sym_variable_name] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(1547), + [anon_sym_PIPE_AMP] = ACTIONS(812), + [anon_sym_AMP_AMP] = ACTIONS(812), + [anon_sym_PIPE_PIPE] = ACTIONS(812), + [anon_sym_LT] = ACTIONS(1547), + [anon_sym_GT] = ACTIONS(1547), + [anon_sym_GT_GT] = ACTIONS(812), + [anon_sym_AMP_GT] = ACTIONS(1547), + [anon_sym_AMP_GT_GT] = ACTIONS(812), + [anon_sym_LT_AMP] = ACTIONS(812), + [anon_sym_GT_AMP] = ACTIONS(812), + [sym__special_characters] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(812), + [anon_sym_DOLLAR] = ACTIONS(1547), + [sym_raw_string] = ACTIONS(812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(812), + [anon_sym_BQUOTE] = ACTIONS(812), + [anon_sym_LT_LPAREN] = ACTIONS(812), + [anon_sym_GT_LPAREN] = ACTIONS(812), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1547), + }, + [1777] = { + [sym_file_descriptor] = ACTIONS(816), + [sym__concat] = ACTIONS(816), + [sym_variable_name] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_PIPE_AMP] = ACTIONS(816), + [anon_sym_AMP_AMP] = ACTIONS(816), + [anon_sym_PIPE_PIPE] = ACTIONS(816), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1549), + [anon_sym_GT_GT] = ACTIONS(816), + [anon_sym_AMP_GT] = ACTIONS(1549), + [anon_sym_AMP_GT_GT] = ACTIONS(816), + [anon_sym_LT_AMP] = ACTIONS(816), + [anon_sym_GT_AMP] = ACTIONS(816), + [sym__special_characters] = ACTIONS(1549), + [anon_sym_DQUOTE] = ACTIONS(816), + [anon_sym_DOLLAR] = ACTIONS(1549), + [sym_raw_string] = ACTIONS(816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(816), + [anon_sym_BQUOTE] = ACTIONS(816), + [anon_sym_LT_LPAREN] = ACTIONS(816), + [anon_sym_GT_LPAREN] = ACTIONS(816), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1549), + }, + [1778] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(5075), [sym_comment] = ACTIONS(56), }, - [2050] = { - [sym_subscript] = STATE(2431), - [sym_variable_name] = ACTIONS(5100), - [anon_sym_DOLLAR] = ACTIONS(5102), - [anon_sym_POUND] = ACTIONS(5104), - [anon_sym_DASH] = ACTIONS(5102), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5106), - [anon_sym_STAR] = ACTIONS(5102), - [anon_sym_AT] = ACTIONS(5102), - [anon_sym_QMARK] = ACTIONS(5102), - [anon_sym_0] = ACTIONS(5108), - [anon_sym__] = ACTIONS(5108), + [1779] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2432), + [anon_sym_RBRACE] = ACTIONS(5077), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5079), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2051] = { - [sym_for_statement] = STATE(2432), - [sym_while_statement] = STATE(2432), - [sym_if_statement] = STATE(2432), - [sym_case_statement] = STATE(2432), - [sym_function_definition] = STATE(2432), - [sym_subshell] = STATE(2432), - [sym_pipeline] = STATE(2432), - [sym_list] = STATE(2432), - [sym_bracket_command] = STATE(2432), - [sym_command] = STATE(2432), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(2433), - [sym_declaration_command] = STATE(2432), - [sym_unset_command] = STATE(2432), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), + [1780] = { + [sym_subscript] = STATE(2436), + [sym_variable_name] = ACTIONS(5081), + [anon_sym_DOLLAR] = ACTIONS(5083), + [anon_sym_DASH] = ACTIONS(5083), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5085), + [anon_sym_STAR] = ACTIONS(5083), + [anon_sym_AT] = ACTIONS(5083), + [anon_sym_QMARK] = ACTIONS(5083), + [anon_sym_0] = ACTIONS(5087), + [anon_sym__] = ACTIONS(5087), }, - [2052] = { - [sym_for_statement] = STATE(2434), - [sym_while_statement] = STATE(2434), - [sym_if_statement] = STATE(2434), - [sym_case_statement] = STATE(2434), - [sym_function_definition] = STATE(2434), - [sym_subshell] = STATE(2434), - [sym_pipeline] = STATE(2434), - [sym_list] = STATE(2434), - [sym_bracket_command] = STATE(2434), - [sym_command] = STATE(2434), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(2435), - [sym_declaration_command] = STATE(2434), - [sym_unset_command] = STATE(2434), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), + [1781] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2439), + [anon_sym_RBRACE] = ACTIONS(5089), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5091), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2053] = { - [sym_for_statement] = STATE(2436), - [sym_while_statement] = STATE(2436), - [sym_if_statement] = STATE(2436), - [sym_case_statement] = STATE(2436), - [sym_function_definition] = STATE(2436), - [sym_subshell] = STATE(2436), - [sym_pipeline] = STATE(2436), - [sym_list] = STATE(2436), - [sym_bracket_command] = STATE(2436), - [sym_command] = STATE(2436), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(2437), - [sym_declaration_command] = STATE(2436), - [sym_unset_command] = STATE(2436), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), + [1782] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2442), + [anon_sym_RBRACE] = ACTIONS(5093), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5095), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2054] = { - [anon_sym_PIPE] = ACTIONS(744), - [anon_sym_RPAREN] = ACTIONS(742), - [anon_sym_PIPE_AMP] = ACTIONS(742), - [anon_sym_AMP_AMP] = ACTIONS(742), - [anon_sym_PIPE_PIPE] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), + [1783] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(5097), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), [sym_comment] = ACTIONS(56), }, - [2055] = { - [anon_sym_PIPE] = ACTIONS(5110), - [anon_sym_RPAREN] = ACTIONS(5112), - [anon_sym_PIPE_AMP] = ACTIONS(5112), - [anon_sym_AMP_AMP] = ACTIONS(5112), - [anon_sym_PIPE_PIPE] = ACTIONS(5112), - [anon_sym_BQUOTE] = ACTIONS(5112), + [1784] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(5097), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1785] = { + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(5097), [sym_comment] = ACTIONS(56), }, - [2056] = { - [sym_variable_name] = ACTIONS(2382), - [anon_sym_PIPE] = ACTIONS(4277), - [anon_sym_RPAREN] = ACTIONS(2382), - [anon_sym_PIPE_AMP] = ACTIONS(2382), - [anon_sym_AMP_AMP] = ACTIONS(2382), - [anon_sym_PIPE_PIPE] = ACTIONS(2382), - [sym__special_characters] = ACTIONS(4277), - [anon_sym_DQUOTE] = ACTIONS(2382), - [anon_sym_DOLLAR] = ACTIONS(4277), - [sym_raw_string] = ACTIONS(2382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2382), - [anon_sym_BQUOTE] = ACTIONS(2382), - [anon_sym_LT_LPAREN] = ACTIONS(2382), - [anon_sym_GT_LPAREN] = ACTIONS(2382), + [1786] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(5097), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4277), - [sym_word] = ACTIONS(2384), + [sym_word] = ACTIONS(382), }, - [2057] = { - [sym_concatenation] = STATE(642), - [sym_string] = STATE(637), - [sym_simple_expansion] = STATE(637), - [sym_string_expansion] = STATE(637), - [sym_expansion] = STATE(637), - [sym_command_substitution] = STATE(637), - [sym_process_substitution] = STATE(637), - [aux_sym_for_statement_repeat1] = STATE(1202), - [anon_sym_RPAREN] = ACTIONS(5114), - [sym__special_characters] = ACTIONS(1241), - [anon_sym_DQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1245), - [sym_raw_string] = ACTIONS(1247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1249), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), - [anon_sym_BQUOTE] = ACTIONS(1253), + [1787] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(5099), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [1788] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(5099), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1789] = { + [sym_file_redirect] = STATE(539), + [sym_heredoc_redirect] = STATE(539), + [sym_herestring_redirect] = STATE(539), + [aux_sym_while_statement_repeat1] = STATE(1192), + [sym_file_descriptor] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(4875), + [anon_sym_PIPE_AMP] = ACTIONS(4877), + [anon_sym_AMP_AMP] = ACTIONS(4877), + [anon_sym_PIPE_PIPE] = ACTIONS(4877), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1060), + [anon_sym_GT_GT] = ACTIONS(1062), + [anon_sym_AMP_GT] = ACTIONS(1060), + [anon_sym_AMP_GT_GT] = ACTIONS(1062), + [anon_sym_LT_AMP] = ACTIONS(1062), + [anon_sym_GT_AMP] = ACTIONS(1062), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_LT_LT_DASH] = ACTIONS(976), + [anon_sym_LT_LT_LT] = ACTIONS(1064), + [anon_sym_BQUOTE] = ACTIONS(4877), + [sym_comment] = ACTIONS(56), + }, + [1790] = { + [sym_compound_statement] = STATE(2445), + [anon_sym_LBRACE] = ACTIONS(2046), + [sym_comment] = ACTIONS(56), + }, + [1791] = { + [anon_sym_LT] = ACTIONS(5101), + [anon_sym_GT] = ACTIONS(5101), + [anon_sym_GT_GT] = ACTIONS(5103), + [anon_sym_AMP_GT] = ACTIONS(5101), + [anon_sym_AMP_GT_GT] = ACTIONS(5103), + [anon_sym_LT_AMP] = ACTIONS(5103), + [anon_sym_GT_AMP] = ACTIONS(5103), + [sym_comment] = ACTIONS(56), + }, + [1792] = { + [sym_concatenation] = STATE(2349), + [sym_string] = STATE(2450), + [sym_simple_expansion] = STATE(2450), + [sym_string_expansion] = STATE(2450), + [sym_expansion] = STATE(2450), + [sym_command_substitution] = STATE(2450), + [sym_process_substitution] = STATE(2450), + [sym__special_characters] = ACTIONS(5105), + [anon_sym_DQUOTE] = ACTIONS(5107), + [anon_sym_DOLLAR] = ACTIONS(5109), + [sym_raw_string] = ACTIONS(5111), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5115), + [anon_sym_BQUOTE] = ACTIONS(5117), + [anon_sym_LT_LPAREN] = ACTIONS(5119), + [anon_sym_GT_LPAREN] = ACTIONS(5119), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5121), + }, + [1793] = { + [sym_file_redirect] = STATE(539), + [sym_heredoc_redirect] = STATE(539), + [sym_herestring_redirect] = STATE(539), + [aux_sym_while_statement_repeat1] = STATE(1192), + [sym_file_descriptor] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(4931), + [anon_sym_PIPE_AMP] = ACTIONS(4933), + [anon_sym_AMP_AMP] = ACTIONS(4933), + [anon_sym_PIPE_PIPE] = ACTIONS(4933), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1060), + [anon_sym_GT_GT] = ACTIONS(1062), + [anon_sym_AMP_GT] = ACTIONS(1060), + [anon_sym_AMP_GT_GT] = ACTIONS(1062), + [anon_sym_LT_AMP] = ACTIONS(1062), + [anon_sym_GT_AMP] = ACTIONS(1062), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_LT_LT_DASH] = ACTIONS(976), + [anon_sym_LT_LT_LT] = ACTIONS(1064), + [anon_sym_BQUOTE] = ACTIONS(4933), + [sym_comment] = ACTIONS(56), + }, + [1794] = { + [aux_sym_concatenation_repeat1] = STATE(1119), + [sym__concat] = ACTIONS(2240), + [sym_variable_name] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(3374), + [anon_sym_PIPE_AMP] = ACTIONS(1279), + [anon_sym_AMP_AMP] = ACTIONS(1279), + [anon_sym_PIPE_PIPE] = ACTIONS(1279), + [sym__special_characters] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(3374), + [sym_raw_string] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_LT_LPAREN] = ACTIONS(1279), + [anon_sym_GT_LPAREN] = ACTIONS(1279), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3374), + [sym_word] = ACTIONS(1283), + }, + [1795] = { + [aux_sym_concatenation_repeat1] = STATE(1119), + [sym__concat] = ACTIONS(2240), + [sym_variable_name] = ACTIONS(1255), + [anon_sym_PIPE] = ACTIONS(3368), + [anon_sym_PIPE_AMP] = ACTIONS(1255), + [anon_sym_AMP_AMP] = ACTIONS(1255), + [anon_sym_PIPE_PIPE] = ACTIONS(1255), + [sym__special_characters] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(1255), + [anon_sym_DOLLAR] = ACTIONS(3368), + [sym_raw_string] = ACTIONS(1255), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1255), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1255), + [anon_sym_BQUOTE] = ACTIONS(1255), [anon_sym_LT_LPAREN] = ACTIONS(1255), [anon_sym_GT_LPAREN] = ACTIONS(1255), [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3368), [sym_word] = ACTIONS(1257), }, - [2058] = { - [sym__concat] = ACTIONS(2969), - [sym_variable_name] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(4098), - [anon_sym_RPAREN] = ACTIONS(2969), - [anon_sym_PIPE_AMP] = ACTIONS(2969), - [anon_sym_AMP_AMP] = ACTIONS(2969), - [anon_sym_PIPE_PIPE] = ACTIONS(2969), - [sym__special_characters] = ACTIONS(4098), - [anon_sym_DQUOTE] = ACTIONS(2969), - [anon_sym_DOLLAR] = ACTIONS(4098), - [sym_raw_string] = ACTIONS(2969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2969), - [anon_sym_BQUOTE] = ACTIONS(2969), - [anon_sym_LT_LPAREN] = ACTIONS(2969), - [anon_sym_GT_LPAREN] = ACTIONS(2969), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4098), - [sym_word] = ACTIONS(2971), - }, - [2059] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5116), - [sym_comment] = ACTIONS(56), - }, - [2060] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5118), - [sym_comment] = ACTIONS(56), - }, - [2061] = { - [anon_sym_RBRACE] = ACTIONS(5118), - [sym_comment] = ACTIONS(56), - }, - [2062] = { - [sym__concat] = ACTIONS(3023), - [sym_variable_name] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(4104), - [anon_sym_RPAREN] = ACTIONS(3023), - [anon_sym_PIPE_AMP] = ACTIONS(3023), - [anon_sym_AMP_AMP] = ACTIONS(3023), - [anon_sym_PIPE_PIPE] = ACTIONS(3023), - [sym__special_characters] = ACTIONS(4104), - [anon_sym_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR] = ACTIONS(4104), - [sym_raw_string] = ACTIONS(3023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3023), - [anon_sym_BQUOTE] = ACTIONS(3023), - [anon_sym_LT_LPAREN] = ACTIONS(3023), - [anon_sym_GT_LPAREN] = ACTIONS(3023), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4104), - [sym_word] = ACTIONS(3025), - }, - [2063] = { - [sym_concatenation] = STATE(2443), - [sym_string] = STATE(2442), - [sym_simple_expansion] = STATE(2442), - [sym_string_expansion] = STATE(2442), - [sym_expansion] = STATE(2442), - [sym_command_substitution] = STATE(2442), - [sym_process_substitution] = STATE(2442), - [anon_sym_RBRACE] = ACTIONS(5118), - [sym__special_characters] = ACTIONS(5120), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5122), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), + [1796] = { + [sym__concat] = ACTIONS(1858), + [sym_variable_name] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_PIPE_AMP] = ACTIONS(1858), + [anon_sym_AMP_AMP] = ACTIONS(1858), + [anon_sym_PIPE_PIPE] = ACTIONS(1858), + [sym__special_characters] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1858), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), + [anon_sym_BQUOTE] = ACTIONS(1858), + [anon_sym_LT_LPAREN] = ACTIONS(1858), + [anon_sym_GT_LPAREN] = ACTIONS(1858), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5124), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3008), + [sym_word] = ACTIONS(1860), }, - [2064] = { - [sym__concat] = ACTIONS(3068), - [sym_variable_name] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(4112), - [anon_sym_RPAREN] = ACTIONS(3068), - [anon_sym_PIPE_AMP] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [sym__special_characters] = ACTIONS(4112), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(4112), - [sym_raw_string] = ACTIONS(3068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3068), - [anon_sym_BQUOTE] = ACTIONS(3068), - [anon_sym_LT_LPAREN] = ACTIONS(3068), - [anon_sym_GT_LPAREN] = ACTIONS(3068), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4112), - [sym_word] = ACTIONS(3070), - }, - [2065] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5126), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2066] = { - [sym__concat] = ACTIONS(3074), - [sym_variable_name] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(4116), - [anon_sym_RPAREN] = ACTIONS(3074), - [anon_sym_PIPE_AMP] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [sym__special_characters] = ACTIONS(4116), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_DOLLAR] = ACTIONS(4116), - [sym_raw_string] = ACTIONS(3074), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3074), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3074), - [anon_sym_BQUOTE] = ACTIONS(3074), - [anon_sym_LT_LPAREN] = ACTIONS(3074), - [anon_sym_GT_LPAREN] = ACTIONS(3074), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4116), - [sym_word] = ACTIONS(3076), - }, - [2067] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5128), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2068] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5118), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2069] = { - [sym__concat] = ACTIONS(3080), - [sym_variable_name] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(4120), - [anon_sym_RPAREN] = ACTIONS(3080), - [anon_sym_PIPE_AMP] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [sym__special_characters] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(3080), - [anon_sym_DOLLAR] = ACTIONS(4120), - [sym_raw_string] = ACTIONS(3080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3080), - [anon_sym_BQUOTE] = ACTIONS(3080), - [anon_sym_LT_LPAREN] = ACTIONS(3080), - [anon_sym_GT_LPAREN] = ACTIONS(3080), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4120), - [sym_word] = ACTIONS(3082), - }, - [2070] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(4098), - [anon_sym_RPAREN] = ACTIONS(2969), - [anon_sym_PIPE_AMP] = ACTIONS(2969), - [anon_sym_AMP_AMP] = ACTIONS(2969), - [anon_sym_PIPE_PIPE] = ACTIONS(2969), - [sym__special_characters] = ACTIONS(4098), - [anon_sym_DQUOTE] = ACTIONS(2969), - [anon_sym_DOLLAR] = ACTIONS(4098), - [sym_raw_string] = ACTIONS(2969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2969), - [anon_sym_BQUOTE] = ACTIONS(2969), - [anon_sym_LT_LPAREN] = ACTIONS(2969), - [anon_sym_GT_LPAREN] = ACTIONS(2969), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4098), - [sym_word] = ACTIONS(2971), - }, - [2071] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5130), - [sym_comment] = ACTIONS(56), - }, - [2072] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5132), - [sym_comment] = ACTIONS(56), - }, - [2073] = { - [anon_sym_RBRACE] = ACTIONS(5132), - [sym_comment] = ACTIONS(56), - }, - [2074] = { - [sym__concat] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(4104), - [anon_sym_RPAREN] = ACTIONS(3023), - [anon_sym_PIPE_AMP] = ACTIONS(3023), - [anon_sym_AMP_AMP] = ACTIONS(3023), - [anon_sym_PIPE_PIPE] = ACTIONS(3023), - [sym__special_characters] = ACTIONS(4104), - [anon_sym_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR] = ACTIONS(4104), - [sym_raw_string] = ACTIONS(3023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3023), - [anon_sym_BQUOTE] = ACTIONS(3023), - [anon_sym_LT_LPAREN] = ACTIONS(3023), - [anon_sym_GT_LPAREN] = ACTIONS(3023), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4104), - [sym_word] = ACTIONS(3025), - }, - [2075] = { - [sym_concatenation] = STATE(2450), - [sym_string] = STATE(2449), - [sym_simple_expansion] = STATE(2449), - [sym_string_expansion] = STATE(2449), - [sym_expansion] = STATE(2449), - [sym_command_substitution] = STATE(2449), - [sym_process_substitution] = STATE(2449), - [anon_sym_RBRACE] = ACTIONS(5132), - [sym__special_characters] = ACTIONS(5134), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5136), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), + [1797] = { + [aux_sym_concatenation_repeat1] = STATE(1797), + [sym__concat] = ACTIONS(5123), + [sym_variable_name] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_PIPE_AMP] = ACTIONS(1858), + [anon_sym_AMP_AMP] = ACTIONS(1858), + [anon_sym_PIPE_PIPE] = ACTIONS(1858), + [sym__special_characters] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1858), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), + [anon_sym_BQUOTE] = ACTIONS(1858), + [anon_sym_LT_LPAREN] = ACTIONS(1858), + [anon_sym_GT_LPAREN] = ACTIONS(1858), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5138), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3008), + [sym_word] = ACTIONS(1860), }, - [2076] = { - [sym__concat] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(4112), - [anon_sym_RPAREN] = ACTIONS(3068), - [anon_sym_PIPE_AMP] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [sym__special_characters] = ACTIONS(4112), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(4112), - [sym_raw_string] = ACTIONS(3068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3068), - [anon_sym_BQUOTE] = ACTIONS(3068), - [anon_sym_LT_LPAREN] = ACTIONS(3068), - [anon_sym_GT_LPAREN] = ACTIONS(3068), + [1798] = { + [sym__concat] = ACTIONS(1895), + [sym_variable_name] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_PIPE_AMP] = ACTIONS(1895), + [anon_sym_AMP_AMP] = ACTIONS(1895), + [anon_sym_PIPE_PIPE] = ACTIONS(1895), + [sym__special_characters] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(3013), + [sym_raw_string] = ACTIONS(1895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1895), + [anon_sym_BQUOTE] = ACTIONS(1895), + [anon_sym_LT_LPAREN] = ACTIONS(1895), + [anon_sym_GT_LPAREN] = ACTIONS(1895), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4112), - [sym_word] = ACTIONS(3070), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3013), + [sym_word] = ACTIONS(1897), }, - [2077] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5140), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2078] = { - [sym__concat] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(4116), - [anon_sym_RPAREN] = ACTIONS(3074), - [anon_sym_PIPE_AMP] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [sym__special_characters] = ACTIONS(4116), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_DOLLAR] = ACTIONS(4116), - [sym_raw_string] = ACTIONS(3074), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3074), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3074), - [anon_sym_BQUOTE] = ACTIONS(3074), - [anon_sym_LT_LPAREN] = ACTIONS(3074), - [anon_sym_GT_LPAREN] = ACTIONS(3074), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4116), - [sym_word] = ACTIONS(3076), - }, - [2079] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5142), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2080] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5132), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2081] = { - [sym__concat] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(4120), - [anon_sym_RPAREN] = ACTIONS(3080), - [anon_sym_PIPE_AMP] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [sym__special_characters] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(3080), - [anon_sym_DOLLAR] = ACTIONS(4120), - [sym_raw_string] = ACTIONS(3080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3080), - [anon_sym_BQUOTE] = ACTIONS(3080), - [anon_sym_LT_LPAREN] = ACTIONS(3080), - [anon_sym_GT_LPAREN] = ACTIONS(3080), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4120), - [sym_word] = ACTIONS(3082), - }, - [2082] = { - [sym_file_descriptor] = ACTIONS(4214), - [sym__concat] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4942), - [anon_sym_RPAREN] = ACTIONS(4214), - [anon_sym_PIPE_AMP] = ACTIONS(4214), - [anon_sym_AMP_AMP] = ACTIONS(4214), - [anon_sym_PIPE_PIPE] = ACTIONS(4214), - [anon_sym_LT] = ACTIONS(4942), - [anon_sym_GT] = ACTIONS(4942), - [anon_sym_GT_GT] = ACTIONS(4214), - [anon_sym_AMP_GT] = ACTIONS(4942), - [anon_sym_AMP_GT_GT] = ACTIONS(4214), - [anon_sym_LT_AMP] = ACTIONS(4214), - [anon_sym_GT_AMP] = ACTIONS(4214), - [anon_sym_LT_LT] = ACTIONS(4942), - [anon_sym_LT_LT_DASH] = ACTIONS(4214), - [anon_sym_LT_LT_LT] = ACTIONS(4214), - [sym__special_characters] = ACTIONS(4942), - [anon_sym_DQUOTE] = ACTIONS(4214), - [anon_sym_DOLLAR] = ACTIONS(4942), - [sym_raw_string] = ACTIONS(4214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4214), - [anon_sym_BQUOTE] = ACTIONS(4214), - [anon_sym_LT_LPAREN] = ACTIONS(4214), - [anon_sym_GT_LPAREN] = ACTIONS(4214), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4942), - }, - [2083] = { - [sym_file_descriptor] = ACTIONS(4220), - [sym__concat] = ACTIONS(4220), - [anon_sym_PIPE] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4220), - [anon_sym_PIPE_AMP] = ACTIONS(4220), - [anon_sym_AMP_AMP] = ACTIONS(4220), - [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_LT] = ACTIONS(4944), - [anon_sym_GT] = ACTIONS(4944), - [anon_sym_GT_GT] = ACTIONS(4220), - [anon_sym_AMP_GT] = ACTIONS(4944), - [anon_sym_AMP_GT_GT] = ACTIONS(4220), - [anon_sym_LT_AMP] = ACTIONS(4220), - [anon_sym_GT_AMP] = ACTIONS(4220), - [anon_sym_LT_LT] = ACTIONS(4944), - [anon_sym_LT_LT_DASH] = ACTIONS(4220), - [anon_sym_LT_LT_LT] = ACTIONS(4220), - [sym__special_characters] = ACTIONS(4944), - [anon_sym_DQUOTE] = ACTIONS(4220), - [anon_sym_DOLLAR] = ACTIONS(4944), - [sym_raw_string] = ACTIONS(4220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4220), - [anon_sym_BQUOTE] = ACTIONS(4220), - [anon_sym_LT_LPAREN] = ACTIONS(4220), - [anon_sym_GT_LPAREN] = ACTIONS(4220), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4944), - }, - [2084] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5144), - [sym_comment] = ACTIONS(56), - }, - [2085] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5146), - [sym_comment] = ACTIONS(56), - }, - [2086] = { - [anon_sym_RBRACE] = ACTIONS(5146), - [sym_comment] = ACTIONS(56), - }, - [2087] = { - [sym_file_descriptor] = ACTIONS(4269), - [sym__concat] = ACTIONS(4269), - [anon_sym_PIPE] = ACTIONS(4950), - [anon_sym_RPAREN] = ACTIONS(4269), - [anon_sym_PIPE_AMP] = ACTIONS(4269), - [anon_sym_AMP_AMP] = ACTIONS(4269), - [anon_sym_PIPE_PIPE] = ACTIONS(4269), - [anon_sym_LT] = ACTIONS(4950), - [anon_sym_GT] = ACTIONS(4950), - [anon_sym_GT_GT] = ACTIONS(4269), - [anon_sym_AMP_GT] = ACTIONS(4950), - [anon_sym_AMP_GT_GT] = ACTIONS(4269), - [anon_sym_LT_AMP] = ACTIONS(4269), - [anon_sym_GT_AMP] = ACTIONS(4269), - [anon_sym_LT_LT] = ACTIONS(4950), - [anon_sym_LT_LT_DASH] = ACTIONS(4269), - [anon_sym_LT_LT_LT] = ACTIONS(4269), - [sym__special_characters] = ACTIONS(4950), - [anon_sym_DQUOTE] = ACTIONS(4269), - [anon_sym_DOLLAR] = ACTIONS(4950), - [sym_raw_string] = ACTIONS(4269), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4269), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4269), - [anon_sym_BQUOTE] = ACTIONS(4269), - [anon_sym_LT_LPAREN] = ACTIONS(4269), - [anon_sym_GT_LPAREN] = ACTIONS(4269), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4950), - }, - [2088] = { - [sym_file_descriptor] = ACTIONS(4273), - [sym__concat] = ACTIONS(4273), - [anon_sym_PIPE] = ACTIONS(4952), - [anon_sym_RPAREN] = ACTIONS(4273), - [anon_sym_PIPE_AMP] = ACTIONS(4273), - [anon_sym_AMP_AMP] = ACTIONS(4273), - [anon_sym_PIPE_PIPE] = ACTIONS(4273), - [anon_sym_LT] = ACTIONS(4952), - [anon_sym_GT] = ACTIONS(4952), - [anon_sym_GT_GT] = ACTIONS(4273), - [anon_sym_AMP_GT] = ACTIONS(4952), - [anon_sym_AMP_GT_GT] = ACTIONS(4273), - [anon_sym_LT_AMP] = ACTIONS(4273), - [anon_sym_GT_AMP] = ACTIONS(4273), - [anon_sym_LT_LT] = ACTIONS(4952), - [anon_sym_LT_LT_DASH] = ACTIONS(4273), - [anon_sym_LT_LT_LT] = ACTIONS(4273), - [sym__special_characters] = ACTIONS(4952), - [anon_sym_DQUOTE] = ACTIONS(4273), - [anon_sym_DOLLAR] = ACTIONS(4952), - [sym_raw_string] = ACTIONS(4273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4273), - [anon_sym_BQUOTE] = ACTIONS(4273), - [anon_sym_LT_LPAREN] = ACTIONS(4273), - [anon_sym_GT_LPAREN] = ACTIONS(4273), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4952), - }, - [2089] = { - [anon_sym_PIPE] = ACTIONS(5078), - [anon_sym_RPAREN] = ACTIONS(5080), - [anon_sym_PIPE_AMP] = ACTIONS(5080), - [anon_sym_AMP_AMP] = ACTIONS(5080), - [anon_sym_PIPE_PIPE] = ACTIONS(5080), - [anon_sym_BQUOTE] = ACTIONS(5080), - [sym_comment] = ACTIONS(56), - }, - [2090] = { - [sym_file_descriptor] = ACTIONS(1790), - [sym__concat] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_RPAREN] = ACTIONS(1790), - [anon_sym_PIPE_AMP] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(1790), - [anon_sym_PIPE_PIPE] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(1790), - [anon_sym_AMP_GT] = ACTIONS(2816), - [anon_sym_AMP_GT_GT] = ACTIONS(1790), - [anon_sym_LT_AMP] = ACTIONS(1790), - [anon_sym_GT_AMP] = ACTIONS(1790), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_LT_LT_DASH] = ACTIONS(1790), - [anon_sym_LT_LT_LT] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - }, - [2091] = { - [aux_sym_concatenation_repeat1] = STATE(2091), - [sym_file_descriptor] = ACTIONS(1790), - [sym__concat] = ACTIONS(5148), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_RPAREN] = ACTIONS(1790), - [anon_sym_PIPE_AMP] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(1790), - [anon_sym_PIPE_PIPE] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(1790), - [anon_sym_AMP_GT] = ACTIONS(2816), - [anon_sym_AMP_GT_GT] = ACTIONS(1790), - [anon_sym_LT_AMP] = ACTIONS(1790), - [anon_sym_GT_AMP] = ACTIONS(1790), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_LT_LT_DASH] = ACTIONS(1790), - [anon_sym_LT_LT_LT] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - }, - [2092] = { - [sym_file_descriptor] = ACTIONS(1821), - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(2821), - [anon_sym_RPAREN] = ACTIONS(1821), - [anon_sym_PIPE_AMP] = ACTIONS(1821), - [anon_sym_AMP_AMP] = ACTIONS(1821), - [anon_sym_PIPE_PIPE] = ACTIONS(1821), - [anon_sym_LT] = ACTIONS(2821), - [anon_sym_GT] = ACTIONS(2821), - [anon_sym_GT_GT] = ACTIONS(1821), - [anon_sym_AMP_GT] = ACTIONS(2821), - [anon_sym_AMP_GT_GT] = ACTIONS(1821), - [anon_sym_LT_AMP] = ACTIONS(1821), - [anon_sym_GT_AMP] = ACTIONS(1821), - [anon_sym_LT_LT] = ACTIONS(2821), - [anon_sym_LT_LT_DASH] = ACTIONS(1821), - [anon_sym_LT_LT_LT] = ACTIONS(1821), - [sym_comment] = ACTIONS(56), - }, - [2093] = { + [1799] = { [sym_concatenation] = STATE(2458), [sym_string] = STATE(2457), [sym_simple_expansion] = STATE(2457), @@ -57208,6196 +51843,3396 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(2457), [sym_command_substitution] = STATE(2457), [sym_process_substitution] = STATE(2457), - [anon_sym_RBRACE] = ACTIONS(5151), - [sym__special_characters] = ACTIONS(5153), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5155), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(5126), + [sym__special_characters] = ACTIONS(5128), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(5130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5157), + [sym_word] = ACTIONS(5132), }, - [2094] = { - [sym_file_descriptor] = ACTIONS(1866), - [sym__concat] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_PIPE_AMP] = ACTIONS(1866), - [anon_sym_AMP_AMP] = ACTIONS(1866), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_LT] = ACTIONS(2831), - [anon_sym_GT] = ACTIONS(2831), - [anon_sym_GT_GT] = ACTIONS(1866), - [anon_sym_AMP_GT] = ACTIONS(2831), - [anon_sym_AMP_GT_GT] = ACTIONS(1866), - [anon_sym_LT_AMP] = ACTIONS(1866), - [anon_sym_GT_AMP] = ACTIONS(1866), - [anon_sym_LT_LT] = ACTIONS(2831), - [anon_sym_LT_LT_DASH] = ACTIONS(1866), - [anon_sym_LT_LT_LT] = ACTIONS(1866), + [1800] = { + [sym__concat] = ACTIONS(1940), + [sym_variable_name] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(3023), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [sym__special_characters] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(3023), + [sym_raw_string] = ACTIONS(1940), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1940), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [anon_sym_LT_LPAREN] = ACTIONS(1940), + [anon_sym_GT_LPAREN] = ACTIONS(1940), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3023), + [sym_word] = ACTIONS(1942), + }, + [1801] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5134), + }, + [1802] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5136), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1803] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(5138), [sym_comment] = ACTIONS(56), }, - [2095] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5159), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2096] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(5161), - [sym_comment] = ACTIONS(56), - }, - [2097] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2462), - [anon_sym_RBRACE] = ACTIONS(5163), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2098] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), + [1804] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2464), - [anon_sym_RBRACE] = ACTIONS(5165), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(5140), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5142), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2099] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2465), - [anon_sym_RBRACE] = ACTIONS(5151), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [1805] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2467), + [anon_sym_RBRACE] = ACTIONS(5144), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5146), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2100] = { - [sym_file_descriptor] = ACTIONS(1910), - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(2841), - [anon_sym_RPAREN] = ACTIONS(1910), - [anon_sym_PIPE_AMP] = ACTIONS(1910), - [anon_sym_AMP_AMP] = ACTIONS(1910), - [anon_sym_PIPE_PIPE] = ACTIONS(1910), - [anon_sym_LT] = ACTIONS(2841), - [anon_sym_GT] = ACTIONS(2841), - [anon_sym_GT_GT] = ACTIONS(1910), - [anon_sym_AMP_GT] = ACTIONS(2841), - [anon_sym_AMP_GT_GT] = ACTIONS(1910), - [anon_sym_LT_AMP] = ACTIONS(1910), - [anon_sym_GT_AMP] = ACTIONS(1910), - [anon_sym_LT_LT] = ACTIONS(2841), - [anon_sym_LT_LT_DASH] = ACTIONS(1910), - [anon_sym_LT_LT_LT] = ACTIONS(1910), + [1806] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2469), + [anon_sym_RBRACE] = ACTIONS(5126), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5148), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1807] = { + [sym__concat] = ACTIONS(1992), + [sym_variable_name] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(3041), + [anon_sym_PIPE_AMP] = ACTIONS(1992), + [anon_sym_AMP_AMP] = ACTIONS(1992), + [anon_sym_PIPE_PIPE] = ACTIONS(1992), + [sym__special_characters] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(1992), + [anon_sym_DOLLAR] = ACTIONS(3041), + [sym_raw_string] = ACTIONS(1992), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1992), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1992), + [anon_sym_BQUOTE] = ACTIONS(1992), + [anon_sym_LT_LPAREN] = ACTIONS(1992), + [anon_sym_GT_LPAREN] = ACTIONS(1992), [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3041), + [sym_word] = ACTIONS(1994), }, - [2101] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5167), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [1808] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5150), }, - [2102] = { - [sym_file_descriptor] = ACTIONS(1916), - [sym__concat] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(2845), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(2845), - [anon_sym_GT] = ACTIONS(2845), - [anon_sym_GT_GT] = ACTIONS(1916), - [anon_sym_AMP_GT] = ACTIONS(2845), - [anon_sym_AMP_GT_GT] = ACTIONS(1916), - [anon_sym_LT_AMP] = ACTIONS(1916), - [anon_sym_GT_AMP] = ACTIONS(1916), - [anon_sym_LT_LT] = ACTIONS(2845), - [anon_sym_LT_LT_DASH] = ACTIONS(1916), - [anon_sym_LT_LT_LT] = ACTIONS(1916), + [1809] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5152), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1810] = { + [sym__concat] = ACTIONS(2000), + [sym_variable_name] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(3047), + [anon_sym_PIPE_AMP] = ACTIONS(2000), + [anon_sym_AMP_AMP] = ACTIONS(2000), + [anon_sym_PIPE_PIPE] = ACTIONS(2000), + [sym__special_characters] = ACTIONS(3047), + [anon_sym_DQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(3047), + [sym_raw_string] = ACTIONS(2000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2000), + [anon_sym_BQUOTE] = ACTIONS(2000), + [anon_sym_LT_LPAREN] = ACTIONS(2000), + [anon_sym_GT_LPAREN] = ACTIONS(2000), [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3047), + [sym_word] = ACTIONS(2002), }, - [2103] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5151), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [1811] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5154), }, - [2104] = { - [sym_file_descriptor] = ACTIONS(2064), - [sym__concat] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2847), - [anon_sym_RPAREN] = ACTIONS(2064), - [anon_sym_PIPE_AMP] = ACTIONS(2064), - [anon_sym_AMP_AMP] = ACTIONS(2064), - [anon_sym_PIPE_PIPE] = ACTIONS(2064), - [anon_sym_LT] = ACTIONS(2847), - [anon_sym_GT] = ACTIONS(2847), - [anon_sym_GT_GT] = ACTIONS(2064), - [anon_sym_AMP_GT] = ACTIONS(2847), - [anon_sym_AMP_GT_GT] = ACTIONS(2064), - [anon_sym_LT_AMP] = ACTIONS(2064), - [anon_sym_GT_AMP] = ACTIONS(2064), - [anon_sym_LT_LT] = ACTIONS(2847), - [anon_sym_LT_LT_DASH] = ACTIONS(2064), - [anon_sym_LT_LT_LT] = ACTIONS(2064), + [1812] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5126), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1813] = { + [sym__concat] = ACTIONS(2156), + [sym_variable_name] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_PIPE_AMP] = ACTIONS(2156), + [anon_sym_AMP_AMP] = ACTIONS(2156), + [anon_sym_PIPE_PIPE] = ACTIONS(2156), + [sym__special_characters] = ACTIONS(3051), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_DOLLAR] = ACTIONS(3051), + [sym_raw_string] = ACTIONS(2156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2156), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2156), + [anon_sym_LT_LPAREN] = ACTIONS(2156), + [anon_sym_GT_LPAREN] = ACTIONS(2156), [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3051), + [sym_word] = ACTIONS(2158), }, - [2105] = { - [sym_file_descriptor] = ACTIONS(2228), - [sym__concat] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_RPAREN] = ACTIONS(2228), - [anon_sym_PIPE_AMP] = ACTIONS(2228), - [anon_sym_AMP_AMP] = ACTIONS(2228), - [anon_sym_PIPE_PIPE] = ACTIONS(2228), - [anon_sym_LT] = ACTIONS(2849), - [anon_sym_GT] = ACTIONS(2849), - [anon_sym_GT_GT] = ACTIONS(2228), - [anon_sym_AMP_GT] = ACTIONS(2849), - [anon_sym_AMP_GT_GT] = ACTIONS(2228), - [anon_sym_LT_AMP] = ACTIONS(2228), - [anon_sym_GT_AMP] = ACTIONS(2228), - [anon_sym_LT_LT] = ACTIONS(2849), - [anon_sym_LT_LT_DASH] = ACTIONS(2228), - [anon_sym_LT_LT_LT] = ACTIONS(2228), + [1814] = { + [sym__concat] = ACTIONS(2358), + [sym_variable_name] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(3053), + [anon_sym_PIPE_AMP] = ACTIONS(2358), + [anon_sym_AMP_AMP] = ACTIONS(2358), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [sym__special_characters] = ACTIONS(3053), + [anon_sym_DQUOTE] = ACTIONS(2358), + [anon_sym_DOLLAR] = ACTIONS(3053), + [sym_raw_string] = ACTIONS(2358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2358), + [anon_sym_BQUOTE] = ACTIONS(2358), + [anon_sym_LT_LPAREN] = ACTIONS(2358), + [anon_sym_GT_LPAREN] = ACTIONS(2358), [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3053), + [sym_word] = ACTIONS(2360), }, - [2106] = { - [sym_file_descriptor] = ACTIONS(4628), - [anon_sym_PIPE] = ACTIONS(5169), - [anon_sym_RPAREN] = ACTIONS(4628), - [anon_sym_PIPE_AMP] = ACTIONS(4628), - [anon_sym_AMP_AMP] = ACTIONS(4628), - [anon_sym_PIPE_PIPE] = ACTIONS(4628), - [anon_sym_LT] = ACTIONS(5169), - [anon_sym_GT] = ACTIONS(5169), - [anon_sym_GT_GT] = ACTIONS(4628), - [anon_sym_AMP_GT] = ACTIONS(5169), - [anon_sym_AMP_GT_GT] = ACTIONS(4628), - [anon_sym_LT_AMP] = ACTIONS(4628), - [anon_sym_GT_AMP] = ACTIONS(4628), - [anon_sym_LT_LT] = ACTIONS(5169), - [anon_sym_LT_LT_DASH] = ACTIONS(4628), - [anon_sym_LT_LT_LT] = ACTIONS(4628), - [anon_sym_BQUOTE] = ACTIONS(4628), - [sym_comment] = ACTIONS(56), - }, - [2107] = { - [sym_file_descriptor] = ACTIONS(1790), - [sym__concat] = ACTIONS(1790), - [sym_variable_name] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_PIPE_AMP] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(1790), - [anon_sym_PIPE_PIPE] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(1790), - [anon_sym_AMP_GT] = ACTIONS(2816), - [anon_sym_AMP_GT_GT] = ACTIONS(1790), - [anon_sym_LT_AMP] = ACTIONS(1790), - [anon_sym_GT_AMP] = ACTIONS(1790), - [sym__special_characters] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_LT_LPAREN] = ACTIONS(1790), - [anon_sym_GT_LPAREN] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2816), - }, - [2108] = { - [aux_sym_concatenation_repeat1] = STATE(2108), - [sym_file_descriptor] = ACTIONS(1790), - [sym__concat] = ACTIONS(5171), - [sym_variable_name] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_PIPE_AMP] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(1790), - [anon_sym_PIPE_PIPE] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(1790), - [anon_sym_AMP_GT] = ACTIONS(2816), - [anon_sym_AMP_GT_GT] = ACTIONS(1790), - [anon_sym_LT_AMP] = ACTIONS(1790), - [anon_sym_GT_AMP] = ACTIONS(1790), - [sym__special_characters] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(1790), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [anon_sym_LT_LPAREN] = ACTIONS(1790), - [anon_sym_GT_LPAREN] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2816), - }, - [2109] = { - [sym_file_descriptor] = ACTIONS(1821), - [sym__concat] = ACTIONS(1821), - [sym_variable_name] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(2821), - [anon_sym_PIPE_AMP] = ACTIONS(1821), - [anon_sym_AMP_AMP] = ACTIONS(1821), - [anon_sym_PIPE_PIPE] = ACTIONS(1821), - [anon_sym_LT] = ACTIONS(2821), - [anon_sym_GT] = ACTIONS(2821), - [anon_sym_GT_GT] = ACTIONS(1821), - [anon_sym_AMP_GT] = ACTIONS(2821), - [anon_sym_AMP_GT_GT] = ACTIONS(1821), - [anon_sym_LT_AMP] = ACTIONS(1821), - [anon_sym_GT_AMP] = ACTIONS(1821), - [sym__special_characters] = ACTIONS(2821), - [anon_sym_DQUOTE] = ACTIONS(1821), - [anon_sym_DOLLAR] = ACTIONS(2821), - [sym_raw_string] = ACTIONS(1821), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1821), - [anon_sym_BQUOTE] = ACTIONS(1821), - [anon_sym_LT_LPAREN] = ACTIONS(1821), - [anon_sym_GT_LPAREN] = ACTIONS(1821), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2821), - }, - [2110] = { - [sym_concatenation] = STATE(2470), - [sym_string] = STATE(2469), - [sym_simple_expansion] = STATE(2469), - [sym_string_expansion] = STATE(2469), - [sym_expansion] = STATE(2469), - [sym_command_substitution] = STATE(2469), - [sym_process_substitution] = STATE(2469), - [anon_sym_RBRACE] = ACTIONS(5174), - [sym__special_characters] = ACTIONS(5176), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5178), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), + [1815] = { + [sym__concat] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_PIPE_AMP] = ACTIONS(1858), + [anon_sym_AMP_AMP] = ACTIONS(1858), + [anon_sym_PIPE_PIPE] = ACTIONS(1858), + [sym__special_characters] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1858), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), + [anon_sym_BQUOTE] = ACTIONS(1858), + [anon_sym_LT_LPAREN] = ACTIONS(1858), + [anon_sym_GT_LPAREN] = ACTIONS(1858), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5180), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3008), + [sym_word] = ACTIONS(1860), }, - [2111] = { - [sym_file_descriptor] = ACTIONS(1866), - [sym__concat] = ACTIONS(1866), - [sym_variable_name] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_PIPE_AMP] = ACTIONS(1866), - [anon_sym_AMP_AMP] = ACTIONS(1866), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_LT] = ACTIONS(2831), - [anon_sym_GT] = ACTIONS(2831), - [anon_sym_GT_GT] = ACTIONS(1866), - [anon_sym_AMP_GT] = ACTIONS(2831), - [anon_sym_AMP_GT_GT] = ACTIONS(1866), - [anon_sym_LT_AMP] = ACTIONS(1866), - [anon_sym_GT_AMP] = ACTIONS(1866), - [sym__special_characters] = ACTIONS(2831), - [anon_sym_DQUOTE] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(2831), - [sym_raw_string] = ACTIONS(1866), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1866), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1866), - [anon_sym_BQUOTE] = ACTIONS(1866), - [anon_sym_LT_LPAREN] = ACTIONS(1866), - [anon_sym_GT_LPAREN] = ACTIONS(1866), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2831), - }, - [2112] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5182), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2113] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(5184), - [sym_comment] = ACTIONS(56), - }, - [2114] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2474), - [anon_sym_RBRACE] = ACTIONS(5186), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2115] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2476), - [anon_sym_RBRACE] = ACTIONS(5188), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2116] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2477), - [anon_sym_RBRACE] = ACTIONS(5174), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2117] = { - [sym_file_descriptor] = ACTIONS(1910), - [sym__concat] = ACTIONS(1910), - [sym_variable_name] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(2841), - [anon_sym_PIPE_AMP] = ACTIONS(1910), - [anon_sym_AMP_AMP] = ACTIONS(1910), - [anon_sym_PIPE_PIPE] = ACTIONS(1910), - [anon_sym_LT] = ACTIONS(2841), - [anon_sym_GT] = ACTIONS(2841), - [anon_sym_GT_GT] = ACTIONS(1910), - [anon_sym_AMP_GT] = ACTIONS(2841), - [anon_sym_AMP_GT_GT] = ACTIONS(1910), - [anon_sym_LT_AMP] = ACTIONS(1910), - [anon_sym_GT_AMP] = ACTIONS(1910), - [sym__special_characters] = ACTIONS(2841), - [anon_sym_DQUOTE] = ACTIONS(1910), - [anon_sym_DOLLAR] = ACTIONS(2841), - [sym_raw_string] = ACTIONS(1910), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1910), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1910), - [anon_sym_BQUOTE] = ACTIONS(1910), - [anon_sym_LT_LPAREN] = ACTIONS(1910), - [anon_sym_GT_LPAREN] = ACTIONS(1910), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2841), - }, - [2118] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5190), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2119] = { - [sym_file_descriptor] = ACTIONS(1916), - [sym__concat] = ACTIONS(1916), - [sym_variable_name] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(2845), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(2845), - [anon_sym_GT] = ACTIONS(2845), - [anon_sym_GT_GT] = ACTIONS(1916), - [anon_sym_AMP_GT] = ACTIONS(2845), - [anon_sym_AMP_GT_GT] = ACTIONS(1916), - [anon_sym_LT_AMP] = ACTIONS(1916), - [anon_sym_GT_AMP] = ACTIONS(1916), - [sym__special_characters] = ACTIONS(2845), - [anon_sym_DQUOTE] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(2845), - [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(56), - [sym_word] = ACTIONS(2845), - }, - [2120] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5174), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2121] = { - [sym_file_descriptor] = ACTIONS(2064), - [sym__concat] = ACTIONS(2064), - [sym_variable_name] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2847), - [anon_sym_PIPE_AMP] = ACTIONS(2064), - [anon_sym_AMP_AMP] = ACTIONS(2064), - [anon_sym_PIPE_PIPE] = ACTIONS(2064), - [anon_sym_LT] = ACTIONS(2847), - [anon_sym_GT] = ACTIONS(2847), - [anon_sym_GT_GT] = ACTIONS(2064), - [anon_sym_AMP_GT] = ACTIONS(2847), - [anon_sym_AMP_GT_GT] = ACTIONS(2064), - [anon_sym_LT_AMP] = ACTIONS(2064), - [anon_sym_GT_AMP] = ACTIONS(2064), - [sym__special_characters] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2064), - [anon_sym_DOLLAR] = ACTIONS(2847), - [sym_raw_string] = ACTIONS(2064), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2064), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2064), - [anon_sym_BQUOTE] = ACTIONS(2064), - [anon_sym_LT_LPAREN] = ACTIONS(2064), - [anon_sym_GT_LPAREN] = ACTIONS(2064), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2847), - }, - [2122] = { - [sym_file_descriptor] = ACTIONS(2228), - [sym__concat] = ACTIONS(2228), - [sym_variable_name] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_PIPE_AMP] = ACTIONS(2228), - [anon_sym_AMP_AMP] = ACTIONS(2228), - [anon_sym_PIPE_PIPE] = ACTIONS(2228), - [anon_sym_LT] = ACTIONS(2849), - [anon_sym_GT] = ACTIONS(2849), - [anon_sym_GT_GT] = ACTIONS(2228), - [anon_sym_AMP_GT] = ACTIONS(2849), - [anon_sym_AMP_GT_GT] = ACTIONS(2228), - [anon_sym_LT_AMP] = ACTIONS(2228), - [anon_sym_GT_AMP] = ACTIONS(2228), - [sym__special_characters] = ACTIONS(2849), - [anon_sym_DQUOTE] = ACTIONS(2228), - [anon_sym_DOLLAR] = ACTIONS(2849), - [sym_raw_string] = ACTIONS(2228), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2228), - [anon_sym_BQUOTE] = ACTIONS(2228), - [anon_sym_LT_LPAREN] = ACTIONS(2228), - [anon_sym_GT_LPAREN] = ACTIONS(2228), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2849), - }, - [2123] = { - [sym_file_redirect] = STATE(2416), - [sym_file_descriptor] = ACTIONS(3427), - [anon_sym_PIPE] = ACTIONS(5078), - [anon_sym_PIPE_AMP] = ACTIONS(5080), - [anon_sym_AMP_AMP] = ACTIONS(5080), - [anon_sym_PIPE_PIPE] = ACTIONS(5080), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_GT] = ACTIONS(3429), - [anon_sym_GT_GT] = ACTIONS(3431), - [anon_sym_AMP_GT] = ACTIONS(3429), - [anon_sym_AMP_GT_GT] = ACTIONS(3431), - [anon_sym_LT_AMP] = ACTIONS(3431), - [anon_sym_GT_AMP] = ACTIONS(3431), - [anon_sym_BQUOTE] = ACTIONS(5080), - [sym_comment] = ACTIONS(56), - }, - [2124] = { - [sym_concatenation] = STATE(2419), - [sym_string] = STATE(2480), - [sym_simple_expansion] = STATE(2480), - [sym_string_expansion] = STATE(2480), - [sym_expansion] = STATE(2480), - [sym_command_substitution] = STATE(2480), - [sym_process_substitution] = STATE(2480), - [sym__special_characters] = ACTIONS(5192), - [anon_sym_DQUOTE] = ACTIONS(4493), - [anon_sym_DOLLAR] = ACTIONS(4495), - [sym_raw_string] = ACTIONS(5194), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4501), - [anon_sym_BQUOTE] = ACTIONS(4503), - [anon_sym_LT_LPAREN] = ACTIONS(4505), - [anon_sym_GT_LPAREN] = ACTIONS(4505), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5196), - }, - [2125] = { - [aux_sym_concatenation_repeat1] = STATE(2482), - [sym__concat] = ACTIONS(5198), - [anon_sym_PIPE] = ACTIONS(732), - [anon_sym_PIPE_AMP] = ACTIONS(728), - [anon_sym_AMP_AMP] = ACTIONS(728), - [anon_sym_PIPE_PIPE] = ACTIONS(728), - [anon_sym_BQUOTE] = ACTIONS(728), - [sym_comment] = ACTIONS(56), - }, - [2126] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(2484), - [anon_sym_DQUOTE] = ACTIONS(5200), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [2127] = { - [sym_string] = STATE(2487), - [anon_sym_DQUOTE] = ACTIONS(4493), - [anon_sym_DOLLAR] = ACTIONS(5202), - [anon_sym_POUND] = ACTIONS(5202), - [anon_sym_DASH] = ACTIONS(5202), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5204), - [anon_sym_STAR] = ACTIONS(5202), - [anon_sym_AT] = ACTIONS(5202), - [anon_sym_QMARK] = ACTIONS(5202), - [anon_sym_0] = ACTIONS(5206), - [anon_sym__] = ACTIONS(5206), - }, - [2128] = { - [aux_sym_concatenation_repeat1] = STATE(2482), - [sym__concat] = ACTIONS(5198), - [anon_sym_PIPE] = ACTIONS(744), - [anon_sym_PIPE_AMP] = ACTIONS(742), - [anon_sym_AMP_AMP] = ACTIONS(742), - [anon_sym_PIPE_PIPE] = ACTIONS(742), - [anon_sym_BQUOTE] = ACTIONS(742), - [sym_comment] = ACTIONS(56), - }, - [2129] = { - [sym_subscript] = STATE(2492), - [sym_variable_name] = ACTIONS(5208), - [anon_sym_DOLLAR] = ACTIONS(5210), - [anon_sym_POUND] = ACTIONS(5212), - [anon_sym_DASH] = ACTIONS(5210), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5214), - [anon_sym_STAR] = ACTIONS(5210), - [anon_sym_AT] = ACTIONS(5210), - [anon_sym_QMARK] = ACTIONS(5210), - [anon_sym_0] = ACTIONS(5216), - [anon_sym__] = ACTIONS(5216), - }, - [2130] = { - [sym_for_statement] = STATE(2493), - [sym_while_statement] = STATE(2493), - [sym_if_statement] = STATE(2493), - [sym_case_statement] = STATE(2493), - [sym_function_definition] = STATE(2493), - [sym_subshell] = STATE(2493), - [sym_pipeline] = STATE(2493), - [sym_list] = STATE(2493), - [sym_bracket_command] = STATE(2493), - [sym_command] = STATE(2493), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(2494), - [sym_declaration_command] = STATE(2493), - [sym_unset_command] = STATE(2493), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [2131] = { - [sym_for_statement] = STATE(2495), - [sym_while_statement] = STATE(2495), - [sym_if_statement] = STATE(2495), - [sym_case_statement] = STATE(2495), - [sym_function_definition] = STATE(2495), - [sym_subshell] = STATE(2495), - [sym_pipeline] = STATE(2495), - [sym_list] = STATE(2495), - [sym_bracket_command] = STATE(2495), - [sym_command] = STATE(2495), - [sym_command_name] = STATE(186), - [sym_variable_assignment] = STATE(2496), - [sym_declaration_command] = STATE(2495), - [sym_unset_command] = STATE(2495), - [sym_subscript] = STATE(188), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [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(189), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(298), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(300), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(302), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(304), - [anon_sym_typeset] = ACTIONS(304), - [anon_sym_export] = ACTIONS(304), - [anon_sym_readonly] = ACTIONS(304), - [anon_sym_local] = ACTIONS(304), - [anon_sym_unset] = ACTIONS(306), - [anon_sym_unsetenv] = ACTIONS(306), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(308), - [anon_sym_DQUOTE] = ACTIONS(310), - [anon_sym_DOLLAR] = ACTIONS(312), - [sym_raw_string] = ACTIONS(314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(318), - [anon_sym_BQUOTE] = ACTIONS(320), - [anon_sym_LT_LPAREN] = ACTIONS(322), - [anon_sym_GT_LPAREN] = ACTIONS(322), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(324), - }, - [2132] = { - [sym_for_statement] = STATE(2497), - [sym_while_statement] = STATE(2497), - [sym_if_statement] = STATE(2497), - [sym_case_statement] = STATE(2497), - [sym_function_definition] = STATE(2497), - [sym_subshell] = STATE(2497), - [sym_pipeline] = STATE(2497), - [sym_list] = STATE(2497), - [sym_bracket_command] = STATE(2497), - [sym_command] = STATE(2497), - [sym_command_name] = STATE(166), - [sym_variable_assignment] = STATE(2498), - [sym_declaration_command] = STATE(2497), - [sym_unset_command] = STATE(2497), - [sym_subscript] = STATE(168), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(169), - [sym_string] = STATE(159), - [sym_simple_expansion] = STATE(159), - [sym_string_expansion] = STATE(159), - [sym_expansion] = STATE(159), - [sym_command_substitution] = STATE(159), - [sym_process_substitution] = STATE(159), - [aux_sym_command_repeat1] = STATE(170), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(258), - [anon_sym_for] = ACTIONS(260), - [anon_sym_while] = ACTIONS(262), - [anon_sym_if] = ACTIONS(264), - [anon_sym_case] = ACTIONS(266), - [anon_sym_function] = ACTIONS(268), - [anon_sym_LPAREN] = ACTIONS(270), - [anon_sym_LBRACK] = ACTIONS(272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(274), - [anon_sym_declare] = ACTIONS(276), - [anon_sym_typeset] = ACTIONS(276), - [anon_sym_export] = ACTIONS(276), - [anon_sym_readonly] = ACTIONS(276), - [anon_sym_local] = ACTIONS(276), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(280), - [anon_sym_DQUOTE] = ACTIONS(282), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym_raw_string] = ACTIONS(286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(290), - [anon_sym_BQUOTE] = ACTIONS(292), - [anon_sym_LT_LPAREN] = ACTIONS(294), - [anon_sym_GT_LPAREN] = ACTIONS(294), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(296), - }, - [2133] = { - [sym__concat] = ACTIONS(2969), - [sym_variable_name] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(4098), - [anon_sym_PIPE_AMP] = ACTIONS(2969), - [anon_sym_AMP_AMP] = ACTIONS(2969), - [anon_sym_PIPE_PIPE] = ACTIONS(2969), - [sym__special_characters] = ACTIONS(4098), - [anon_sym_DQUOTE] = ACTIONS(2969), - [anon_sym_DOLLAR] = ACTIONS(4098), - [sym_raw_string] = ACTIONS(2969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2969), - [anon_sym_BQUOTE] = ACTIONS(2969), - [anon_sym_LT_LPAREN] = ACTIONS(2969), - [anon_sym_GT_LPAREN] = ACTIONS(2969), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4098), - [sym_word] = ACTIONS(2971), - }, - [2134] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5218), - [sym_comment] = ACTIONS(56), - }, - [2135] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5220), - [sym_comment] = ACTIONS(56), - }, - [2136] = { - [anon_sym_RBRACE] = ACTIONS(5220), - [sym_comment] = ACTIONS(56), - }, - [2137] = { - [sym__concat] = ACTIONS(3023), - [sym_variable_name] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(4104), - [anon_sym_PIPE_AMP] = ACTIONS(3023), - [anon_sym_AMP_AMP] = ACTIONS(3023), - [anon_sym_PIPE_PIPE] = ACTIONS(3023), - [sym__special_characters] = ACTIONS(4104), - [anon_sym_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR] = ACTIONS(4104), - [sym_raw_string] = ACTIONS(3023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3023), - [anon_sym_BQUOTE] = ACTIONS(3023), - [anon_sym_LT_LPAREN] = ACTIONS(3023), - [anon_sym_GT_LPAREN] = ACTIONS(3023), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4104), - [sym_word] = ACTIONS(3025), - }, - [2138] = { - [sym_concatenation] = STATE(2503), - [sym_string] = STATE(2502), - [sym_simple_expansion] = STATE(2502), - [sym_string_expansion] = STATE(2502), - [sym_expansion] = STATE(2502), - [sym_command_substitution] = STATE(2502), - [sym_process_substitution] = STATE(2502), - [anon_sym_RBRACE] = ACTIONS(5220), - [sym__special_characters] = ACTIONS(5222), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5224), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), + [1816] = { + [aux_sym_concatenation_repeat1] = STATE(1816), + [sym__concat] = ACTIONS(5156), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_PIPE_AMP] = ACTIONS(1858), + [anon_sym_AMP_AMP] = ACTIONS(1858), + [anon_sym_PIPE_PIPE] = ACTIONS(1858), + [sym__special_characters] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1858), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), + [anon_sym_BQUOTE] = ACTIONS(1858), + [anon_sym_LT_LPAREN] = ACTIONS(1858), + [anon_sym_GT_LPAREN] = ACTIONS(1858), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5226), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3008), + [sym_word] = ACTIONS(1860), }, - [2139] = { - [sym__concat] = ACTIONS(3068), - [sym_variable_name] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(4112), - [anon_sym_PIPE_AMP] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [sym__special_characters] = ACTIONS(4112), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(4112), - [sym_raw_string] = ACTIONS(3068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3068), - [anon_sym_BQUOTE] = ACTIONS(3068), - [anon_sym_LT_LPAREN] = ACTIONS(3068), - [anon_sym_GT_LPAREN] = ACTIONS(3068), + [1817] = { + [sym__concat] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_PIPE_AMP] = ACTIONS(1895), + [anon_sym_AMP_AMP] = ACTIONS(1895), + [anon_sym_PIPE_PIPE] = ACTIONS(1895), + [sym__special_characters] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(3013), + [sym_raw_string] = ACTIONS(1895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1895), + [anon_sym_BQUOTE] = ACTIONS(1895), + [anon_sym_LT_LPAREN] = ACTIONS(1895), + [anon_sym_GT_LPAREN] = ACTIONS(1895), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4112), - [sym_word] = ACTIONS(3070), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3013), + [sym_word] = ACTIONS(1897), }, - [2140] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5228), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2141] = { - [sym__concat] = ACTIONS(3074), - [sym_variable_name] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(4116), - [anon_sym_PIPE_AMP] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [sym__special_characters] = ACTIONS(4116), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_DOLLAR] = ACTIONS(4116), - [sym_raw_string] = ACTIONS(3074), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3074), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3074), - [anon_sym_BQUOTE] = ACTIONS(3074), - [anon_sym_LT_LPAREN] = ACTIONS(3074), - [anon_sym_GT_LPAREN] = ACTIONS(3074), + [1818] = { + [sym_concatenation] = STATE(2476), + [sym_string] = STATE(2475), + [sym_simple_expansion] = STATE(2475), + [sym_string_expansion] = STATE(2475), + [sym_expansion] = STATE(2475), + [sym_command_substitution] = STATE(2475), + [sym_process_substitution] = STATE(2475), + [anon_sym_RBRACE] = ACTIONS(5159), + [sym__special_characters] = ACTIONS(5161), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(5163), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4116), - [sym_word] = ACTIONS(3076), + [sym_word] = ACTIONS(5165), }, - [2142] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5230), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2143] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5220), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2144] = { - [sym__concat] = ACTIONS(3080), - [sym_variable_name] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(4120), - [anon_sym_PIPE_AMP] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [sym__special_characters] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(3080), - [anon_sym_DOLLAR] = ACTIONS(4120), - [sym_raw_string] = ACTIONS(3080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3080), - [anon_sym_BQUOTE] = ACTIONS(3080), - [anon_sym_LT_LPAREN] = ACTIONS(3080), - [anon_sym_GT_LPAREN] = ACTIONS(3080), + [1819] = { + [sym__concat] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(3023), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [sym__special_characters] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(3023), + [sym_raw_string] = ACTIONS(1940), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1940), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [anon_sym_LT_LPAREN] = ACTIONS(1940), + [anon_sym_GT_LPAREN] = ACTIONS(1940), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4120), - [sym_word] = ACTIONS(3082), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3023), + [sym_word] = ACTIONS(1942), }, - [2145] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(4098), - [anon_sym_PIPE_AMP] = ACTIONS(2969), - [anon_sym_AMP_AMP] = ACTIONS(2969), - [anon_sym_PIPE_PIPE] = ACTIONS(2969), - [sym__special_characters] = ACTIONS(4098), - [anon_sym_DQUOTE] = ACTIONS(2969), - [anon_sym_DOLLAR] = ACTIONS(4098), - [sym_raw_string] = ACTIONS(2969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2969), - [anon_sym_BQUOTE] = ACTIONS(2969), - [anon_sym_LT_LPAREN] = ACTIONS(2969), - [anon_sym_GT_LPAREN] = ACTIONS(2969), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4098), - [sym_word] = ACTIONS(2971), + [1820] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5167), }, - [2146] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5232), + [1821] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5169), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1822] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(5171), [sym_comment] = ACTIONS(56), }, - [2147] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5234), + [1823] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2482), + [anon_sym_RBRACE] = ACTIONS(5173), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5175), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1824] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2485), + [anon_sym_RBRACE] = ACTIONS(5177), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5179), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1825] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2487), + [anon_sym_RBRACE] = ACTIONS(5159), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5181), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1826] = { + [sym__concat] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(3041), + [anon_sym_PIPE_AMP] = ACTIONS(1992), + [anon_sym_AMP_AMP] = ACTIONS(1992), + [anon_sym_PIPE_PIPE] = ACTIONS(1992), + [sym__special_characters] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(1992), + [anon_sym_DOLLAR] = ACTIONS(3041), + [sym_raw_string] = ACTIONS(1992), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1992), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1992), + [anon_sym_BQUOTE] = ACTIONS(1992), + [anon_sym_LT_LPAREN] = ACTIONS(1992), + [anon_sym_GT_LPAREN] = ACTIONS(1992), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3041), + [sym_word] = ACTIONS(1994), + }, + [1827] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5183), + }, + [1828] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5185), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1829] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(3047), + [anon_sym_PIPE_AMP] = ACTIONS(2000), + [anon_sym_AMP_AMP] = ACTIONS(2000), + [anon_sym_PIPE_PIPE] = ACTIONS(2000), + [sym__special_characters] = ACTIONS(3047), + [anon_sym_DQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(3047), + [sym_raw_string] = ACTIONS(2000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2000), + [anon_sym_BQUOTE] = ACTIONS(2000), + [anon_sym_LT_LPAREN] = ACTIONS(2000), + [anon_sym_GT_LPAREN] = ACTIONS(2000), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3047), + [sym_word] = ACTIONS(2002), + }, + [1830] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5187), + }, + [1831] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5159), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1832] = { + [sym__concat] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_PIPE_AMP] = ACTIONS(2156), + [anon_sym_AMP_AMP] = ACTIONS(2156), + [anon_sym_PIPE_PIPE] = ACTIONS(2156), + [sym__special_characters] = ACTIONS(3051), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_DOLLAR] = ACTIONS(3051), + [sym_raw_string] = ACTIONS(2156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2156), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2156), + [anon_sym_LT_LPAREN] = ACTIONS(2156), + [anon_sym_GT_LPAREN] = ACTIONS(2156), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3051), + [sym_word] = ACTIONS(2158), + }, + [1833] = { + [sym__concat] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(3053), + [anon_sym_PIPE_AMP] = ACTIONS(2358), + [anon_sym_AMP_AMP] = ACTIONS(2358), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [sym__special_characters] = ACTIONS(3053), + [anon_sym_DQUOTE] = ACTIONS(2358), + [anon_sym_DOLLAR] = ACTIONS(3053), + [sym_raw_string] = ACTIONS(2358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2358), + [anon_sym_BQUOTE] = ACTIONS(2358), + [anon_sym_LT_LPAREN] = ACTIONS(2358), + [anon_sym_GT_LPAREN] = ACTIONS(2358), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3053), + [sym_word] = ACTIONS(2360), + }, + [1834] = { + [sym_file_descriptor] = ACTIONS(3235), + [sym__concat] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_PIPE_AMP] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_EQ_TILDE] = ACTIONS(4540), + [anon_sym_LT] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_GT_GT] = ACTIONS(3235), + [anon_sym_AMP_GT] = ACTIONS(4540), + [anon_sym_AMP_GT_GT] = ACTIONS(3235), + [anon_sym_LT_AMP] = ACTIONS(3235), + [anon_sym_GT_AMP] = ACTIONS(3235), + [anon_sym_LT_LT] = ACTIONS(4540), + [anon_sym_LT_LT_DASH] = ACTIONS(3235), + [anon_sym_LT_LT_LT] = ACTIONS(3235), + [sym__special_characters] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_DOLLAR] = ACTIONS(4540), + [sym_raw_string] = ACTIONS(3235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3235), + [anon_sym_BQUOTE] = ACTIONS(3235), + [anon_sym_LT_LPAREN] = ACTIONS(3235), + [anon_sym_GT_LPAREN] = ACTIONS(3235), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3237), + }, + [1835] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(5189), [sym_comment] = ACTIONS(56), }, - [2148] = { - [anon_sym_RBRACE] = ACTIONS(5234), + [1836] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(5191), [sym_comment] = ACTIONS(56), }, - [2149] = { - [sym__concat] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(4104), - [anon_sym_PIPE_AMP] = ACTIONS(3023), - [anon_sym_AMP_AMP] = ACTIONS(3023), - [anon_sym_PIPE_PIPE] = ACTIONS(3023), - [sym__special_characters] = ACTIONS(4104), - [anon_sym_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR] = ACTIONS(4104), - [sym_raw_string] = ACTIONS(3023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3023), - [anon_sym_BQUOTE] = ACTIONS(3023), - [anon_sym_LT_LPAREN] = ACTIONS(3023), - [anon_sym_GT_LPAREN] = ACTIONS(3023), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4104), - [sym_word] = ACTIONS(3025), - }, - [2150] = { - [sym_concatenation] = STATE(2510), - [sym_string] = STATE(2509), - [sym_simple_expansion] = STATE(2509), - [sym_string_expansion] = STATE(2509), - [sym_expansion] = STATE(2509), - [sym_command_substitution] = STATE(2509), - [sym_process_substitution] = STATE(2509), - [anon_sym_RBRACE] = ACTIONS(5234), - [sym__special_characters] = ACTIONS(5236), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5238), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5240), - }, - [2151] = { - [sym__concat] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(4112), - [anon_sym_PIPE_AMP] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [sym__special_characters] = ACTIONS(4112), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(4112), - [sym_raw_string] = ACTIONS(3068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3068), - [anon_sym_BQUOTE] = ACTIONS(3068), - [anon_sym_LT_LPAREN] = ACTIONS(3068), - [anon_sym_GT_LPAREN] = ACTIONS(3068), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4112), - [sym_word] = ACTIONS(3070), - }, - [2152] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5242), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2153] = { - [sym__concat] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(4116), - [anon_sym_PIPE_AMP] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [sym__special_characters] = ACTIONS(4116), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_DOLLAR] = ACTIONS(4116), - [sym_raw_string] = ACTIONS(3074), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3074), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3074), - [anon_sym_BQUOTE] = ACTIONS(3074), - [anon_sym_LT_LPAREN] = ACTIONS(3074), - [anon_sym_GT_LPAREN] = ACTIONS(3074), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4116), - [sym_word] = ACTIONS(3076), - }, - [2154] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5244), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2155] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5234), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2156] = { - [sym__concat] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(4120), - [anon_sym_PIPE_AMP] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [sym__special_characters] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(3080), - [anon_sym_DOLLAR] = ACTIONS(4120), - [sym_raw_string] = ACTIONS(3080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3080), - [anon_sym_BQUOTE] = ACTIONS(3080), - [anon_sym_LT_LPAREN] = ACTIONS(3080), - [anon_sym_GT_LPAREN] = ACTIONS(3080), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4120), - [sym_word] = ACTIONS(3082), - }, - [2157] = { - [sym_file_descriptor] = ACTIONS(4214), - [sym__concat] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4942), - [anon_sym_PIPE_AMP] = ACTIONS(4214), - [anon_sym_AMP_AMP] = ACTIONS(4214), - [anon_sym_PIPE_PIPE] = ACTIONS(4214), - [anon_sym_LT] = ACTIONS(4942), - [anon_sym_GT] = ACTIONS(4942), - [anon_sym_GT_GT] = ACTIONS(4214), - [anon_sym_AMP_GT] = ACTIONS(4942), - [anon_sym_AMP_GT_GT] = ACTIONS(4214), - [anon_sym_LT_AMP] = ACTIONS(4214), - [anon_sym_GT_AMP] = ACTIONS(4214), - [anon_sym_LT_LT] = ACTIONS(4942), - [anon_sym_LT_LT_DASH] = ACTIONS(4214), - [anon_sym_LT_LT_LT] = ACTIONS(4214), - [sym__special_characters] = ACTIONS(4942), - [anon_sym_DQUOTE] = ACTIONS(4214), - [anon_sym_DOLLAR] = ACTIONS(4942), - [sym_raw_string] = ACTIONS(4214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4214), - [anon_sym_BQUOTE] = ACTIONS(4214), - [anon_sym_LT_LPAREN] = ACTIONS(4214), - [anon_sym_GT_LPAREN] = ACTIONS(4214), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4942), - }, - [2158] = { - [sym_file_descriptor] = ACTIONS(4220), - [sym__concat] = ACTIONS(4220), - [anon_sym_PIPE] = ACTIONS(4944), - [anon_sym_PIPE_AMP] = ACTIONS(4220), - [anon_sym_AMP_AMP] = ACTIONS(4220), - [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_LT] = ACTIONS(4944), - [anon_sym_GT] = ACTIONS(4944), - [anon_sym_GT_GT] = ACTIONS(4220), - [anon_sym_AMP_GT] = ACTIONS(4944), - [anon_sym_AMP_GT_GT] = ACTIONS(4220), - [anon_sym_LT_AMP] = ACTIONS(4220), - [anon_sym_GT_AMP] = ACTIONS(4220), - [anon_sym_LT_LT] = ACTIONS(4944), - [anon_sym_LT_LT_DASH] = ACTIONS(4220), - [anon_sym_LT_LT_LT] = ACTIONS(4220), - [sym__special_characters] = ACTIONS(4944), - [anon_sym_DQUOTE] = ACTIONS(4220), - [anon_sym_DOLLAR] = ACTIONS(4944), - [sym_raw_string] = ACTIONS(4220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4220), - [anon_sym_BQUOTE] = ACTIONS(4220), - [anon_sym_LT_LPAREN] = ACTIONS(4220), - [anon_sym_GT_LPAREN] = ACTIONS(4220), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4944), - }, - [2159] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5246), + [1837] = { + [anon_sym_RBRACE] = ACTIONS(5191), [sym_comment] = ACTIONS(56), }, - [2160] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5248), + [1838] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2494), + [anon_sym_RBRACE] = ACTIONS(5193), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1839] = { + [sym_file_descriptor] = ACTIONS(3297), + [sym__concat] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(4548), + [anon_sym_PIPE_AMP] = ACTIONS(3297), + [anon_sym_AMP_AMP] = ACTIONS(3297), + [anon_sym_PIPE_PIPE] = ACTIONS(3297), + [anon_sym_EQ_TILDE] = ACTIONS(4548), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4548), + [anon_sym_GT_GT] = ACTIONS(3297), + [anon_sym_AMP_GT] = ACTIONS(4548), + [anon_sym_AMP_GT_GT] = ACTIONS(3297), + [anon_sym_LT_AMP] = ACTIONS(3297), + [anon_sym_GT_AMP] = ACTIONS(3297), + [anon_sym_LT_LT] = ACTIONS(4548), + [anon_sym_LT_LT_DASH] = ACTIONS(3297), + [anon_sym_LT_LT_LT] = ACTIONS(3297), + [sym__special_characters] = ACTIONS(4548), + [anon_sym_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(4548), + [sym_raw_string] = ACTIONS(3297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3297), + [anon_sym_BQUOTE] = ACTIONS(3297), + [anon_sym_LT_LPAREN] = ACTIONS(3297), + [anon_sym_GT_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3299), + }, + [1840] = { + [sym_concatenation] = STATE(2497), + [sym_string] = STATE(2496), + [sym_simple_expansion] = STATE(2496), + [sym_string_expansion] = STATE(2496), + [sym_expansion] = STATE(2496), + [sym_command_substitution] = STATE(2496), + [sym_process_substitution] = STATE(2496), + [anon_sym_RBRACE] = ACTIONS(5191), + [sym__special_characters] = ACTIONS(5195), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(5197), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5199), + }, + [1841] = { + [sym_file_descriptor] = ACTIONS(3342), + [sym__concat] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(4556), + [anon_sym_PIPE_AMP] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_EQ_TILDE] = ACTIONS(4556), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4556), + [anon_sym_GT_GT] = ACTIONS(3342), + [anon_sym_AMP_GT] = ACTIONS(4556), + [anon_sym_AMP_GT_GT] = ACTIONS(3342), + [anon_sym_LT_AMP] = ACTIONS(3342), + [anon_sym_GT_AMP] = ACTIONS(3342), + [anon_sym_LT_LT] = ACTIONS(4556), + [anon_sym_LT_LT_DASH] = ACTIONS(3342), + [anon_sym_LT_LT_LT] = ACTIONS(3342), + [sym__special_characters] = ACTIONS(4556), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(4556), + [sym_raw_string] = ACTIONS(3342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3342), + [anon_sym_BQUOTE] = ACTIONS(3342), + [anon_sym_LT_LPAREN] = ACTIONS(3342), + [anon_sym_GT_LPAREN] = ACTIONS(3342), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3344), + }, + [1842] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5201), + }, + [1843] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5203), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1844] = { + [sym_file_descriptor] = ACTIONS(3350), + [sym__concat] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_PIPE_AMP] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_EQ_TILDE] = ACTIONS(4562), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_GT_GT] = ACTIONS(3350), + [anon_sym_AMP_GT] = ACTIONS(4562), + [anon_sym_AMP_GT_GT] = ACTIONS(3350), + [anon_sym_LT_AMP] = ACTIONS(3350), + [anon_sym_GT_AMP] = ACTIONS(3350), + [anon_sym_LT_LT] = ACTIONS(4562), + [anon_sym_LT_LT_DASH] = ACTIONS(3350), + [anon_sym_LT_LT_LT] = ACTIONS(3350), + [sym__special_characters] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_DOLLAR] = ACTIONS(4562), + [sym_raw_string] = ACTIONS(3350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3350), + [anon_sym_BQUOTE] = ACTIONS(3350), + [anon_sym_LT_LPAREN] = ACTIONS(3350), + [anon_sym_GT_LPAREN] = ACTIONS(3350), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3352), + }, + [1845] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5205), + }, + [1846] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5207), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1847] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5209), + }, + [1848] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5191), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1849] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2504), + [anon_sym_RBRACE] = ACTIONS(5211), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1850] = { + [sym_file_descriptor] = ACTIONS(3362), + [sym__concat] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_PIPE_AMP] = ACTIONS(3362), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_PIPE_PIPE] = ACTIONS(3362), + [anon_sym_EQ_TILDE] = ACTIONS(4572), + [anon_sym_LT] = ACTIONS(4572), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_GT_GT] = ACTIONS(3362), + [anon_sym_AMP_GT] = ACTIONS(4572), + [anon_sym_AMP_GT_GT] = ACTIONS(3362), + [anon_sym_LT_AMP] = ACTIONS(3362), + [anon_sym_GT_AMP] = ACTIONS(3362), + [anon_sym_LT_LT] = ACTIONS(4572), + [anon_sym_LT_LT_DASH] = ACTIONS(3362), + [anon_sym_LT_LT_LT] = ACTIONS(3362), + [sym__special_characters] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(3362), + [anon_sym_DOLLAR] = ACTIONS(4572), + [sym_raw_string] = ACTIONS(3362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3362), + [anon_sym_BQUOTE] = ACTIONS(3362), + [anon_sym_LT_LPAREN] = ACTIONS(3362), + [anon_sym_GT_LPAREN] = ACTIONS(3362), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3364), + }, + [1851] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2506), + [anon_sym_RBRACE] = ACTIONS(5213), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1852] = { + [sym_file_redirect] = STATE(2405), + [sym_file_descriptor] = ACTIONS(3736), + [anon_sym_PIPE] = ACTIONS(4921), + [anon_sym_PIPE_AMP] = ACTIONS(4923), + [anon_sym_AMP_AMP] = ACTIONS(4923), + [anon_sym_PIPE_PIPE] = ACTIONS(4923), + [anon_sym_LT] = ACTIONS(3738), + [anon_sym_GT] = ACTIONS(3738), + [anon_sym_GT_GT] = ACTIONS(3740), + [anon_sym_AMP_GT] = ACTIONS(3738), + [anon_sym_AMP_GT_GT] = ACTIONS(3740), + [anon_sym_LT_AMP] = ACTIONS(3740), + [anon_sym_GT_AMP] = ACTIONS(3740), + [anon_sym_BQUOTE] = ACTIONS(4923), [sym_comment] = ACTIONS(56), }, - [2161] = { - [anon_sym_RBRACE] = ACTIONS(5248), + [1853] = { + [aux_sym_concatenation_repeat1] = STATE(1856), + [sym_file_descriptor] = ACTIONS(1219), + [sym__concat] = ACTIONS(3912), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_PIPE_AMP] = ACTIONS(1219), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_LT] = ACTIONS(1221), + [anon_sym_GT] = ACTIONS(1221), + [anon_sym_GT_GT] = ACTIONS(1219), + [anon_sym_AMP_GT] = ACTIONS(1221), + [anon_sym_AMP_GT_GT] = ACTIONS(1219), + [anon_sym_LT_AMP] = ACTIONS(1219), + [anon_sym_GT_AMP] = ACTIONS(1219), + [anon_sym_LT_LT] = ACTIONS(1221), + [anon_sym_LT_LT_DASH] = ACTIONS(1219), + [anon_sym_LT_LT_LT] = ACTIONS(1219), + [anon_sym_BQUOTE] = ACTIONS(1219), [sym_comment] = ACTIONS(56), }, - [2162] = { - [sym_file_descriptor] = ACTIONS(4269), - [sym__concat] = ACTIONS(4269), - [anon_sym_PIPE] = ACTIONS(4950), - [anon_sym_PIPE_AMP] = ACTIONS(4269), - [anon_sym_AMP_AMP] = ACTIONS(4269), - [anon_sym_PIPE_PIPE] = ACTIONS(4269), - [anon_sym_LT] = ACTIONS(4950), - [anon_sym_GT] = ACTIONS(4950), - [anon_sym_GT_GT] = ACTIONS(4269), - [anon_sym_AMP_GT] = ACTIONS(4950), - [anon_sym_AMP_GT_GT] = ACTIONS(4269), - [anon_sym_LT_AMP] = ACTIONS(4269), - [anon_sym_GT_AMP] = ACTIONS(4269), - [anon_sym_LT_LT] = ACTIONS(4950), - [anon_sym_LT_LT_DASH] = ACTIONS(4269), - [anon_sym_LT_LT_LT] = ACTIONS(4269), - [sym__special_characters] = ACTIONS(4950), - [anon_sym_DQUOTE] = ACTIONS(4269), - [anon_sym_DOLLAR] = ACTIONS(4950), - [sym_raw_string] = ACTIONS(4269), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4269), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4269), - [anon_sym_BQUOTE] = ACTIONS(4269), - [anon_sym_LT_LPAREN] = ACTIONS(4269), - [anon_sym_GT_LPAREN] = ACTIONS(4269), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4950), - }, - [2163] = { - [sym_file_descriptor] = ACTIONS(4273), - [sym__concat] = ACTIONS(4273), - [anon_sym_PIPE] = ACTIONS(4952), - [anon_sym_PIPE_AMP] = ACTIONS(4273), - [anon_sym_AMP_AMP] = ACTIONS(4273), - [anon_sym_PIPE_PIPE] = ACTIONS(4273), - [anon_sym_LT] = ACTIONS(4952), - [anon_sym_GT] = ACTIONS(4952), - [anon_sym_GT_GT] = ACTIONS(4273), - [anon_sym_AMP_GT] = ACTIONS(4952), - [anon_sym_AMP_GT_GT] = ACTIONS(4273), - [anon_sym_LT_AMP] = ACTIONS(4273), - [anon_sym_GT_AMP] = ACTIONS(4273), - [anon_sym_LT_LT] = ACTIONS(4952), - [anon_sym_LT_LT_DASH] = ACTIONS(4273), - [anon_sym_LT_LT_LT] = ACTIONS(4273), - [sym__special_characters] = ACTIONS(4952), - [anon_sym_DQUOTE] = ACTIONS(4273), - [anon_sym_DOLLAR] = ACTIONS(4952), - [sym_raw_string] = ACTIONS(4273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4273), - [anon_sym_BQUOTE] = ACTIONS(4273), - [anon_sym_LT_LPAREN] = ACTIONS(4273), - [anon_sym_GT_LPAREN] = ACTIONS(4273), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4952), - }, - [2164] = { - [sym_file_descriptor] = ACTIONS(1790), - [sym__concat] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_PIPE_AMP] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(1790), - [anon_sym_PIPE_PIPE] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(1790), - [anon_sym_AMP_GT] = ACTIONS(2816), - [anon_sym_AMP_GT_GT] = ACTIONS(1790), - [anon_sym_LT_AMP] = ACTIONS(1790), - [anon_sym_GT_AMP] = ACTIONS(1790), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_LT_LT_DASH] = ACTIONS(1790), - [anon_sym_LT_LT_LT] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), + [1854] = { + [aux_sym_concatenation_repeat1] = STATE(1856), + [sym_file_descriptor] = ACTIONS(1223), + [sym__concat] = ACTIONS(3912), + [anon_sym_PIPE] = ACTIONS(1225), + [anon_sym_PIPE_AMP] = ACTIONS(1223), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [anon_sym_LT] = ACTIONS(1225), + [anon_sym_GT] = ACTIONS(1225), + [anon_sym_GT_GT] = ACTIONS(1223), + [anon_sym_AMP_GT] = ACTIONS(1225), + [anon_sym_AMP_GT_GT] = ACTIONS(1223), + [anon_sym_LT_AMP] = ACTIONS(1223), + [anon_sym_GT_AMP] = ACTIONS(1223), + [anon_sym_LT_LT] = ACTIONS(1225), + [anon_sym_LT_LT_DASH] = ACTIONS(1223), + [anon_sym_LT_LT_LT] = ACTIONS(1223), + [anon_sym_BQUOTE] = ACTIONS(1223), [sym_comment] = ACTIONS(56), }, - [2165] = { - [aux_sym_concatenation_repeat1] = STATE(2165), - [sym_file_descriptor] = ACTIONS(1790), - [sym__concat] = ACTIONS(5250), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_PIPE_AMP] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(1790), - [anon_sym_PIPE_PIPE] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(1790), - [anon_sym_AMP_GT] = ACTIONS(2816), - [anon_sym_AMP_GT_GT] = ACTIONS(1790), - [anon_sym_LT_AMP] = ACTIONS(1790), - [anon_sym_GT_AMP] = ACTIONS(1790), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_LT_LT_DASH] = ACTIONS(1790), - [anon_sym_LT_LT_LT] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), + [1855] = { + [sym_string] = STATE(2507), + [sym_simple_expansion] = STATE(2507), + [sym_string_expansion] = STATE(2507), + [sym_expansion] = STATE(2507), + [sym_command_substitution] = STATE(2507), + [sym_process_substitution] = STATE(2507), + [sym__special_characters] = ACTIONS(5215), + [anon_sym_DQUOTE] = ACTIONS(2336), + [anon_sym_DOLLAR] = ACTIONS(2338), + [sym_raw_string] = ACTIONS(5217), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2344), + [anon_sym_BQUOTE] = ACTIONS(2346), + [anon_sym_LT_LPAREN] = ACTIONS(2348), + [anon_sym_GT_LPAREN] = ACTIONS(2348), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5215), + }, + [1856] = { + [aux_sym_concatenation_repeat1] = STATE(2508), + [sym_file_descriptor] = ACTIONS(772), + [sym__concat] = ACTIONS(3912), + [anon_sym_PIPE] = ACTIONS(1539), + [anon_sym_PIPE_AMP] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(772), + [anon_sym_PIPE_PIPE] = ACTIONS(772), + [anon_sym_LT] = ACTIONS(1539), + [anon_sym_GT] = ACTIONS(1539), + [anon_sym_GT_GT] = ACTIONS(772), + [anon_sym_AMP_GT] = ACTIONS(1539), + [anon_sym_AMP_GT_GT] = ACTIONS(772), + [anon_sym_LT_AMP] = ACTIONS(772), + [anon_sym_GT_AMP] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(1539), + [anon_sym_LT_LT_DASH] = ACTIONS(772), + [anon_sym_LT_LT_LT] = ACTIONS(772), + [anon_sym_BQUOTE] = ACTIONS(772), [sym_comment] = ACTIONS(56), }, - [2166] = { - [sym_file_descriptor] = ACTIONS(1821), - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(2821), - [anon_sym_PIPE_AMP] = ACTIONS(1821), - [anon_sym_AMP_AMP] = ACTIONS(1821), - [anon_sym_PIPE_PIPE] = ACTIONS(1821), - [anon_sym_LT] = ACTIONS(2821), - [anon_sym_GT] = ACTIONS(2821), - [anon_sym_GT_GT] = ACTIONS(1821), - [anon_sym_AMP_GT] = ACTIONS(2821), - [anon_sym_AMP_GT_GT] = ACTIONS(1821), - [anon_sym_LT_AMP] = ACTIONS(1821), - [anon_sym_GT_AMP] = ACTIONS(1821), - [anon_sym_LT_LT] = ACTIONS(2821), - [anon_sym_LT_LT_DASH] = ACTIONS(1821), - [anon_sym_LT_LT_LT] = ACTIONS(1821), - [anon_sym_BQUOTE] = ACTIONS(1821), + [1857] = { + [sym_file_descriptor] = ACTIONS(776), + [sym__concat] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_PIPE_AMP] = ACTIONS(776), + [anon_sym_AMP_AMP] = ACTIONS(776), + [anon_sym_PIPE_PIPE] = ACTIONS(776), + [anon_sym_LT] = ACTIONS(1541), + [anon_sym_GT] = ACTIONS(1541), + [anon_sym_GT_GT] = ACTIONS(776), + [anon_sym_AMP_GT] = ACTIONS(1541), + [anon_sym_AMP_GT_GT] = ACTIONS(776), + [anon_sym_LT_AMP] = ACTIONS(776), + [anon_sym_GT_AMP] = ACTIONS(776), + [anon_sym_LT_LT] = ACTIONS(1541), + [anon_sym_LT_LT_DASH] = ACTIONS(776), + [anon_sym_LT_LT_LT] = ACTIONS(776), + [anon_sym_BQUOTE] = ACTIONS(776), [sym_comment] = ACTIONS(56), }, - [2167] = { - [sym_concatenation] = STATE(2518), - [sym_string] = STATE(2517), - [sym_simple_expansion] = STATE(2517), - [sym_string_expansion] = STATE(2517), - [sym_expansion] = STATE(2517), - [sym_command_substitution] = STATE(2517), - [sym_process_substitution] = STATE(2517), - [anon_sym_RBRACE] = ACTIONS(5253), - [sym__special_characters] = ACTIONS(5255), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5257), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5259), + [1858] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(5219), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, - [2168] = { - [sym_file_descriptor] = ACTIONS(1866), - [sym__concat] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_PIPE_AMP] = ACTIONS(1866), - [anon_sym_AMP_AMP] = ACTIONS(1866), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_LT] = ACTIONS(2831), - [anon_sym_GT] = ACTIONS(2831), - [anon_sym_GT_GT] = ACTIONS(1866), - [anon_sym_AMP_GT] = ACTIONS(2831), - [anon_sym_AMP_GT_GT] = ACTIONS(1866), - [anon_sym_LT_AMP] = ACTIONS(1866), - [anon_sym_GT_AMP] = ACTIONS(1866), - [anon_sym_LT_LT] = ACTIONS(2831), - [anon_sym_LT_LT_DASH] = ACTIONS(1866), - [anon_sym_LT_LT_LT] = ACTIONS(1866), - [anon_sym_BQUOTE] = ACTIONS(1866), + [1859] = { + [sym_file_descriptor] = ACTIONS(808), + [sym__concat] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PIPE_AMP] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [anon_sym_LT] = ACTIONS(1545), + [anon_sym_GT] = ACTIONS(1545), + [anon_sym_GT_GT] = ACTIONS(808), + [anon_sym_AMP_GT] = ACTIONS(1545), + [anon_sym_AMP_GT_GT] = ACTIONS(808), + [anon_sym_LT_AMP] = ACTIONS(808), + [anon_sym_GT_AMP] = ACTIONS(808), + [anon_sym_LT_LT] = ACTIONS(1545), + [anon_sym_LT_LT_DASH] = ACTIONS(808), + [anon_sym_LT_LT_LT] = ACTIONS(808), + [anon_sym_BQUOTE] = ACTIONS(808), [sym_comment] = ACTIONS(56), }, - [2169] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5261), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2170] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(5263), + [1860] = { + [sym_file_descriptor] = ACTIONS(812), + [sym__concat] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(1547), + [anon_sym_PIPE_AMP] = ACTIONS(812), + [anon_sym_AMP_AMP] = ACTIONS(812), + [anon_sym_PIPE_PIPE] = ACTIONS(812), + [anon_sym_LT] = ACTIONS(1547), + [anon_sym_GT] = ACTIONS(1547), + [anon_sym_GT_GT] = ACTIONS(812), + [anon_sym_AMP_GT] = ACTIONS(1547), + [anon_sym_AMP_GT_GT] = ACTIONS(812), + [anon_sym_LT_AMP] = ACTIONS(812), + [anon_sym_GT_AMP] = ACTIONS(812), + [anon_sym_LT_LT] = ACTIONS(1547), + [anon_sym_LT_LT_DASH] = ACTIONS(812), + [anon_sym_LT_LT_LT] = ACTIONS(812), + [anon_sym_BQUOTE] = ACTIONS(812), [sym_comment] = ACTIONS(56), }, - [2171] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2522), - [anon_sym_RBRACE] = ACTIONS(5265), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2172] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2524), - [anon_sym_RBRACE] = ACTIONS(5267), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2173] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2525), - [anon_sym_RBRACE] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2174] = { - [sym_file_descriptor] = ACTIONS(1910), - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(2841), - [anon_sym_PIPE_AMP] = ACTIONS(1910), - [anon_sym_AMP_AMP] = ACTIONS(1910), - [anon_sym_PIPE_PIPE] = ACTIONS(1910), - [anon_sym_LT] = ACTIONS(2841), - [anon_sym_GT] = ACTIONS(2841), - [anon_sym_GT_GT] = ACTIONS(1910), - [anon_sym_AMP_GT] = ACTIONS(2841), - [anon_sym_AMP_GT_GT] = ACTIONS(1910), - [anon_sym_LT_AMP] = ACTIONS(1910), - [anon_sym_GT_AMP] = ACTIONS(1910), - [anon_sym_LT_LT] = ACTIONS(2841), - [anon_sym_LT_LT_DASH] = ACTIONS(1910), - [anon_sym_LT_LT_LT] = ACTIONS(1910), - [anon_sym_BQUOTE] = ACTIONS(1910), + [1861] = { + [sym_file_descriptor] = ACTIONS(816), + [sym__concat] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_PIPE_AMP] = ACTIONS(816), + [anon_sym_AMP_AMP] = ACTIONS(816), + [anon_sym_PIPE_PIPE] = ACTIONS(816), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1549), + [anon_sym_GT_GT] = ACTIONS(816), + [anon_sym_AMP_GT] = ACTIONS(1549), + [anon_sym_AMP_GT_GT] = ACTIONS(816), + [anon_sym_LT_AMP] = ACTIONS(816), + [anon_sym_GT_AMP] = ACTIONS(816), + [anon_sym_LT_LT] = ACTIONS(1549), + [anon_sym_LT_LT_DASH] = ACTIONS(816), + [anon_sym_LT_LT_LT] = ACTIONS(816), + [anon_sym_BQUOTE] = ACTIONS(816), [sym_comment] = ACTIONS(56), }, - [2175] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5269), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2176] = { - [sym_file_descriptor] = ACTIONS(1916), - [sym__concat] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(2845), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(2845), - [anon_sym_GT] = ACTIONS(2845), - [anon_sym_GT_GT] = ACTIONS(1916), - [anon_sym_AMP_GT] = ACTIONS(2845), - [anon_sym_AMP_GT_GT] = ACTIONS(1916), - [anon_sym_LT_AMP] = ACTIONS(1916), - [anon_sym_GT_AMP] = ACTIONS(1916), - [anon_sym_LT_LT] = ACTIONS(2845), - [anon_sym_LT_LT_DASH] = ACTIONS(1916), - [anon_sym_LT_LT_LT] = ACTIONS(1916), - [anon_sym_BQUOTE] = ACTIONS(1916), + [1862] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(5221), [sym_comment] = ACTIONS(56), }, - [2177] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [1863] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2513), + [anon_sym_RBRACE] = ACTIONS(5223), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5225), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2178] = { - [sym_file_descriptor] = ACTIONS(2064), - [sym__concat] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2847), - [anon_sym_PIPE_AMP] = ACTIONS(2064), - [anon_sym_AMP_AMP] = ACTIONS(2064), - [anon_sym_PIPE_PIPE] = ACTIONS(2064), - [anon_sym_LT] = ACTIONS(2847), - [anon_sym_GT] = ACTIONS(2847), - [anon_sym_GT_GT] = ACTIONS(2064), - [anon_sym_AMP_GT] = ACTIONS(2847), - [anon_sym_AMP_GT_GT] = ACTIONS(2064), - [anon_sym_LT_AMP] = ACTIONS(2064), - [anon_sym_GT_AMP] = ACTIONS(2064), - [anon_sym_LT_LT] = ACTIONS(2847), - [anon_sym_LT_LT_DASH] = ACTIONS(2064), - [anon_sym_LT_LT_LT] = ACTIONS(2064), - [anon_sym_BQUOTE] = ACTIONS(2064), + [1864] = { + [sym_subscript] = STATE(2517), + [sym_variable_name] = ACTIONS(5227), + [anon_sym_DOLLAR] = ACTIONS(5229), + [anon_sym_DASH] = ACTIONS(5229), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5231), + [anon_sym_STAR] = ACTIONS(5229), + [anon_sym_AT] = ACTIONS(5229), + [anon_sym_QMARK] = ACTIONS(5229), + [anon_sym_0] = ACTIONS(5233), + [anon_sym__] = ACTIONS(5233), + }, + [1865] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2520), + [anon_sym_RBRACE] = ACTIONS(5235), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5237), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1866] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2523), + [anon_sym_RBRACE] = ACTIONS(5239), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5241), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1867] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(5243), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), [sym_comment] = ACTIONS(56), }, - [2179] = { - [sym_file_descriptor] = ACTIONS(2228), - [sym__concat] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_PIPE_AMP] = ACTIONS(2228), - [anon_sym_AMP_AMP] = ACTIONS(2228), - [anon_sym_PIPE_PIPE] = ACTIONS(2228), - [anon_sym_LT] = ACTIONS(2849), - [anon_sym_GT] = ACTIONS(2849), - [anon_sym_GT_GT] = ACTIONS(2228), - [anon_sym_AMP_GT] = ACTIONS(2849), - [anon_sym_AMP_GT_GT] = ACTIONS(2228), - [anon_sym_LT_AMP] = ACTIONS(2228), - [anon_sym_GT_AMP] = ACTIONS(2228), - [anon_sym_LT_LT] = ACTIONS(2849), - [anon_sym_LT_LT_DASH] = ACTIONS(2228), - [anon_sym_LT_LT_LT] = ACTIONS(2228), - [anon_sym_BQUOTE] = ACTIONS(2228), + [1868] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(5243), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1869] = { + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(5243), [sym_comment] = ACTIONS(56), }, - [2180] = { - [sym_file_descriptor] = ACTIONS(2969), - [sym__concat] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_SEMI_SEMI] = ACTIONS(2971), - [anon_sym_PIPE_AMP] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_PIPE_PIPE] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(2971), - [anon_sym_GT_GT] = ACTIONS(2971), - [anon_sym_AMP_GT] = ACTIONS(2971), - [anon_sym_AMP_GT_GT] = ACTIONS(2971), - [anon_sym_LT_AMP] = ACTIONS(2971), - [anon_sym_GT_AMP] = ACTIONS(2971), - [anon_sym_LT_LT] = ACTIONS(2971), - [anon_sym_LT_LT_DASH] = ACTIONS(2971), - [anon_sym_LT_LT_LT] = ACTIONS(2971), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), + [1870] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(5243), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), }, - [2181] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5271), + [1871] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(5245), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), [sym_comment] = ACTIONS(56), }, - [2182] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5273), + [1872] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(5245), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [1873] = { + [sym_file_redirect] = STATE(539), + [sym_heredoc_redirect] = STATE(539), + [sym_herestring_redirect] = STATE(539), + [aux_sym_while_statement_repeat1] = STATE(1192), + [sym_file_descriptor] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(5065), + [anon_sym_PIPE_AMP] = ACTIONS(5067), + [anon_sym_AMP_AMP] = ACTIONS(5067), + [anon_sym_PIPE_PIPE] = ACTIONS(5067), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1060), + [anon_sym_GT_GT] = ACTIONS(1062), + [anon_sym_AMP_GT] = ACTIONS(1060), + [anon_sym_AMP_GT_GT] = ACTIONS(1062), + [anon_sym_LT_AMP] = ACTIONS(1062), + [anon_sym_GT_AMP] = ACTIONS(1062), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_LT_LT_DASH] = ACTIONS(976), + [anon_sym_LT_LT_LT] = ACTIONS(1064), + [anon_sym_BQUOTE] = ACTIONS(5067), [sym_comment] = ACTIONS(56), }, - [2183] = { - [anon_sym_RBRACE] = ACTIONS(5273), + [1874] = { + [anon_sym_PIPE] = ACTIONS(4328), + [anon_sym_RPAREN] = ACTIONS(4328), + [anon_sym_SEMI_SEMI] = ACTIONS(4328), + [anon_sym_PIPE_AMP] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_LF] = ACTIONS(4328), + [anon_sym_AMP] = ACTIONS(4328), + }, + [1875] = { + [sym_file_descriptor] = ACTIONS(1858), + [sym__concat] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [anon_sym_PIPE_AMP] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1860), + [anon_sym_PIPE_PIPE] = ACTIONS(1860), + [anon_sym_LT] = ACTIONS(1860), + [anon_sym_GT] = ACTIONS(1860), + [anon_sym_GT_GT] = ACTIONS(1860), + [anon_sym_AMP_GT] = ACTIONS(1860), + [anon_sym_AMP_GT_GT] = ACTIONS(1860), + [anon_sym_LT_AMP] = ACTIONS(1860), + [anon_sym_GT_AMP] = ACTIONS(1860), + [anon_sym_LT_LT] = ACTIONS(1860), + [anon_sym_LT_LT_DASH] = ACTIONS(1860), + [anon_sym_LT_LT_LT] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + }, + [1876] = { + [aux_sym_concatenation_repeat1] = STATE(1876), + [sym_file_descriptor] = ACTIONS(1858), + [sym__concat] = ACTIONS(5247), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [anon_sym_PIPE_AMP] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1860), + [anon_sym_PIPE_PIPE] = ACTIONS(1860), + [anon_sym_LT] = ACTIONS(1860), + [anon_sym_GT] = ACTIONS(1860), + [anon_sym_GT_GT] = ACTIONS(1860), + [anon_sym_AMP_GT] = ACTIONS(1860), + [anon_sym_AMP_GT_GT] = ACTIONS(1860), + [anon_sym_LT_AMP] = ACTIONS(1860), + [anon_sym_GT_AMP] = ACTIONS(1860), + [anon_sym_LT_LT] = ACTIONS(1860), + [anon_sym_LT_LT_DASH] = ACTIONS(1860), + [anon_sym_LT_LT_LT] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + }, + [1877] = { + [sym_file_descriptor] = ACTIONS(1895), + [sym__concat] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_SEMI_SEMI] = ACTIONS(1897), + [anon_sym_PIPE_AMP] = ACTIONS(1897), + [anon_sym_AMP_AMP] = ACTIONS(1897), + [anon_sym_PIPE_PIPE] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1897), + [anon_sym_GT] = ACTIONS(1897), + [anon_sym_GT_GT] = ACTIONS(1897), + [anon_sym_AMP_GT] = ACTIONS(1897), + [anon_sym_AMP_GT_GT] = ACTIONS(1897), + [anon_sym_LT_AMP] = ACTIONS(1897), + [anon_sym_GT_AMP] = ACTIONS(1897), + [anon_sym_LT_LT] = ACTIONS(1897), + [anon_sym_LT_LT_DASH] = ACTIONS(1897), + [anon_sym_LT_LT_LT] = ACTIONS(1897), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_LF] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), + }, + [1878] = { + [sym_concatenation] = STATE(2529), + [sym_string] = STATE(2528), + [sym_simple_expansion] = STATE(2528), + [sym_string_expansion] = STATE(2528), + [sym_expansion] = STATE(2528), + [sym_command_substitution] = STATE(2528), + [sym_process_substitution] = STATE(2528), + [anon_sym_RBRACE] = ACTIONS(5250), + [sym__special_characters] = ACTIONS(5252), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(5254), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5256), + }, + [1879] = { + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1942), + [anon_sym_PIPE_AMP] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1942), + [anon_sym_PIPE_PIPE] = ACTIONS(1942), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_GT_GT] = ACTIONS(1942), + [anon_sym_AMP_GT] = ACTIONS(1942), + [anon_sym_AMP_GT_GT] = ACTIONS(1942), + [anon_sym_LT_AMP] = ACTIONS(1942), + [anon_sym_GT_AMP] = ACTIONS(1942), + [anon_sym_LT_LT] = ACTIONS(1942), + [anon_sym_LT_LT_DASH] = ACTIONS(1942), + [anon_sym_LT_LT_LT] = ACTIONS(1942), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + }, + [1880] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5258), + }, + [1881] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5260), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1882] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(5262), [sym_comment] = ACTIONS(56), }, - [2184] = { - [sym_file_descriptor] = ACTIONS(3023), - [sym__concat] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3025), - [anon_sym_SEMI_SEMI] = ACTIONS(3025), - [anon_sym_PIPE_AMP] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(3025), - [anon_sym_GT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_AMP_GT] = ACTIONS(3025), - [anon_sym_AMP_GT_GT] = ACTIONS(3025), - [anon_sym_LT_AMP] = ACTIONS(3025), - [anon_sym_GT_AMP] = ACTIONS(3025), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_LT_LT_DASH] = ACTIONS(3025), - [anon_sym_LT_LT_LT] = ACTIONS(3025), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_LF] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3025), + [1883] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2535), + [anon_sym_RBRACE] = ACTIONS(5264), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5266), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2185] = { - [sym_concatenation] = STATE(2531), - [sym_string] = STATE(2530), - [sym_simple_expansion] = STATE(2530), - [sym_string_expansion] = STATE(2530), - [sym_expansion] = STATE(2530), - [sym_command_substitution] = STATE(2530), - [sym_process_substitution] = STATE(2530), - [anon_sym_RBRACE] = ACTIONS(5273), - [sym__special_characters] = ACTIONS(5275), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5277), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5279), + [1884] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2538), + [anon_sym_RBRACE] = ACTIONS(5268), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5270), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2186] = { - [sym_file_descriptor] = ACTIONS(3068), - [sym__concat] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_SEMI_SEMI] = ACTIONS(3070), - [anon_sym_PIPE_AMP] = ACTIONS(3070), - [anon_sym_AMP_AMP] = ACTIONS(3070), - [anon_sym_PIPE_PIPE] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_GT] = ACTIONS(3070), - [anon_sym_GT_GT] = ACTIONS(3070), - [anon_sym_AMP_GT] = ACTIONS(3070), - [anon_sym_AMP_GT_GT] = ACTIONS(3070), - [anon_sym_LT_AMP] = ACTIONS(3070), - [anon_sym_GT_AMP] = ACTIONS(3070), - [anon_sym_LT_LT] = ACTIONS(3070), - [anon_sym_LT_LT_DASH] = ACTIONS(3070), - [anon_sym_LT_LT_LT] = ACTIONS(3070), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3070), - [anon_sym_LF] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3070), + [1885] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2540), + [anon_sym_RBRACE] = ACTIONS(5250), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5272), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2187] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5281), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [1886] = { + [sym_file_descriptor] = ACTIONS(1992), + [sym__concat] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(1994), + [anon_sym_SEMI_SEMI] = ACTIONS(1994), + [anon_sym_PIPE_AMP] = ACTIONS(1994), + [anon_sym_AMP_AMP] = ACTIONS(1994), + [anon_sym_PIPE_PIPE] = ACTIONS(1994), + [anon_sym_LT] = ACTIONS(1994), + [anon_sym_GT] = ACTIONS(1994), + [anon_sym_GT_GT] = ACTIONS(1994), + [anon_sym_AMP_GT] = ACTIONS(1994), + [anon_sym_AMP_GT_GT] = ACTIONS(1994), + [anon_sym_LT_AMP] = ACTIONS(1994), + [anon_sym_GT_AMP] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1994), + [anon_sym_LT_LT_DASH] = ACTIONS(1994), + [anon_sym_LT_LT_LT] = ACTIONS(1994), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_LF] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), }, - [2188] = { - [sym_file_descriptor] = ACTIONS(3074), - [sym__concat] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(3076), - [anon_sym_SEMI_SEMI] = ACTIONS(3076), - [anon_sym_PIPE_AMP] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3076), - [anon_sym_GT] = ACTIONS(3076), - [anon_sym_GT_GT] = ACTIONS(3076), - [anon_sym_AMP_GT] = ACTIONS(3076), - [anon_sym_AMP_GT_GT] = ACTIONS(3076), - [anon_sym_LT_AMP] = ACTIONS(3076), - [anon_sym_GT_AMP] = ACTIONS(3076), - [anon_sym_LT_LT] = ACTIONS(3076), - [anon_sym_LT_LT_DASH] = ACTIONS(3076), - [anon_sym_LT_LT_LT] = ACTIONS(3076), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3076), - [anon_sym_LF] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3076), + [1887] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5274), }, - [2189] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5283), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [1888] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5276), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2190] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5273), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [1889] = { + [sym_file_descriptor] = ACTIONS(2000), + [sym__concat] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [anon_sym_PIPE_AMP] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_PIPE_PIPE] = ACTIONS(2002), + [anon_sym_LT] = ACTIONS(2002), + [anon_sym_GT] = ACTIONS(2002), + [anon_sym_GT_GT] = ACTIONS(2002), + [anon_sym_AMP_GT] = ACTIONS(2002), + [anon_sym_AMP_GT_GT] = ACTIONS(2002), + [anon_sym_LT_AMP] = ACTIONS(2002), + [anon_sym_GT_AMP] = ACTIONS(2002), + [anon_sym_LT_LT] = ACTIONS(2002), + [anon_sym_LT_LT_DASH] = ACTIONS(2002), + [anon_sym_LT_LT_LT] = ACTIONS(2002), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2002), }, - [2191] = { - [sym_file_descriptor] = ACTIONS(3080), - [sym__concat] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(3082), - [anon_sym_SEMI_SEMI] = ACTIONS(3082), - [anon_sym_PIPE_AMP] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3082), - [anon_sym_GT_GT] = ACTIONS(3082), - [anon_sym_AMP_GT] = ACTIONS(3082), - [anon_sym_AMP_GT_GT] = ACTIONS(3082), - [anon_sym_LT_AMP] = ACTIONS(3082), - [anon_sym_GT_AMP] = ACTIONS(3082), - [anon_sym_LT_LT] = ACTIONS(3082), - [anon_sym_LT_LT_DASH] = ACTIONS(3082), - [anon_sym_LT_LT_LT] = ACTIONS(3082), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3082), - [anon_sym_LF] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3082), + [1890] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5278), }, - [2192] = { - [sym_concatenation] = STATE(2537), - [sym_string] = STATE(2536), - [sym_simple_expansion] = STATE(2536), - [sym_string_expansion] = STATE(2536), - [sym_expansion] = STATE(2536), - [sym_command_substitution] = STATE(2536), - [sym_process_substitution] = STATE(2536), - [anon_sym_RBRACE] = ACTIONS(5285), - [sym__special_characters] = ACTIONS(5287), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5291), + [1891] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5250), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2193] = { - [sym__heredoc_middle] = ACTIONS(1866), - [sym__heredoc_end] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(2831), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1866), + [1892] = { + [sym_file_descriptor] = ACTIONS(2156), + [sym__concat] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_SEMI_SEMI] = ACTIONS(2158), + [anon_sym_PIPE_AMP] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_PIPE_PIPE] = ACTIONS(2158), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_GT] = ACTIONS(2158), + [anon_sym_GT_GT] = ACTIONS(2158), + [anon_sym_AMP_GT] = ACTIONS(2158), + [anon_sym_AMP_GT_GT] = ACTIONS(2158), + [anon_sym_LT_AMP] = ACTIONS(2158), + [anon_sym_GT_AMP] = ACTIONS(2158), + [anon_sym_LT_LT] = ACTIONS(2158), + [anon_sym_LT_LT_DASH] = ACTIONS(2158), + [anon_sym_LT_LT_LT] = ACTIONS(2158), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym_LF] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2158), + }, + [1893] = { + [sym_file_descriptor] = ACTIONS(2358), + [sym__concat] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_SEMI_SEMI] = ACTIONS(2360), + [anon_sym_PIPE_AMP] = ACTIONS(2360), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_AMP_GT] = ACTIONS(2360), + [anon_sym_AMP_GT_GT] = ACTIONS(2360), + [anon_sym_LT_AMP] = ACTIONS(2360), + [anon_sym_GT_AMP] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(2360), + [anon_sym_LT_LT_DASH] = ACTIONS(2360), + [anon_sym_LT_LT_LT] = ACTIONS(2360), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + }, + [1894] = { + [sym__heredoc_middle] = ACTIONS(808), + [sym__heredoc_end] = ACTIONS(808), + [anon_sym_DOLLAR] = ACTIONS(1545), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), [sym_comment] = ACTIONS(56), }, - [2194] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5293), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2195] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(5295), + [1895] = { + [sym__heredoc_middle] = ACTIONS(812), + [sym__heredoc_end] = ACTIONS(812), + [anon_sym_DOLLAR] = ACTIONS(1547), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(812), [sym_comment] = ACTIONS(56), }, - [2196] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2541), - [anon_sym_RBRACE] = ACTIONS(5297), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2197] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2543), - [anon_sym_RBRACE] = ACTIONS(5299), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2198] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2544), - [anon_sym_RBRACE] = ACTIONS(5285), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2199] = { - [sym__heredoc_middle] = ACTIONS(1910), - [sym__heredoc_end] = ACTIONS(1910), - [anon_sym_DOLLAR] = ACTIONS(2841), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1910), + [1896] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(5280), [sym_comment] = ACTIONS(56), }, - [2200] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5301), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [1897] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2547), + [anon_sym_RBRACE] = ACTIONS(5282), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5284), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2201] = { - [sym__heredoc_middle] = ACTIONS(1916), - [sym__heredoc_end] = ACTIONS(1916), - [anon_sym_DOLLAR] = ACTIONS(2845), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1916), + [1898] = { + [sym_subscript] = STATE(2551), + [sym_variable_name] = ACTIONS(5286), + [anon_sym_DOLLAR] = ACTIONS(5288), + [anon_sym_DASH] = ACTIONS(5288), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5290), + [anon_sym_STAR] = ACTIONS(5288), + [anon_sym_AT] = ACTIONS(5288), + [anon_sym_QMARK] = ACTIONS(5288), + [anon_sym_0] = ACTIONS(5292), + [anon_sym__] = ACTIONS(5292), + }, + [1899] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2554), + [anon_sym_RBRACE] = ACTIONS(5294), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5296), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1900] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2557), + [anon_sym_RBRACE] = ACTIONS(5298), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5300), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1901] = { + [sym_file_descriptor] = ACTIONS(5302), + [anon_sym_PIPE] = ACTIONS(5304), + [anon_sym_RPAREN] = ACTIONS(5304), + [anon_sym_SEMI_SEMI] = ACTIONS(5304), + [anon_sym_PIPE_AMP] = ACTIONS(5304), + [anon_sym_AMP_AMP] = ACTIONS(5304), + [anon_sym_PIPE_PIPE] = ACTIONS(5304), + [anon_sym_LT] = ACTIONS(5304), + [anon_sym_GT] = ACTIONS(5304), + [anon_sym_GT_GT] = ACTIONS(5304), + [anon_sym_AMP_GT] = ACTIONS(5304), + [anon_sym_AMP_GT_GT] = ACTIONS(5304), + [anon_sym_LT_AMP] = ACTIONS(5304), + [anon_sym_GT_AMP] = ACTIONS(5304), + [anon_sym_LT_LT] = ACTIONS(5304), + [anon_sym_LT_LT_DASH] = ACTIONS(5304), + [anon_sym_LT_LT_LT] = ACTIONS(5304), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5304), + [anon_sym_LF] = ACTIONS(5304), + [anon_sym_AMP] = ACTIONS(5304), + }, + [1902] = { + [sym_simple_expansion] = STATE(1218), + [sym_expansion] = STATE(1218), + [aux_sym_heredoc_repeat1] = STATE(1902), + [sym__heredoc_middle] = ACTIONS(5306), + [sym__heredoc_end] = ACTIONS(5309), + [anon_sym_DOLLAR] = ACTIONS(5311), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5314), [sym_comment] = ACTIONS(56), }, - [2202] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5285), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2203] = { - [sym__concat] = ACTIONS(4214), - [anon_sym_RBRACK] = ACTIONS(4214), + [1903] = { + [anon_sym_EQ] = ACTIONS(5317), + [anon_sym_PLUS_EQ] = ACTIONS(5317), [sym_comment] = ACTIONS(56), }, - [2204] = { - [sym__concat] = ACTIONS(4220), - [anon_sym_RBRACK] = ACTIONS(4220), + [1904] = { + [anon_sym_EQ] = ACTIONS(5319), + [anon_sym_PLUS_EQ] = ACTIONS(5319), [sym_comment] = ACTIONS(56), }, - [2205] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5303), + [1905] = { + [sym__concat] = ACTIONS(3235), + [anon_sym_RBRACK] = ACTIONS(3235), [sym_comment] = ACTIONS(56), }, - [2206] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5305), - [sym_comment] = ACTIONS(56), - }, - [2207] = { - [anon_sym_RBRACE] = ACTIONS(5305), - [sym_comment] = ACTIONS(56), - }, - [2208] = { - [sym__concat] = ACTIONS(4269), - [anon_sym_RBRACK] = ACTIONS(4269), - [sym_comment] = ACTIONS(56), - }, - [2209] = { - [sym__concat] = ACTIONS(4273), - [anon_sym_RBRACK] = ACTIONS(4273), - [sym_comment] = ACTIONS(56), - }, - [2210] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_RPAREN] = ACTIONS(2969), - [sym__special_characters] = ACTIONS(4098), - [anon_sym_DQUOTE] = ACTIONS(2969), - [anon_sym_DOLLAR] = ACTIONS(4098), - [sym_raw_string] = ACTIONS(2969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2969), - [anon_sym_BQUOTE] = ACTIONS(2969), - [anon_sym_LT_LPAREN] = ACTIONS(2969), - [anon_sym_GT_LPAREN] = ACTIONS(2969), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4098), - }, - [2211] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5307), - [sym_comment] = ACTIONS(56), - }, - [2212] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5309), - [sym_comment] = ACTIONS(56), - }, - [2213] = { - [anon_sym_RBRACE] = ACTIONS(5309), - [sym_comment] = ACTIONS(56), - }, - [2214] = { - [sym__concat] = ACTIONS(3023), - [anon_sym_RPAREN] = ACTIONS(3023), - [sym__special_characters] = ACTIONS(4104), - [anon_sym_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR] = ACTIONS(4104), - [sym_raw_string] = ACTIONS(3023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3023), - [anon_sym_BQUOTE] = ACTIONS(3023), - [anon_sym_LT_LPAREN] = ACTIONS(3023), - [anon_sym_GT_LPAREN] = ACTIONS(3023), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4104), - }, - [2215] = { - [sym_concatenation] = STATE(2552), - [sym_string] = STATE(2551), - [sym_simple_expansion] = STATE(2551), - [sym_string_expansion] = STATE(2551), - [sym_expansion] = STATE(2551), - [sym_command_substitution] = STATE(2551), - [sym_process_substitution] = STATE(2551), - [anon_sym_RBRACE] = ACTIONS(5309), - [sym__special_characters] = ACTIONS(5311), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5313), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5315), - }, - [2216] = { - [sym__concat] = ACTIONS(3068), - [anon_sym_RPAREN] = ACTIONS(3068), - [sym__special_characters] = ACTIONS(4112), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(4112), - [sym_raw_string] = ACTIONS(3068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3068), - [anon_sym_BQUOTE] = ACTIONS(3068), - [anon_sym_LT_LPAREN] = ACTIONS(3068), - [anon_sym_GT_LPAREN] = ACTIONS(3068), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4112), - }, - [2217] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5317), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2218] = { - [sym__concat] = ACTIONS(3074), - [anon_sym_RPAREN] = ACTIONS(3074), - [sym__special_characters] = ACTIONS(4116), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_DOLLAR] = ACTIONS(4116), - [sym_raw_string] = ACTIONS(3074), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3074), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3074), - [anon_sym_BQUOTE] = ACTIONS(3074), - [anon_sym_LT_LPAREN] = ACTIONS(3074), - [anon_sym_GT_LPAREN] = ACTIONS(3074), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4116), - }, - [2219] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5319), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2220] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5309), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2221] = { - [sym__concat] = ACTIONS(3080), - [anon_sym_RPAREN] = ACTIONS(3080), - [sym__special_characters] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(3080), - [anon_sym_DOLLAR] = ACTIONS(4120), - [sym_raw_string] = ACTIONS(3080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3080), - [anon_sym_BQUOTE] = ACTIONS(3080), - [anon_sym_LT_LPAREN] = ACTIONS(3080), - [anon_sym_GT_LPAREN] = ACTIONS(3080), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4120), - }, - [2222] = { - [sym_file_descriptor] = ACTIONS(4214), - [sym__concat] = ACTIONS(4214), - [sym_variable_name] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_SEMI_SEMI] = ACTIONS(4216), - [anon_sym_PIPE_AMP] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4216), - [anon_sym_PIPE_PIPE] = ACTIONS(4216), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_AMP_GT] = ACTIONS(4216), - [anon_sym_AMP_GT_GT] = ACTIONS(4216), - [anon_sym_LT_AMP] = ACTIONS(4216), - [anon_sym_GT_AMP] = ACTIONS(4216), - [sym__special_characters] = ACTIONS(4216), - [anon_sym_DQUOTE] = ACTIONS(4216), - [anon_sym_DOLLAR] = ACTIONS(4216), - [sym_raw_string] = ACTIONS(4216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4216), - [anon_sym_BQUOTE] = ACTIONS(4216), - [anon_sym_LT_LPAREN] = ACTIONS(4216), - [anon_sym_GT_LPAREN] = ACTIONS(4216), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(4216), - [anon_sym_SEMI] = ACTIONS(4216), - [anon_sym_LF] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - }, - [2223] = { - [sym_file_descriptor] = ACTIONS(4220), - [sym__concat] = ACTIONS(4220), - [sym_variable_name] = ACTIONS(4220), - [anon_sym_PIPE] = ACTIONS(4222), - [anon_sym_SEMI_SEMI] = ACTIONS(4222), - [anon_sym_PIPE_AMP] = ACTIONS(4222), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [anon_sym_LT] = ACTIONS(4222), - [anon_sym_GT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4222), - [anon_sym_AMP_GT] = ACTIONS(4222), - [anon_sym_AMP_GT_GT] = ACTIONS(4222), - [anon_sym_LT_AMP] = ACTIONS(4222), - [anon_sym_GT_AMP] = ACTIONS(4222), - [sym__special_characters] = ACTIONS(4222), - [anon_sym_DQUOTE] = ACTIONS(4222), - [anon_sym_DOLLAR] = ACTIONS(4222), - [sym_raw_string] = ACTIONS(4222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4222), - [anon_sym_BQUOTE] = ACTIONS(4222), - [anon_sym_LT_LPAREN] = ACTIONS(4222), - [anon_sym_GT_LPAREN] = ACTIONS(4222), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(4222), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_LF] = ACTIONS(4222), - [anon_sym_AMP] = ACTIONS(4222), - }, - [2224] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), + [1906] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), [anon_sym_RBRACE] = ACTIONS(5321), [sym_comment] = ACTIONS(56), }, - [2225] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), + [1907] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), [anon_sym_RBRACE] = ACTIONS(5323), [sym_comment] = ACTIONS(56), }, - [2226] = { + [1908] = { [anon_sym_RBRACE] = ACTIONS(5323), [sym_comment] = ACTIONS(56), }, - [2227] = { - [sym_file_descriptor] = ACTIONS(4269), - [sym__concat] = ACTIONS(4269), - [sym_variable_name] = ACTIONS(4269), - [anon_sym_PIPE] = ACTIONS(4271), - [anon_sym_SEMI_SEMI] = ACTIONS(4271), - [anon_sym_PIPE_AMP] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4271), - [anon_sym_GT] = ACTIONS(4271), - [anon_sym_GT_GT] = ACTIONS(4271), - [anon_sym_AMP_GT] = ACTIONS(4271), - [anon_sym_AMP_GT_GT] = ACTIONS(4271), - [anon_sym_LT_AMP] = ACTIONS(4271), - [anon_sym_GT_AMP] = ACTIONS(4271), - [sym__special_characters] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4271), - [sym_raw_string] = ACTIONS(4271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4271), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4271), - [anon_sym_BQUOTE] = ACTIONS(4271), - [anon_sym_LT_LPAREN] = ACTIONS(4271), - [anon_sym_GT_LPAREN] = ACTIONS(4271), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(4271), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_LF] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4271), - }, - [2228] = { - [sym_file_descriptor] = ACTIONS(4273), - [sym__concat] = ACTIONS(4273), - [sym_variable_name] = ACTIONS(4273), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_SEMI_SEMI] = ACTIONS(4275), - [anon_sym_PIPE_AMP] = ACTIONS(4275), - [anon_sym_AMP_AMP] = ACTIONS(4275), - [anon_sym_PIPE_PIPE] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_GT_GT] = ACTIONS(4275), - [anon_sym_AMP_GT] = ACTIONS(4275), - [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(4275), - [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(178), - [sym_word] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_LF] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4275), - }, - [2229] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_SEMI_SEMI] = ACTIONS(2971), - [sym__special_characters] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2971), - [sym_raw_string] = ACTIONS(2971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2971), - [anon_sym_BQUOTE] = ACTIONS(2971), - [anon_sym_LT_LPAREN] = ACTIONS(2971), - [anon_sym_GT_LPAREN] = ACTIONS(2971), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - }, - [2230] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), + [1909] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2561), [anon_sym_RBRACE] = ACTIONS(5325), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1910] = { + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACK] = ACTIONS(3297), [sym_comment] = ACTIONS(56), }, - [2231] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5327), + [1911] = { + [sym_concatenation] = STATE(2564), + [sym_string] = STATE(2563), + [sym_simple_expansion] = STATE(2563), + [sym_string_expansion] = STATE(2563), + [sym_expansion] = STATE(2563), + [sym_command_substitution] = STATE(2563), + [sym_process_substitution] = STATE(2563), + [anon_sym_RBRACE] = ACTIONS(5323), + [sym__special_characters] = ACTIONS(5327), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(5329), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5331), + }, + [1912] = { + [sym__concat] = ACTIONS(3342), + [anon_sym_RBRACK] = ACTIONS(3342), [sym_comment] = ACTIONS(56), }, - [2232] = { - [anon_sym_RBRACE] = ACTIONS(5327), - [sym_comment] = ACTIONS(56), + [1913] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5333), }, - [2233] = { - [sym__concat] = ACTIONS(3023), - [anon_sym_SEMI_SEMI] = ACTIONS(3025), - [sym__special_characters] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_DOLLAR] = ACTIONS(3025), - [sym_raw_string] = ACTIONS(3025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3025), - [anon_sym_LT_LPAREN] = ACTIONS(3025), - [anon_sym_GT_LPAREN] = ACTIONS(3025), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3025), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_LF] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3025), - }, - [2234] = { - [sym_concatenation] = STATE(2561), - [sym_string] = STATE(2560), - [sym_simple_expansion] = STATE(2560), - [sym_string_expansion] = STATE(2560), - [sym_expansion] = STATE(2560), - [sym_command_substitution] = STATE(2560), - [sym_process_substitution] = STATE(2560), - [anon_sym_RBRACE] = ACTIONS(5327), - [sym__special_characters] = ACTIONS(5329), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5333), - }, - [2235] = { - [sym__concat] = ACTIONS(3068), - [anon_sym_SEMI_SEMI] = ACTIONS(3070), - [sym__special_characters] = ACTIONS(3070), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3070), - [sym_raw_string] = ACTIONS(3070), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3070), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3070), - [anon_sym_BQUOTE] = ACTIONS(3070), - [anon_sym_LT_LPAREN] = ACTIONS(3070), - [anon_sym_GT_LPAREN] = ACTIONS(3070), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3070), - [anon_sym_SEMI] = ACTIONS(3070), - [anon_sym_LF] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3070), - }, - [2236] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), + [1914] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), [anon_sym_RBRACE] = ACTIONS(5335), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2237] = { - [sym__concat] = ACTIONS(3074), - [anon_sym_SEMI_SEMI] = ACTIONS(3076), - [sym__special_characters] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR] = ACTIONS(3076), - [sym_raw_string] = ACTIONS(3076), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3076), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3076), - [anon_sym_BQUOTE] = ACTIONS(3076), - [anon_sym_LT_LPAREN] = ACTIONS(3076), - [anon_sym_GT_LPAREN] = ACTIONS(3076), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3076), - [anon_sym_SEMI] = ACTIONS(3076), - [anon_sym_LF] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3076), - }, - [2238] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5337), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2239] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5327), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2240] = { - [sym__concat] = ACTIONS(3080), - [anon_sym_SEMI_SEMI] = ACTIONS(3082), - [sym__special_characters] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_DOLLAR] = ACTIONS(3082), - [sym_raw_string] = ACTIONS(3082), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3082), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3082), - [anon_sym_BQUOTE] = ACTIONS(3082), - [anon_sym_LT_LPAREN] = ACTIONS(3082), - [anon_sym_GT_LPAREN] = ACTIONS(3082), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3082), - [anon_sym_LF] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3082), - }, - [2241] = { - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_RPAREN] = ACTIONS(2474), - [anon_sym_SEMI_SEMI] = ACTIONS(2474), - [anon_sym_PIPE_AMP] = ACTIONS(2474), - [anon_sym_AMP_AMP] = ACTIONS(2474), - [anon_sym_PIPE_PIPE] = ACTIONS(2474), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2474), - [anon_sym_LF] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(2474), - }, - [2242] = { - [sym__terminated_statement] = STATE(673), - [sym_for_statement] = STATE(674), - [sym_while_statement] = STATE(674), - [sym_if_statement] = STATE(674), - [sym_case_statement] = STATE(674), - [sym_function_definition] = STATE(674), - [sym_subshell] = STATE(674), - [sym_pipeline] = STATE(674), - [sym_list] = STATE(674), - [sym_bracket_command] = STATE(674), - [sym_command] = STATE(674), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(675), - [sym_declaration_command] = STATE(674), - [sym_unset_command] = STATE(674), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1241), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(5339), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [2243] = { - [sym__terminated_statement] = STATE(681), - [sym_for_statement] = STATE(682), - [sym_while_statement] = STATE(682), - [sym_if_statement] = STATE(682), - [sym_case_statement] = STATE(682), - [sym_function_definition] = STATE(682), - [sym_subshell] = STATE(682), - [sym_pipeline] = STATE(682), - [sym_list] = STATE(682), - [sym_bracket_command] = STATE(682), - [sym_command] = STATE(682), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(685), - [sym_declaration_command] = STATE(682), - [sym_unset_command] = STATE(682), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1250), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(5341), - [anon_sym_elif] = ACTIONS(5341), - [anon_sym_else] = ACTIONS(5341), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [2244] = { - [anon_sym_PIPE] = ACTIONS(5343), - [anon_sym_RPAREN] = ACTIONS(5343), - [anon_sym_SEMI_SEMI] = ACTIONS(5343), - [anon_sym_PIPE_AMP] = ACTIONS(5343), - [anon_sym_AMP_AMP] = ACTIONS(5343), - [anon_sym_PIPE_PIPE] = ACTIONS(5343), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(5343), - [anon_sym_LF] = ACTIONS(5343), - [anon_sym_AMP] = ACTIONS(5343), - }, - [2245] = { - [sym__concat] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1790), + [1915] = { + [sym__concat] = ACTIONS(3350), + [anon_sym_RBRACK] = ACTIONS(3350), [sym_comment] = ACTIONS(56), }, - [2246] = { - [aux_sym_concatenation_repeat1] = STATE(1806), - [sym__concat] = ACTIONS(3878), - [anon_sym_PIPE] = ACTIONS(5345), - [anon_sym_RPAREN] = ACTIONS(5345), + [1916] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5337), + }, + [1917] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5339), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1918] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5341), + }, + [1919] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5323), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1920] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2571), + [anon_sym_RBRACE] = ACTIONS(5343), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1921] = { + [sym__concat] = ACTIONS(3362), + [anon_sym_RBRACK] = ACTIONS(3362), [sym_comment] = ACTIONS(56), }, - [2247] = { - [aux_sym_concatenation_repeat1] = STATE(1806), - [sym__concat] = ACTIONS(3878), - [anon_sym_PIPE] = ACTIONS(5347), - [anon_sym_RPAREN] = ACTIONS(5347), - [sym_comment] = ACTIONS(56), + [1922] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2573), + [anon_sym_RBRACE] = ACTIONS(5345), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2248] = { - [anon_sym_PIPE] = ACTIONS(5347), - [anon_sym_RPAREN] = ACTIONS(5347), - [sym_comment] = ACTIONS(56), - }, - [2249] = { - [anon_sym_esac] = ACTIONS(5349), - [sym__special_characters] = ACTIONS(5351), - [anon_sym_DQUOTE] = ACTIONS(5353), - [anon_sym_DOLLAR] = ACTIONS(5351), - [sym_raw_string] = ACTIONS(5353), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5353), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5353), - [anon_sym_BQUOTE] = ACTIONS(5353), - [anon_sym_LT_LPAREN] = ACTIONS(5353), - [anon_sym_GT_LPAREN] = ACTIONS(5353), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5355), - }, - [2250] = { - [sym_file_descriptor] = ACTIONS(330), - [sym_variable_name] = ACTIONS(330), - [anon_sym_for] = ACTIONS(332), - [anon_sym_while] = ACTIONS(332), - [anon_sym_if] = ACTIONS(332), - [anon_sym_case] = ACTIONS(332), - [anon_sym_esac] = ACTIONS(332), - [anon_sym_SEMI_SEMI] = ACTIONS(330), - [anon_sym_function] = ACTIONS(332), - [anon_sym_LPAREN] = ACTIONS(330), - [anon_sym_LBRACK] = ACTIONS(332), - [anon_sym_LBRACK_LBRACK] = ACTIONS(330), - [anon_sym_declare] = ACTIONS(332), - [anon_sym_typeset] = ACTIONS(332), - [anon_sym_export] = ACTIONS(332), - [anon_sym_readonly] = ACTIONS(332), - [anon_sym_local] = ACTIONS(332), - [anon_sym_unset] = ACTIONS(332), - [anon_sym_unsetenv] = ACTIONS(332), - [anon_sym_LT] = ACTIONS(332), - [anon_sym_GT] = ACTIONS(332), - [anon_sym_GT_GT] = ACTIONS(330), - [anon_sym_AMP_GT] = ACTIONS(332), - [anon_sym_AMP_GT_GT] = ACTIONS(330), - [anon_sym_LT_AMP] = ACTIONS(330), - [anon_sym_GT_AMP] = ACTIONS(330), - [sym__special_characters] = ACTIONS(334), - [anon_sym_DQUOTE] = ACTIONS(330), - [anon_sym_DOLLAR] = ACTIONS(332), - [sym_raw_string] = ACTIONS(330), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(330), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(330), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(330), - [anon_sym_GT_LPAREN] = ACTIONS(330), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [2251] = { - [anon_sym_PIPE] = ACTIONS(336), - [anon_sym_SEMI_SEMI] = ACTIONS(5357), - [anon_sym_PIPE_AMP] = ACTIONS(336), - [anon_sym_AMP_AMP] = ACTIONS(340), - [anon_sym_PIPE_PIPE] = ACTIONS(340), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(5357), - [anon_sym_LF] = ACTIONS(5357), - [anon_sym_AMP] = ACTIONS(5357), - }, - [2252] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(336), - [anon_sym_SEMI_SEMI] = ACTIONS(5357), - [anon_sym_PIPE_AMP] = ACTIONS(336), - [anon_sym_AMP_AMP] = ACTIONS(340), - [anon_sym_PIPE_PIPE] = ACTIONS(340), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_AMP_GT] = ACTIONS(370), - [anon_sym_AMP_GT_GT] = ACTIONS(370), - [anon_sym_LT_AMP] = ACTIONS(370), - [anon_sym_GT_AMP] = ACTIONS(370), - [sym__special_characters] = ACTIONS(370), - [anon_sym_DQUOTE] = ACTIONS(370), - [anon_sym_DOLLAR] = ACTIONS(370), - [sym_raw_string] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(370), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(370), - [anon_sym_BQUOTE] = ACTIONS(370), - [anon_sym_LT_LPAREN] = ACTIONS(370), - [anon_sym_GT_LPAREN] = ACTIONS(370), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(370), - [anon_sym_SEMI] = ACTIONS(5357), - [anon_sym_LF] = ACTIONS(5357), - [anon_sym_AMP] = ACTIONS(5357), - }, - [2253] = { - [sym__terminated_statement] = STATE(2250), - [sym_for_statement] = STATE(2251), - [sym_while_statement] = STATE(2251), - [sym_if_statement] = STATE(2251), - [sym_case_statement] = STATE(2251), - [sym_function_definition] = STATE(2251), - [sym_subshell] = STATE(2251), - [sym_pipeline] = STATE(2251), - [sym_list] = STATE(2251), - [sym_bracket_command] = STATE(2251), - [sym_command] = STATE(2251), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2252), - [sym_declaration_command] = STATE(2251), - [sym_unset_command] = STATE(2251), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(2567), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(5349), - [anon_sym_SEMI_SEMI] = ACTIONS(5359), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [2254] = { - [sym__terminated_statement] = STATE(2250), - [sym_for_statement] = STATE(2251), - [sym_while_statement] = STATE(2251), - [sym_if_statement] = STATE(2251), - [sym_case_statement] = STATE(2251), - [sym_function_definition] = STATE(2251), - [sym_subshell] = STATE(2251), - [sym_pipeline] = STATE(2251), - [sym_list] = STATE(2251), - [sym_bracket_command] = STATE(2251), - [sym_command] = STATE(2251), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2252), - [sym_declaration_command] = STATE(2251), - [sym_unset_command] = STATE(2251), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(2568), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(5349), - [anon_sym_SEMI_SEMI] = ACTIONS(5359), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [2255] = { - [aux_sym_case_item_repeat1] = STATE(2255), - [anon_sym_PIPE] = ACTIONS(5361), - [anon_sym_RPAREN] = ACTIONS(5347), - [sym_comment] = ACTIONS(56), - }, - [2256] = { - [aux_sym_concatenation_repeat1] = STATE(2256), - [sym__concat] = ACTIONS(5364), - [anon_sym_PIPE] = ACTIONS(1790), - [anon_sym_RPAREN] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - }, - [2257] = { - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1821), - [anon_sym_RPAREN] = ACTIONS(1821), - [sym_comment] = ACTIONS(56), - }, - [2258] = { - [anon_sym_esac] = ACTIONS(5367), - [sym__special_characters] = ACTIONS(5369), - [anon_sym_DQUOTE] = ACTIONS(5371), - [anon_sym_DOLLAR] = ACTIONS(5369), - [sym_raw_string] = ACTIONS(5371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5371), - [anon_sym_BQUOTE] = ACTIONS(5371), - [anon_sym_LT_LPAREN] = ACTIONS(5371), - [anon_sym_GT_LPAREN] = ACTIONS(5371), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5373), - }, - [2259] = { - [sym__terminated_statement] = STATE(2250), - [sym_for_statement] = STATE(2251), - [sym_while_statement] = STATE(2251), - [sym_if_statement] = STATE(2251), - [sym_case_statement] = STATE(2251), - [sym_function_definition] = STATE(2251), - [sym_subshell] = STATE(2251), - [sym_pipeline] = STATE(2251), - [sym_list] = STATE(2251), - [sym_bracket_command] = STATE(2251), - [sym_command] = STATE(2251), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2252), - [sym_declaration_command] = STATE(2251), - [sym_unset_command] = STATE(2251), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(2567), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(5367), - [anon_sym_SEMI_SEMI] = ACTIONS(5375), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [2260] = { - [sym__terminated_statement] = STATE(2250), - [sym_for_statement] = STATE(2251), - [sym_while_statement] = STATE(2251), - [sym_if_statement] = STATE(2251), - [sym_case_statement] = STATE(2251), - [sym_function_definition] = STATE(2251), - [sym_subshell] = STATE(2251), - [sym_pipeline] = STATE(2251), - [sym_list] = STATE(2251), - [sym_bracket_command] = STATE(2251), - [sym_command] = STATE(2251), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2252), - [sym_declaration_command] = STATE(2251), - [sym_unset_command] = STATE(2251), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(2570), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(5367), - [anon_sym_SEMI_SEMI] = ACTIONS(5375), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [2261] = { - [sym_concatenation] = STATE(2574), - [sym_string] = STATE(2573), - [sym_simple_expansion] = STATE(2573), - [sym_string_expansion] = STATE(2573), - [sym_expansion] = STATE(2573), - [sym_command_substitution] = STATE(2573), - [sym_process_substitution] = STATE(2573), - [anon_sym_RBRACE] = ACTIONS(5377), - [sym__special_characters] = ACTIONS(5379), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5381), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), + [1923] = { + [sym__concat] = ACTIONS(1858), + [anon_sym_RPAREN] = ACTIONS(1858), + [sym__special_characters] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1858), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), + [anon_sym_BQUOTE] = ACTIONS(1858), + [anon_sym_LT_LPAREN] = ACTIONS(1858), + [anon_sym_GT_LPAREN] = ACTIONS(1858), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5383), + [sym_word] = ACTIONS(3008), }, - [2262] = { - [sym__concat] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [sym_comment] = ACTIONS(56), - }, - [2263] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5385), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2264] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(5387), - [sym_comment] = ACTIONS(56), - }, - [2265] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2578), - [anon_sym_RBRACE] = ACTIONS(5389), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2266] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2580), - [anon_sym_RBRACE] = ACTIONS(5391), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2267] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2581), - [anon_sym_RBRACE] = ACTIONS(5377), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2268] = { - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1910), - [anon_sym_RPAREN] = ACTIONS(1910), - [sym_comment] = ACTIONS(56), - }, - [2269] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5393), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2270] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1916), - [anon_sym_RPAREN] = ACTIONS(1916), - [sym_comment] = ACTIONS(56), - }, - [2271] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5377), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2272] = { - [sym__concat] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2064), - [anon_sym_RPAREN] = ACTIONS(2064), - [sym_comment] = ACTIONS(56), - }, - [2273] = { - [sym__concat] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2228), - [anon_sym_RPAREN] = ACTIONS(2228), - [sym_comment] = ACTIONS(56), - }, - [2274] = { - [anon_sym_PIPE] = ACTIONS(5395), - [anon_sym_RPAREN] = ACTIONS(5395), - [anon_sym_SEMI_SEMI] = ACTIONS(5395), - [anon_sym_PIPE_AMP] = ACTIONS(5395), - [anon_sym_AMP_AMP] = ACTIONS(5395), - [anon_sym_PIPE_PIPE] = ACTIONS(5395), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(5395), - [anon_sym_LF] = ACTIONS(5395), - [anon_sym_AMP] = ACTIONS(5395), - }, - [2275] = { - [aux_sym_case_item_repeat1] = STATE(2584), - [aux_sym_concatenation_repeat1] = STATE(1806), - [sym__concat] = ACTIONS(3878), - [anon_sym_PIPE] = ACTIONS(3880), - [anon_sym_RPAREN] = ACTIONS(5397), - [sym_comment] = ACTIONS(56), - }, - [2276] = { - [aux_sym_case_item_repeat1] = STATE(2586), - [aux_sym_concatenation_repeat1] = STATE(1806), - [sym__concat] = ACTIONS(3878), - [anon_sym_PIPE] = ACTIONS(3880), - [anon_sym_RPAREN] = ACTIONS(5399), - [sym_comment] = ACTIONS(56), - }, - [2277] = { - [aux_sym_case_item_repeat1] = STATE(2586), - [anon_sym_PIPE] = ACTIONS(3880), - [anon_sym_RPAREN] = ACTIONS(5399), - [sym_comment] = ACTIONS(56), - }, - [2278] = { - [anon_sym_esac] = ACTIONS(5401), - [sym_comment] = ACTIONS(56), - }, - [2279] = { - [anon_sym_PIPE] = ACTIONS(5403), - [anon_sym_RPAREN] = ACTIONS(5403), - [anon_sym_SEMI_SEMI] = ACTIONS(5403), - [anon_sym_PIPE_AMP] = ACTIONS(5403), - [anon_sym_AMP_AMP] = ACTIONS(5403), - [anon_sym_PIPE_PIPE] = ACTIONS(5403), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(5403), - [anon_sym_LF] = ACTIONS(5403), - [anon_sym_AMP] = ACTIONS(5403), - }, - [2280] = { - [anon_sym_esac] = ACTIONS(5405), - [sym_comment] = ACTIONS(56), - }, - [2281] = { - [sym__concat] = ACTIONS(5021), - [anon_sym_in] = ACTIONS(5023), - [anon_sym_SEMI_SEMI] = ACTIONS(5023), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_LF] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(5023), - }, - [2282] = { - [sym__concat] = ACTIONS(5025), - [anon_sym_in] = ACTIONS(5027), - [anon_sym_SEMI_SEMI] = ACTIONS(5027), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_LF] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(5027), - }, - [2283] = { - [sym__concat] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [anon_sym_PIPE_AMP] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - }, - [2284] = { - [aux_sym_concatenation_repeat1] = STATE(2284), - [sym__concat] = ACTIONS(5407), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [anon_sym_PIPE_AMP] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - }, - [2285] = { - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LF] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - }, - [2286] = { - [sym_concatenation] = STATE(2592), - [sym_string] = STATE(2591), - [sym_simple_expansion] = STATE(2591), - [sym_string_expansion] = STATE(2591), - [sym_expansion] = STATE(2591), - [sym_command_substitution] = STATE(2591), - [sym_process_substitution] = STATE(2591), - [anon_sym_RBRACE] = ACTIONS(5410), - [sym__special_characters] = ACTIONS(5412), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5414), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), + [1924] = { + [aux_sym_concatenation_repeat1] = STATE(1924), + [sym__concat] = ACTIONS(5347), + [anon_sym_RPAREN] = ACTIONS(1858), + [sym__special_characters] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1858), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), + [anon_sym_BQUOTE] = ACTIONS(1858), + [anon_sym_LT_LPAREN] = ACTIONS(1858), + [anon_sym_GT_LPAREN] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3008), + }, + [1925] = { + [sym__concat] = ACTIONS(1895), + [anon_sym_RPAREN] = ACTIONS(1895), + [sym__special_characters] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(3013), + [sym_raw_string] = ACTIONS(1895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1895), + [anon_sym_BQUOTE] = ACTIONS(1895), + [anon_sym_LT_LPAREN] = ACTIONS(1895), + [anon_sym_GT_LPAREN] = ACTIONS(1895), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3013), + }, + [1926] = { + [sym_concatenation] = STATE(2577), + [sym_string] = STATE(2576), + [sym_simple_expansion] = STATE(2576), + [sym_string_expansion] = STATE(2576), + [sym_expansion] = STATE(2576), + [sym_command_substitution] = STATE(2576), + [sym_process_substitution] = STATE(2576), + [anon_sym_RBRACE] = ACTIONS(5350), + [sym__special_characters] = ACTIONS(5352), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(5354), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5356), + }, + [1927] = { + [sym__concat] = ACTIONS(1940), + [anon_sym_RPAREN] = ACTIONS(1940), + [sym__special_characters] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(3023), + [sym_raw_string] = ACTIONS(1940), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1940), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [anon_sym_LT_LPAREN] = ACTIONS(1940), + [anon_sym_GT_LPAREN] = ACTIONS(1940), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3023), + }, + [1928] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5358), + }, + [1929] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5360), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1930] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(5362), + [sym_comment] = ACTIONS(56), + }, + [1931] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2583), + [anon_sym_RBRACE] = ACTIONS(5364), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5366), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1932] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2586), + [anon_sym_RBRACE] = ACTIONS(5368), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5370), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1933] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2588), + [anon_sym_RBRACE] = ACTIONS(5350), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5372), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1934] = { + [sym__concat] = ACTIONS(1992), + [anon_sym_RPAREN] = ACTIONS(1992), + [sym__special_characters] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(1992), + [anon_sym_DOLLAR] = ACTIONS(3041), + [sym_raw_string] = ACTIONS(1992), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1992), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1992), + [anon_sym_BQUOTE] = ACTIONS(1992), + [anon_sym_LT_LPAREN] = ACTIONS(1992), + [anon_sym_GT_LPAREN] = ACTIONS(1992), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3041), + }, + [1935] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5374), + }, + [1936] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5376), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1937] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_RPAREN] = ACTIONS(2000), + [sym__special_characters] = ACTIONS(3047), + [anon_sym_DQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(3047), + [sym_raw_string] = ACTIONS(2000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2000), + [anon_sym_BQUOTE] = ACTIONS(2000), + [anon_sym_LT_LPAREN] = ACTIONS(2000), + [anon_sym_GT_LPAREN] = ACTIONS(2000), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3047), + }, + [1938] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5378), + }, + [1939] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5350), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1940] = { + [sym__concat] = ACTIONS(2156), + [anon_sym_RPAREN] = ACTIONS(2156), + [sym__special_characters] = ACTIONS(3051), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_DOLLAR] = ACTIONS(3051), + [sym_raw_string] = ACTIONS(2156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2156), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2156), + [anon_sym_LT_LPAREN] = ACTIONS(2156), + [anon_sym_GT_LPAREN] = ACTIONS(2156), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3051), + }, + [1941] = { + [sym__concat] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [sym__special_characters] = ACTIONS(3053), + [anon_sym_DQUOTE] = ACTIONS(2358), + [anon_sym_DOLLAR] = ACTIONS(3053), + [sym_raw_string] = ACTIONS(2358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2358), + [anon_sym_BQUOTE] = ACTIONS(2358), + [anon_sym_LT_LPAREN] = ACTIONS(2358), + [anon_sym_GT_LPAREN] = ACTIONS(2358), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3053), + }, + [1942] = { + [sym_file_descriptor] = ACTIONS(3235), + [sym__concat] = ACTIONS(3235), + [sym_variable_name] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3237), + [anon_sym_SEMI_SEMI] = ACTIONS(3237), + [anon_sym_PIPE_AMP] = ACTIONS(3237), + [anon_sym_AMP_AMP] = ACTIONS(3237), + [anon_sym_PIPE_PIPE] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_GT] = ACTIONS(3237), + [anon_sym_GT_GT] = ACTIONS(3237), + [anon_sym_AMP_GT] = ACTIONS(3237), + [anon_sym_AMP_GT_GT] = ACTIONS(3237), + [anon_sym_LT_AMP] = ACTIONS(3237), + [anon_sym_GT_AMP] = ACTIONS(3237), + [sym__special_characters] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3237), + [anon_sym_DOLLAR] = ACTIONS(3237), + [sym_raw_string] = ACTIONS(3237), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3237), + [anon_sym_BQUOTE] = ACTIONS(3237), + [anon_sym_LT_LPAREN] = ACTIONS(3237), + [anon_sym_GT_LPAREN] = ACTIONS(3237), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_LF] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), + }, + [1943] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(5380), + [sym_comment] = ACTIONS(56), + }, + [1944] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(5382), + [sym_comment] = ACTIONS(56), + }, + [1945] = { + [anon_sym_RBRACE] = ACTIONS(5382), + [sym_comment] = ACTIONS(56), + }, + [1946] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2595), + [anon_sym_RBRACE] = ACTIONS(5384), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1947] = { + [sym_file_descriptor] = ACTIONS(3297), + [sym__concat] = ACTIONS(3297), + [sym_variable_name] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_SEMI_SEMI] = ACTIONS(3299), + [anon_sym_PIPE_AMP] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_GT] = ACTIONS(3299), + [anon_sym_GT_GT] = ACTIONS(3299), + [anon_sym_AMP_GT] = ACTIONS(3299), + [anon_sym_AMP_GT_GT] = ACTIONS(3299), + [anon_sym_LT_AMP] = ACTIONS(3299), + [anon_sym_GT_AMP] = ACTIONS(3299), + [sym__special_characters] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3299), + [sym_raw_string] = ACTIONS(3299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3299), + [anon_sym_BQUOTE] = ACTIONS(3299), + [anon_sym_LT_LPAREN] = ACTIONS(3299), + [anon_sym_GT_LPAREN] = ACTIONS(3299), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_LF] = ACTIONS(3299), + [anon_sym_AMP] = ACTIONS(3299), + }, + [1948] = { + [sym_concatenation] = STATE(2598), + [sym_string] = STATE(2597), + [sym_simple_expansion] = STATE(2597), + [sym_string_expansion] = STATE(2597), + [sym_expansion] = STATE(2597), + [sym_command_substitution] = STATE(2597), + [sym_process_substitution] = STATE(2597), + [anon_sym_RBRACE] = ACTIONS(5382), + [sym__special_characters] = ACTIONS(5386), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(5388), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5390), + }, + [1949] = { + [sym_file_descriptor] = ACTIONS(3342), + [sym__concat] = ACTIONS(3342), + [sym_variable_name] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(3344), + [anon_sym_SEMI_SEMI] = ACTIONS(3344), + [anon_sym_PIPE_AMP] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_GT_GT] = ACTIONS(3344), + [anon_sym_AMP_GT] = ACTIONS(3344), + [anon_sym_AMP_GT_GT] = ACTIONS(3344), + [anon_sym_LT_AMP] = ACTIONS(3344), + [anon_sym_GT_AMP] = ACTIONS(3344), + [sym__special_characters] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_DOLLAR] = ACTIONS(3344), + [sym_raw_string] = ACTIONS(3344), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3344), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3344), + [anon_sym_BQUOTE] = ACTIONS(3344), + [anon_sym_LT_LPAREN] = ACTIONS(3344), + [anon_sym_GT_LPAREN] = ACTIONS(3344), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_LF] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3344), + }, + [1950] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5392), + }, + [1951] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5394), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1952] = { + [sym_file_descriptor] = ACTIONS(3350), + [sym__concat] = ACTIONS(3350), + [sym_variable_name] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3352), + [anon_sym_SEMI_SEMI] = ACTIONS(3352), + [anon_sym_PIPE_AMP] = ACTIONS(3352), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_PIPE_PIPE] = ACTIONS(3352), + [anon_sym_LT] = ACTIONS(3352), + [anon_sym_GT] = ACTIONS(3352), + [anon_sym_GT_GT] = ACTIONS(3352), + [anon_sym_AMP_GT] = ACTIONS(3352), + [anon_sym_AMP_GT_GT] = ACTIONS(3352), + [anon_sym_LT_AMP] = ACTIONS(3352), + [anon_sym_GT_AMP] = ACTIONS(3352), + [sym__special_characters] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [anon_sym_DOLLAR] = ACTIONS(3352), + [sym_raw_string] = ACTIONS(3352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3352), + [anon_sym_BQUOTE] = ACTIONS(3352), + [anon_sym_LT_LPAREN] = ACTIONS(3352), + [anon_sym_GT_LPAREN] = ACTIONS(3352), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3352), + [anon_sym_LF] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3352), + }, + [1953] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5396), + }, + [1954] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5398), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1955] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5400), + }, + [1956] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5382), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1957] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2605), + [anon_sym_RBRACE] = ACTIONS(5402), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1958] = { + [sym_file_descriptor] = ACTIONS(3362), + [sym__concat] = ACTIONS(3362), + [sym_variable_name] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(3364), + [anon_sym_SEMI_SEMI] = ACTIONS(3364), + [anon_sym_PIPE_AMP] = ACTIONS(3364), + [anon_sym_AMP_AMP] = ACTIONS(3364), + [anon_sym_PIPE_PIPE] = ACTIONS(3364), + [anon_sym_LT] = ACTIONS(3364), + [anon_sym_GT] = ACTIONS(3364), + [anon_sym_GT_GT] = ACTIONS(3364), + [anon_sym_AMP_GT] = ACTIONS(3364), + [anon_sym_AMP_GT_GT] = ACTIONS(3364), + [anon_sym_LT_AMP] = ACTIONS(3364), + [anon_sym_GT_AMP] = ACTIONS(3364), + [sym__special_characters] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [anon_sym_DOLLAR] = ACTIONS(3364), + [sym_raw_string] = ACTIONS(3364), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3364), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3364), + [anon_sym_BQUOTE] = ACTIONS(3364), + [anon_sym_LT_LPAREN] = ACTIONS(3364), + [anon_sym_GT_LPAREN] = ACTIONS(3364), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_LF] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3364), + }, + [1959] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2607), + [anon_sym_RBRACE] = ACTIONS(5404), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1960] = { + [sym__concat] = ACTIONS(1858), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [sym__special_characters] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1860), + [anon_sym_DOLLAR] = ACTIONS(1860), + [sym_raw_string] = ACTIONS(1860), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1860), [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5416), + [anon_sym_LT_LPAREN] = ACTIONS(1860), + [anon_sym_GT_LPAREN] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), }, - [2287] = { - [sym__concat] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [anon_sym_PIPE_AMP] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), - }, - [2288] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5418), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2289] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(5420), - [sym_comment] = ACTIONS(56), - }, - [2290] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2596), - [anon_sym_RBRACE] = ACTIONS(5422), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2291] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2598), - [anon_sym_RBRACE] = ACTIONS(5424), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2292] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2599), - [anon_sym_RBRACE] = ACTIONS(5410), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2293] = { - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_SEMI_SEMI] = ACTIONS(1912), - [anon_sym_PIPE_AMP] = ACTIONS(1912), - [anon_sym_AMP_AMP] = ACTIONS(1912), - [anon_sym_PIPE_PIPE] = ACTIONS(1912), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_LF] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1912), - }, - [2294] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5426), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2295] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_SEMI_SEMI] = ACTIONS(1918), - [anon_sym_PIPE_AMP] = ACTIONS(1918), - [anon_sym_AMP_AMP] = ACTIONS(1918), - [anon_sym_PIPE_PIPE] = ACTIONS(1918), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_LF] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), - }, - [2296] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5410), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2297] = { - [sym__concat] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_SEMI_SEMI] = ACTIONS(2066), - [anon_sym_PIPE_AMP] = ACTIONS(2066), - [anon_sym_AMP_AMP] = ACTIONS(2066), - [anon_sym_PIPE_PIPE] = ACTIONS(2066), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_LF] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2066), - }, - [2298] = { - [sym__concat] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_SEMI_SEMI] = ACTIONS(2230), - [anon_sym_PIPE_AMP] = ACTIONS(2230), - [anon_sym_AMP_AMP] = ACTIONS(2230), - [anon_sym_PIPE_PIPE] = ACTIONS(2230), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_LF] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - }, - [2299] = { - [sym_file_descriptor] = ACTIONS(2969), - [sym__concat] = ACTIONS(2969), - [sym_variable_name] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_RPAREN] = ACTIONS(2971), - [anon_sym_SEMI_SEMI] = ACTIONS(2971), - [anon_sym_PIPE_AMP] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_PIPE_PIPE] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(2971), - [anon_sym_GT_GT] = ACTIONS(2971), - [anon_sym_AMP_GT] = ACTIONS(2971), - [anon_sym_AMP_GT_GT] = ACTIONS(2971), - [anon_sym_LT_AMP] = ACTIONS(2971), - [anon_sym_GT_AMP] = ACTIONS(2971), - [sym__special_characters] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2971), - [sym_raw_string] = ACTIONS(2971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2971), - [anon_sym_BQUOTE] = ACTIONS(2971), - [anon_sym_LT_LPAREN] = ACTIONS(2971), - [anon_sym_GT_LPAREN] = ACTIONS(2971), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - }, - [2300] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5428), - [sym_comment] = ACTIONS(56), - }, - [2301] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5430), - [sym_comment] = ACTIONS(56), - }, - [2302] = { - [anon_sym_RBRACE] = ACTIONS(5430), - [sym_comment] = ACTIONS(56), - }, - [2303] = { - [sym_file_descriptor] = ACTIONS(3023), - [sym__concat] = ACTIONS(3023), - [sym_variable_name] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3025), - [anon_sym_RPAREN] = ACTIONS(3025), - [anon_sym_SEMI_SEMI] = ACTIONS(3025), - [anon_sym_PIPE_AMP] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(3025), - [anon_sym_GT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_AMP_GT] = ACTIONS(3025), - [anon_sym_AMP_GT_GT] = ACTIONS(3025), - [anon_sym_LT_AMP] = ACTIONS(3025), - [anon_sym_GT_AMP] = ACTIONS(3025), - [sym__special_characters] = ACTIONS(3025), - [anon_sym_DQUOTE] = ACTIONS(3025), - [anon_sym_DOLLAR] = ACTIONS(3025), - [sym_raw_string] = ACTIONS(3025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3025), - [anon_sym_BQUOTE] = ACTIONS(3025), - [anon_sym_LT_LPAREN] = ACTIONS(3025), - [anon_sym_GT_LPAREN] = ACTIONS(3025), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3025), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_LF] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3025), - }, - [2304] = { - [sym_concatenation] = STATE(2605), - [sym_string] = STATE(2604), - [sym_simple_expansion] = STATE(2604), - [sym_string_expansion] = STATE(2604), - [sym_expansion] = STATE(2604), - [sym_command_substitution] = STATE(2604), - [sym_process_substitution] = STATE(2604), - [anon_sym_RBRACE] = ACTIONS(5430), - [sym__special_characters] = ACTIONS(5432), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5434), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), + [1961] = { + [aux_sym_concatenation_repeat1] = STATE(1961), + [sym__concat] = ACTIONS(5406), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [sym__special_characters] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1860), + [anon_sym_DOLLAR] = ACTIONS(1860), + [sym_raw_string] = ACTIONS(1860), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1860), [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), + [anon_sym_LT_LPAREN] = ACTIONS(1860), + [anon_sym_GT_LPAREN] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + }, + [1962] = { + [sym__concat] = ACTIONS(1895), + [anon_sym_SEMI_SEMI] = ACTIONS(1897), + [sym__special_characters] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [anon_sym_DOLLAR] = ACTIONS(1897), + [sym_raw_string] = ACTIONS(1897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1897), + [anon_sym_BQUOTE] = ACTIONS(1897), + [anon_sym_LT_LPAREN] = ACTIONS(1897), + [anon_sym_GT_LPAREN] = ACTIONS(1897), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_LF] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), + }, + [1963] = { + [sym_concatenation] = STATE(2611), + [sym_string] = STATE(2610), + [sym_simple_expansion] = STATE(2610), + [sym_string_expansion] = STATE(2610), + [sym_expansion] = STATE(2610), + [sym_command_substitution] = STATE(2610), + [sym_process_substitution] = STATE(2610), + [anon_sym_RBRACE] = ACTIONS(5409), + [sym__special_characters] = ACTIONS(5411), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(5413), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5436), + [sym_word] = ACTIONS(5415), }, - [2305] = { - [sym_file_descriptor] = ACTIONS(3068), - [sym__concat] = ACTIONS(3068), - [sym_variable_name] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_RPAREN] = ACTIONS(3070), - [anon_sym_SEMI_SEMI] = ACTIONS(3070), - [anon_sym_PIPE_AMP] = ACTIONS(3070), - [anon_sym_AMP_AMP] = ACTIONS(3070), - [anon_sym_PIPE_PIPE] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_GT] = ACTIONS(3070), - [anon_sym_GT_GT] = ACTIONS(3070), - [anon_sym_AMP_GT] = ACTIONS(3070), - [anon_sym_AMP_GT_GT] = ACTIONS(3070), - [anon_sym_LT_AMP] = ACTIONS(3070), - [anon_sym_GT_AMP] = ACTIONS(3070), - [sym__special_characters] = ACTIONS(3070), - [anon_sym_DQUOTE] = ACTIONS(3070), - [anon_sym_DOLLAR] = ACTIONS(3070), - [sym_raw_string] = ACTIONS(3070), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3070), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3070), - [anon_sym_BQUOTE] = ACTIONS(3070), - [anon_sym_LT_LPAREN] = ACTIONS(3070), - [anon_sym_GT_LPAREN] = ACTIONS(3070), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3070), - [anon_sym_SEMI] = ACTIONS(3070), - [anon_sym_LF] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3070), + [1964] = { + [sym__concat] = ACTIONS(1940), + [anon_sym_SEMI_SEMI] = ACTIONS(1942), + [sym__special_characters] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [anon_sym_DOLLAR] = ACTIONS(1942), + [sym_raw_string] = ACTIONS(1942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1942), + [anon_sym_BQUOTE] = ACTIONS(1942), + [anon_sym_LT_LPAREN] = ACTIONS(1942), + [anon_sym_GT_LPAREN] = ACTIONS(1942), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), }, - [2306] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5438), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [1965] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5417), }, - [2307] = { - [sym_file_descriptor] = ACTIONS(3074), - [sym__concat] = ACTIONS(3074), - [sym_variable_name] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(3076), - [anon_sym_RPAREN] = ACTIONS(3076), - [anon_sym_SEMI_SEMI] = ACTIONS(3076), - [anon_sym_PIPE_AMP] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3076), - [anon_sym_GT] = ACTIONS(3076), - [anon_sym_GT_GT] = ACTIONS(3076), - [anon_sym_AMP_GT] = ACTIONS(3076), - [anon_sym_AMP_GT_GT] = ACTIONS(3076), - [anon_sym_LT_AMP] = ACTIONS(3076), - [anon_sym_GT_AMP] = ACTIONS(3076), - [sym__special_characters] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3076), - [anon_sym_DOLLAR] = ACTIONS(3076), - [sym_raw_string] = ACTIONS(3076), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3076), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3076), - [anon_sym_BQUOTE] = ACTIONS(3076), - [anon_sym_LT_LPAREN] = ACTIONS(3076), - [anon_sym_GT_LPAREN] = ACTIONS(3076), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3076), - [anon_sym_SEMI] = ACTIONS(3076), - [anon_sym_LF] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3076), + [1966] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5419), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2308] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5440), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2309] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5430), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2310] = { - [sym_file_descriptor] = ACTIONS(3080), - [sym__concat] = ACTIONS(3080), - [sym_variable_name] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(3082), - [anon_sym_RPAREN] = ACTIONS(3082), - [anon_sym_SEMI_SEMI] = ACTIONS(3082), - [anon_sym_PIPE_AMP] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3082), - [anon_sym_GT_GT] = ACTIONS(3082), - [anon_sym_AMP_GT] = ACTIONS(3082), - [anon_sym_AMP_GT_GT] = ACTIONS(3082), - [anon_sym_LT_AMP] = ACTIONS(3082), - [anon_sym_GT_AMP] = ACTIONS(3082), - [sym__special_characters] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3082), - [anon_sym_DOLLAR] = ACTIONS(3082), - [sym_raw_string] = ACTIONS(3082), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3082), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3082), - [anon_sym_BQUOTE] = ACTIONS(3082), - [anon_sym_LT_LPAREN] = ACTIONS(3082), - [anon_sym_GT_LPAREN] = ACTIONS(3082), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(3082), - [anon_sym_SEMI] = ACTIONS(3082), - [anon_sym_LF] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3082), - }, - [2311] = { - [aux_sym_concatenation_repeat1] = STATE(2314), - [sym__concat] = ACTIONS(4869), - [anon_sym_PIPE] = ACTIONS(3638), - [anon_sym_RPAREN] = ACTIONS(3638), - [anon_sym_SEMI_SEMI] = ACTIONS(3638), - [anon_sym_PIPE_AMP] = ACTIONS(3638), - [anon_sym_AMP_AMP] = ACTIONS(3638), - [anon_sym_PIPE_PIPE] = ACTIONS(3638), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym_LF] = ACTIONS(3638), - [anon_sym_AMP] = ACTIONS(3638), - }, - [2312] = { - [aux_sym_concatenation_repeat1] = STATE(2314), - [sym__concat] = ACTIONS(4869), - [anon_sym_PIPE] = ACTIONS(3640), - [anon_sym_RPAREN] = ACTIONS(3640), - [anon_sym_SEMI_SEMI] = ACTIONS(3640), - [anon_sym_PIPE_AMP] = ACTIONS(3640), - [anon_sym_AMP_AMP] = ACTIONS(3640), - [anon_sym_PIPE_PIPE] = ACTIONS(3640), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3640), - [anon_sym_LF] = ACTIONS(3640), - [anon_sym_AMP] = ACTIONS(3640), - }, - [2313] = { - [sym_string] = STATE(2608), - [sym_simple_expansion] = STATE(2608), - [sym_string_expansion] = STATE(2608), - [sym_expansion] = STATE(2608), - [sym_command_substitution] = STATE(2608), - [sym_process_substitution] = STATE(2608), - [sym__special_characters] = ACTIONS(5442), - [anon_sym_DQUOTE] = ACTIONS(3998), - [anon_sym_DOLLAR] = ACTIONS(4000), - [sym_raw_string] = ACTIONS(5444), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4004), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4006), - [anon_sym_BQUOTE] = ACTIONS(4008), - [anon_sym_LT_LPAREN] = ACTIONS(4010), - [anon_sym_GT_LPAREN] = ACTIONS(4010), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5442), - }, - [2314] = { - [aux_sym_concatenation_repeat1] = STATE(2609), - [sym__concat] = ACTIONS(4869), - [anon_sym_PIPE] = ACTIONS(762), - [anon_sym_RPAREN] = ACTIONS(762), - [anon_sym_SEMI_SEMI] = ACTIONS(762), - [anon_sym_PIPE_AMP] = ACTIONS(762), - [anon_sym_AMP_AMP] = ACTIONS(762), - [anon_sym_PIPE_PIPE] = ACTIONS(762), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(762), - [anon_sym_LF] = ACTIONS(762), - [anon_sym_AMP] = ACTIONS(762), - }, - [2315] = { - [sym__concat] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(766), - [anon_sym_RPAREN] = ACTIONS(766), - [anon_sym_SEMI_SEMI] = ACTIONS(766), - [anon_sym_PIPE_AMP] = ACTIONS(766), - [anon_sym_AMP_AMP] = ACTIONS(766), - [anon_sym_PIPE_PIPE] = ACTIONS(766), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(766), - [anon_sym_LF] = ACTIONS(766), - [anon_sym_AMP] = ACTIONS(766), - }, - [2316] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(5446), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [2317] = { - [sym__concat] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(798), - [anon_sym_RPAREN] = ACTIONS(798), - [anon_sym_SEMI_SEMI] = ACTIONS(798), - [anon_sym_PIPE_AMP] = ACTIONS(798), - [anon_sym_AMP_AMP] = ACTIONS(798), - [anon_sym_PIPE_PIPE] = ACTIONS(798), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(798), - [anon_sym_LF] = ACTIONS(798), - [anon_sym_AMP] = ACTIONS(798), - }, - [2318] = { - [sym__concat] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(802), - [anon_sym_RPAREN] = ACTIONS(802), - [anon_sym_SEMI_SEMI] = ACTIONS(802), - [anon_sym_PIPE_AMP] = ACTIONS(802), - [anon_sym_AMP_AMP] = ACTIONS(802), - [anon_sym_PIPE_PIPE] = ACTIONS(802), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(802), - [anon_sym_LF] = ACTIONS(802), - [anon_sym_AMP] = ACTIONS(802), - }, - [2319] = { - [sym__concat] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(806), - [anon_sym_RPAREN] = ACTIONS(806), - [anon_sym_SEMI_SEMI] = ACTIONS(806), - [anon_sym_PIPE_AMP] = ACTIONS(806), - [anon_sym_AMP_AMP] = ACTIONS(806), - [anon_sym_PIPE_PIPE] = ACTIONS(806), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(806), - [anon_sym_LF] = ACTIONS(806), - [anon_sym_AMP] = ACTIONS(806), - }, - [2320] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(5448), + [1967] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(5421), [sym_comment] = ACTIONS(56), }, - [2321] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2613), - [anon_sym_RBRACE] = ACTIONS(5450), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2322] = { - [sym_subscript] = STATE(2617), - [sym_variable_name] = ACTIONS(5452), - [anon_sym_DOLLAR] = ACTIONS(5454), - [anon_sym_DASH] = ACTIONS(5454), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5456), - [anon_sym_STAR] = ACTIONS(5454), - [anon_sym_AT] = ACTIONS(5454), - [anon_sym_QMARK] = ACTIONS(5454), - [anon_sym_0] = ACTIONS(5458), - [anon_sym__] = ACTIONS(5458), - }, - [2323] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2619), - [anon_sym_RBRACE] = ACTIONS(5460), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2324] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2621), - [anon_sym_RBRACE] = ACTIONS(5462), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2325] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(5464), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [2326] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(5464), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [2327] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(5464), - [sym_comment] = ACTIONS(56), - }, - [2328] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(5464), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [2329] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(5466), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [2330] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(5466), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [2331] = { - [sym__concat] = ACTIONS(4214), - [sym_variable_name] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_RPAREN] = ACTIONS(4216), - [anon_sym_SEMI_SEMI] = ACTIONS(4216), - [anon_sym_PIPE_AMP] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4216), - [anon_sym_PIPE_PIPE] = ACTIONS(4216), - [sym__special_characters] = ACTIONS(4216), - [anon_sym_DQUOTE] = ACTIONS(4216), - [anon_sym_DOLLAR] = ACTIONS(4216), - [sym_raw_string] = ACTIONS(4216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4216), - [anon_sym_BQUOTE] = ACTIONS(4216), - [anon_sym_LT_LPAREN] = ACTIONS(4216), - [anon_sym_GT_LPAREN] = ACTIONS(4216), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4216), - [sym_word] = ACTIONS(4216), - [anon_sym_SEMI] = ACTIONS(4216), - [anon_sym_LF] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - }, - [2332] = { - [sym__concat] = ACTIONS(4220), - [sym_variable_name] = ACTIONS(4220), - [anon_sym_PIPE] = ACTIONS(4222), - [anon_sym_RPAREN] = ACTIONS(4222), - [anon_sym_SEMI_SEMI] = ACTIONS(4222), - [anon_sym_PIPE_AMP] = ACTIONS(4222), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym__special_characters] = ACTIONS(4222), - [anon_sym_DQUOTE] = ACTIONS(4222), - [anon_sym_DOLLAR] = ACTIONS(4222), - [sym_raw_string] = ACTIONS(4222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4222), - [anon_sym_BQUOTE] = ACTIONS(4222), - [anon_sym_LT_LPAREN] = ACTIONS(4222), - [anon_sym_GT_LPAREN] = ACTIONS(4222), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4222), - [sym_word] = ACTIONS(4222), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_LF] = ACTIONS(4222), - [anon_sym_AMP] = ACTIONS(4222), - }, - [2333] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5468), - [sym_comment] = ACTIONS(56), - }, - [2334] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5470), - [sym_comment] = ACTIONS(56), - }, - [2335] = { - [anon_sym_RBRACE] = ACTIONS(5470), - [sym_comment] = ACTIONS(56), - }, - [2336] = { - [sym__concat] = ACTIONS(4269), - [sym_variable_name] = ACTIONS(4269), - [anon_sym_PIPE] = ACTIONS(4271), - [anon_sym_RPAREN] = ACTIONS(4271), - [anon_sym_SEMI_SEMI] = ACTIONS(4271), - [anon_sym_PIPE_AMP] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [sym__special_characters] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4271), - [sym_raw_string] = ACTIONS(4271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4271), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4271), - [anon_sym_BQUOTE] = ACTIONS(4271), - [anon_sym_LT_LPAREN] = ACTIONS(4271), - [anon_sym_GT_LPAREN] = ACTIONS(4271), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4271), - [sym_word] = ACTIONS(4271), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_LF] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4271), - }, - [2337] = { - [sym__concat] = ACTIONS(4273), - [sym_variable_name] = ACTIONS(4273), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [anon_sym_SEMI_SEMI] = 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(4275), - [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(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4275), - [sym_word] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_LF] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4275), - }, - [2338] = { - [sym__concat] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_RPAREN] = ACTIONS(4216), - [anon_sym_SEMI_SEMI] = ACTIONS(4216), - [anon_sym_PIPE_AMP] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4216), - [anon_sym_PIPE_PIPE] = ACTIONS(4216), - [sym__special_characters] = ACTIONS(4216), - [anon_sym_DQUOTE] = ACTIONS(4216), - [anon_sym_DOLLAR] = ACTIONS(4216), - [sym_raw_string] = ACTIONS(4216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4216), - [anon_sym_BQUOTE] = ACTIONS(4216), - [anon_sym_LT_LPAREN] = ACTIONS(4216), - [anon_sym_GT_LPAREN] = ACTIONS(4216), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4216), - [sym_word] = ACTIONS(4216), - [anon_sym_SEMI] = ACTIONS(4216), - [anon_sym_LF] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - }, - [2339] = { - [sym__concat] = ACTIONS(4220), - [anon_sym_PIPE] = ACTIONS(4222), - [anon_sym_RPAREN] = ACTIONS(4222), - [anon_sym_SEMI_SEMI] = ACTIONS(4222), - [anon_sym_PIPE_AMP] = ACTIONS(4222), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym__special_characters] = ACTIONS(4222), - [anon_sym_DQUOTE] = ACTIONS(4222), - [anon_sym_DOLLAR] = ACTIONS(4222), - [sym_raw_string] = ACTIONS(4222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4222), - [anon_sym_BQUOTE] = ACTIONS(4222), - [anon_sym_LT_LPAREN] = ACTIONS(4222), - [anon_sym_GT_LPAREN] = ACTIONS(4222), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4222), - [sym_word] = ACTIONS(4222), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_LF] = ACTIONS(4222), - [anon_sym_AMP] = ACTIONS(4222), - }, - [2340] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5472), - [sym_comment] = ACTIONS(56), - }, - [2341] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5474), - [sym_comment] = ACTIONS(56), - }, - [2342] = { - [anon_sym_RBRACE] = ACTIONS(5474), - [sym_comment] = ACTIONS(56), - }, - [2343] = { - [sym__concat] = ACTIONS(4269), - [anon_sym_PIPE] = ACTIONS(4271), - [anon_sym_RPAREN] = ACTIONS(4271), - [anon_sym_SEMI_SEMI] = ACTIONS(4271), - [anon_sym_PIPE_AMP] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [sym__special_characters] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4271), - [sym_raw_string] = ACTIONS(4271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4271), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4271), - [anon_sym_BQUOTE] = ACTIONS(4271), - [anon_sym_LT_LPAREN] = ACTIONS(4271), - [anon_sym_GT_LPAREN] = ACTIONS(4271), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4271), - [sym_word] = ACTIONS(4271), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_LF] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4271), - }, - [2344] = { - [sym__concat] = ACTIONS(4273), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [anon_sym_SEMI_SEMI] = 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(4275), - [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(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4275), - [sym_word] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_LF] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4275), - }, - [2345] = { - [sym_file_descriptor] = ACTIONS(5021), - [sym__concat] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [anon_sym_SEMI_SEMI] = ACTIONS(5023), - [anon_sym_PIPE_AMP] = ACTIONS(5023), - [anon_sym_AMP_AMP] = ACTIONS(5023), - [anon_sym_PIPE_PIPE] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5023), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_GT_GT] = ACTIONS(5023), - [anon_sym_AMP_GT] = ACTIONS(5023), - [anon_sym_AMP_GT_GT] = ACTIONS(5023), - [anon_sym_LT_AMP] = ACTIONS(5023), - [anon_sym_GT_AMP] = ACTIONS(5023), - [anon_sym_LT_LT] = ACTIONS(5023), - [anon_sym_LT_LT_DASH] = ACTIONS(5023), - [anon_sym_LT_LT_LT] = ACTIONS(5023), - [sym__special_characters] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5023), - [sym_raw_string] = ACTIONS(5023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5023), - [anon_sym_BQUOTE] = ACTIONS(5023), - [anon_sym_LT_LPAREN] = ACTIONS(5023), - [anon_sym_GT_LPAREN] = ACTIONS(5023), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(5023), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_LF] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(5023), - }, - [2346] = { - [sym_file_descriptor] = ACTIONS(5025), - [sym__concat] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [anon_sym_SEMI_SEMI] = ACTIONS(5027), - [anon_sym_PIPE_AMP] = ACTIONS(5027), - [anon_sym_AMP_AMP] = ACTIONS(5027), - [anon_sym_PIPE_PIPE] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5027), - [anon_sym_GT] = ACTIONS(5027), - [anon_sym_GT_GT] = ACTIONS(5027), - [anon_sym_AMP_GT] = ACTIONS(5027), - [anon_sym_AMP_GT_GT] = ACTIONS(5027), - [anon_sym_LT_AMP] = ACTIONS(5027), - [anon_sym_GT_AMP] = ACTIONS(5027), - [anon_sym_LT_LT] = ACTIONS(5027), - [anon_sym_LT_LT_DASH] = ACTIONS(5027), - [anon_sym_LT_LT_LT] = ACTIONS(5027), - [sym__special_characters] = ACTIONS(5027), - [anon_sym_DQUOTE] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5027), - [sym_raw_string] = ACTIONS(5027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5027), - [anon_sym_BQUOTE] = ACTIONS(5027), - [anon_sym_LT_LPAREN] = ACTIONS(5027), - [anon_sym_GT_LPAREN] = ACTIONS(5027), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(5027), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_LF] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(5027), - }, - [2347] = { - [sym_file_descriptor] = ACTIONS(2969), - [sym__concat] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_RPAREN] = ACTIONS(2971), - [anon_sym_SEMI_SEMI] = ACTIONS(2971), - [anon_sym_PIPE_AMP] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_PIPE_PIPE] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(2971), - [anon_sym_GT_GT] = ACTIONS(2971), - [anon_sym_AMP_GT] = ACTIONS(2971), - [anon_sym_AMP_GT_GT] = ACTIONS(2971), - [anon_sym_LT_AMP] = ACTIONS(2971), - [anon_sym_GT_AMP] = ACTIONS(2971), - [anon_sym_LT_LT] = ACTIONS(2971), - [anon_sym_LT_LT_DASH] = ACTIONS(2971), - [anon_sym_LT_LT_LT] = ACTIONS(2971), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - }, - [2348] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5476), - [sym_comment] = ACTIONS(56), - }, - [2349] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5478), - [sym_comment] = ACTIONS(56), - }, - [2350] = { - [anon_sym_RBRACE] = ACTIONS(5478), - [sym_comment] = ACTIONS(56), - }, - [2351] = { - [sym_file_descriptor] = ACTIONS(3023), - [sym__concat] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3025), - [anon_sym_RPAREN] = ACTIONS(3025), - [anon_sym_SEMI_SEMI] = ACTIONS(3025), - [anon_sym_PIPE_AMP] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(3025), - [anon_sym_GT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_AMP_GT] = ACTIONS(3025), - [anon_sym_AMP_GT_GT] = ACTIONS(3025), - [anon_sym_LT_AMP] = ACTIONS(3025), - [anon_sym_GT_AMP] = ACTIONS(3025), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_LT_LT_DASH] = ACTIONS(3025), - [anon_sym_LT_LT_LT] = ACTIONS(3025), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_LF] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3025), - }, - [2352] = { - [sym_concatenation] = STATE(2632), - [sym_string] = STATE(2631), - [sym_simple_expansion] = STATE(2631), - [sym_string_expansion] = STATE(2631), - [sym_expansion] = STATE(2631), - [sym_command_substitution] = STATE(2631), - [sym_process_substitution] = STATE(2631), - [anon_sym_RBRACE] = ACTIONS(5478), - [sym__special_characters] = ACTIONS(5480), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5482), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5484), - }, - [2353] = { - [sym_file_descriptor] = ACTIONS(3068), - [sym__concat] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_RPAREN] = ACTIONS(3070), - [anon_sym_SEMI_SEMI] = ACTIONS(3070), - [anon_sym_PIPE_AMP] = ACTIONS(3070), - [anon_sym_AMP_AMP] = ACTIONS(3070), - [anon_sym_PIPE_PIPE] = ACTIONS(3070), - [anon_sym_LT] = ACTIONS(3070), - [anon_sym_GT] = ACTIONS(3070), - [anon_sym_GT_GT] = ACTIONS(3070), - [anon_sym_AMP_GT] = ACTIONS(3070), - [anon_sym_AMP_GT_GT] = ACTIONS(3070), - [anon_sym_LT_AMP] = ACTIONS(3070), - [anon_sym_GT_AMP] = ACTIONS(3070), - [anon_sym_LT_LT] = ACTIONS(3070), - [anon_sym_LT_LT_DASH] = ACTIONS(3070), - [anon_sym_LT_LT_LT] = ACTIONS(3070), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3070), - [anon_sym_LF] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3070), - }, - [2354] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5486), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2355] = { - [sym_file_descriptor] = ACTIONS(3074), - [sym__concat] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(3076), - [anon_sym_RPAREN] = ACTIONS(3076), - [anon_sym_SEMI_SEMI] = ACTIONS(3076), - [anon_sym_PIPE_AMP] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [anon_sym_LT] = ACTIONS(3076), - [anon_sym_GT] = ACTIONS(3076), - [anon_sym_GT_GT] = ACTIONS(3076), - [anon_sym_AMP_GT] = ACTIONS(3076), - [anon_sym_AMP_GT_GT] = ACTIONS(3076), - [anon_sym_LT_AMP] = ACTIONS(3076), - [anon_sym_GT_AMP] = ACTIONS(3076), - [anon_sym_LT_LT] = ACTIONS(3076), - [anon_sym_LT_LT_DASH] = ACTIONS(3076), - [anon_sym_LT_LT_LT] = ACTIONS(3076), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3076), - [anon_sym_LF] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3076), - }, - [2356] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5488), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2357] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5478), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2358] = { - [sym_file_descriptor] = ACTIONS(3080), - [sym__concat] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(3082), - [anon_sym_RPAREN] = ACTIONS(3082), - [anon_sym_SEMI_SEMI] = ACTIONS(3082), - [anon_sym_PIPE_AMP] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [anon_sym_LT] = ACTIONS(3082), - [anon_sym_GT] = ACTIONS(3082), - [anon_sym_GT_GT] = ACTIONS(3082), - [anon_sym_AMP_GT] = ACTIONS(3082), - [anon_sym_AMP_GT_GT] = ACTIONS(3082), - [anon_sym_LT_AMP] = ACTIONS(3082), - [anon_sym_GT_AMP] = ACTIONS(3082), - [anon_sym_LT_LT] = ACTIONS(3082), - [anon_sym_LT_LT_DASH] = ACTIONS(3082), - [anon_sym_LT_LT_LT] = ACTIONS(3082), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3082), - [anon_sym_LF] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3082), - }, - [2359] = { - [sym__concat] = ACTIONS(5021), - [anon_sym_EQ_TILDE] = ACTIONS(5490), - [anon_sym_RBRACK] = ACTIONS(5021), - [sym__special_characters] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR] = ACTIONS(5490), - [sym_raw_string] = ACTIONS(5021), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5021), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5021), - [anon_sym_LT_LPAREN] = ACTIONS(5021), - [anon_sym_GT_LPAREN] = ACTIONS(5021), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5023), - }, - [2360] = { - [sym__concat] = ACTIONS(5025), - [anon_sym_EQ_TILDE] = ACTIONS(5492), - [anon_sym_RBRACK] = ACTIONS(5025), - [sym__special_characters] = ACTIONS(5027), - [anon_sym_DQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR] = ACTIONS(5492), - [sym_raw_string] = ACTIONS(5025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5025), - [anon_sym_LT_LPAREN] = ACTIONS(5025), - [anon_sym_GT_LPAREN] = ACTIONS(5025), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5027), - }, - [2361] = { - [sym__concat] = ACTIONS(5021), - [anon_sym_EQ_TILDE] = ACTIONS(5490), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5021), - [sym__special_characters] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR] = ACTIONS(5490), - [sym_raw_string] = ACTIONS(5021), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5021), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5021), - [anon_sym_LT_LPAREN] = ACTIONS(5021), - [anon_sym_GT_LPAREN] = ACTIONS(5021), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5023), - }, - [2362] = { - [sym__concat] = ACTIONS(5025), - [anon_sym_EQ_TILDE] = ACTIONS(5492), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5025), - [sym__special_characters] = ACTIONS(5027), - [anon_sym_DQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR] = ACTIONS(5492), - [sym_raw_string] = ACTIONS(5025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5025), - [anon_sym_LT_LPAREN] = ACTIONS(5025), - [anon_sym_GT_LPAREN] = ACTIONS(5025), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5027), - }, - [2363] = { - [sym__concat] = ACTIONS(5021), - [sym_variable_name] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_SEMI_SEMI] = ACTIONS(5023), - [anon_sym_PIPE_AMP] = ACTIONS(5023), - [anon_sym_AMP_AMP] = ACTIONS(5023), - [anon_sym_PIPE_PIPE] = ACTIONS(5023), - [sym__special_characters] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5023), - [sym_raw_string] = ACTIONS(5023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5023), - [anon_sym_BQUOTE] = ACTIONS(5023), - [anon_sym_LT_LPAREN] = ACTIONS(5023), - [anon_sym_GT_LPAREN] = ACTIONS(5023), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5023), - [sym_word] = ACTIONS(5023), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_LF] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(5023), - }, - [2364] = { - [sym__concat] = ACTIONS(5025), - [sym_variable_name] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_SEMI_SEMI] = ACTIONS(5027), - [anon_sym_PIPE_AMP] = ACTIONS(5027), - [anon_sym_AMP_AMP] = ACTIONS(5027), - [anon_sym_PIPE_PIPE] = ACTIONS(5027), - [sym__special_characters] = ACTIONS(5027), - [anon_sym_DQUOTE] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5027), - [sym_raw_string] = ACTIONS(5027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5027), - [anon_sym_BQUOTE] = ACTIONS(5027), - [anon_sym_LT_LPAREN] = ACTIONS(5027), - [anon_sym_GT_LPAREN] = ACTIONS(5027), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5027), - [sym_word] = ACTIONS(5027), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_LF] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(5027), - }, - [2365] = { - [sym__concat] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_SEMI_SEMI] = ACTIONS(5023), - [anon_sym_PIPE_AMP] = ACTIONS(5023), - [anon_sym_AMP_AMP] = ACTIONS(5023), - [anon_sym_PIPE_PIPE] = ACTIONS(5023), - [sym__special_characters] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5023), - [sym_raw_string] = ACTIONS(5023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5023), - [anon_sym_BQUOTE] = ACTIONS(5023), - [anon_sym_LT_LPAREN] = ACTIONS(5023), - [anon_sym_GT_LPAREN] = ACTIONS(5023), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5023), - [sym_word] = ACTIONS(5023), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_LF] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(5023), - }, - [2366] = { - [sym__concat] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_SEMI_SEMI] = ACTIONS(5027), - [anon_sym_PIPE_AMP] = ACTIONS(5027), - [anon_sym_AMP_AMP] = ACTIONS(5027), - [anon_sym_PIPE_PIPE] = ACTIONS(5027), - [sym__special_characters] = ACTIONS(5027), - [anon_sym_DQUOTE] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5027), - [sym_raw_string] = ACTIONS(5027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5027), - [anon_sym_BQUOTE] = ACTIONS(5027), - [anon_sym_LT_LPAREN] = ACTIONS(5027), - [anon_sym_GT_LPAREN] = ACTIONS(5027), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5027), - [sym_word] = ACTIONS(5027), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_LF] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(5027), - }, - [2367] = { - [sym_file_descriptor] = ACTIONS(5021), - [sym__concat] = ACTIONS(5021), - [sym_variable_name] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5490), - [anon_sym_GT] = ACTIONS(5490), - [anon_sym_GT_GT] = ACTIONS(5021), - [anon_sym_AMP_GT] = ACTIONS(5490), - [anon_sym_AMP_GT_GT] = ACTIONS(5021), - [anon_sym_LT_AMP] = ACTIONS(5021), - [anon_sym_GT_AMP] = ACTIONS(5021), - [sym__special_characters] = ACTIONS(5490), - [anon_sym_DQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR] = ACTIONS(5490), - [sym_raw_string] = ACTIONS(5021), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5021), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5021), - [anon_sym_LT_LPAREN] = ACTIONS(5021), - [anon_sym_GT_LPAREN] = ACTIONS(5021), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5490), - }, - [2368] = { - [sym_file_descriptor] = ACTIONS(5025), - [sym__concat] = ACTIONS(5025), - [sym_variable_name] = ACTIONS(5025), - [anon_sym_LT] = ACTIONS(5492), - [anon_sym_GT] = ACTIONS(5492), - [anon_sym_GT_GT] = ACTIONS(5025), - [anon_sym_AMP_GT] = ACTIONS(5492), - [anon_sym_AMP_GT_GT] = ACTIONS(5025), - [anon_sym_LT_AMP] = ACTIONS(5025), - [anon_sym_GT_AMP] = ACTIONS(5025), - [sym__special_characters] = ACTIONS(5492), - [anon_sym_DQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR] = ACTIONS(5492), - [sym_raw_string] = ACTIONS(5025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5025), - [anon_sym_LT_LPAREN] = ACTIONS(5025), - [anon_sym_GT_LPAREN] = ACTIONS(5025), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5492), - }, - [2369] = { - [sym__concat] = ACTIONS(5021), - [anon_sym_DQUOTE] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5023), - [sym__string_content] = ACTIONS(5490), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5023), - [anon_sym_BQUOTE] = ACTIONS(5023), - [sym_comment] = ACTIONS(178), - }, - [2370] = { - [sym__concat] = ACTIONS(5025), - [anon_sym_DQUOTE] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5027), - [sym__string_content] = ACTIONS(5492), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5027), - [anon_sym_BQUOTE] = ACTIONS(5027), - [sym_comment] = ACTIONS(178), - }, - [2371] = { - [anon_sym_RBRACE] = ACTIONS(4643), - [anon_sym_EQ] = ACTIONS(5494), - [sym__special_characters] = ACTIONS(5496), - [anon_sym_DQUOTE] = ACTIONS(4643), - [anon_sym_DOLLAR] = ACTIONS(5494), - [sym_raw_string] = ACTIONS(4643), - [anon_sym_POUND] = ACTIONS(4643), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4643), - [anon_sym_COLON] = ACTIONS(5494), - [anon_sym_COLON_QMARK] = ACTIONS(5494), - [anon_sym_COLON_DASH] = ACTIONS(5494), - [anon_sym_PERCENT] = ACTIONS(5494), - [anon_sym_SLASH] = ACTIONS(5494), - [anon_sym_DASH] = ACTIONS(5494), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4643), - [anon_sym_BQUOTE] = ACTIONS(4643), - [anon_sym_LT_LPAREN] = ACTIONS(4643), - [anon_sym_GT_LPAREN] = ACTIONS(4643), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(5496), - }, - [2372] = { - [anon_sym_RBRACE] = ACTIONS(4645), - [anon_sym_EQ] = ACTIONS(5498), - [sym__special_characters] = ACTIONS(5500), - [anon_sym_DQUOTE] = ACTIONS(4645), - [anon_sym_DOLLAR] = ACTIONS(5498), - [sym_raw_string] = ACTIONS(4645), - [anon_sym_POUND] = ACTIONS(4645), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4645), - [anon_sym_COLON] = ACTIONS(5498), - [anon_sym_COLON_QMARK] = ACTIONS(5498), - [anon_sym_COLON_DASH] = ACTIONS(5498), - [anon_sym_PERCENT] = ACTIONS(5498), - [anon_sym_SLASH] = ACTIONS(5498), - [anon_sym_DASH] = ACTIONS(5498), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4645), - [anon_sym_BQUOTE] = ACTIONS(4645), - [anon_sym_LT_LPAREN] = ACTIONS(4645), - [anon_sym_GT_LPAREN] = ACTIONS(4645), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(5500), - }, - [2373] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_RBRACE] = ACTIONS(2969), - [sym_comment] = ACTIONS(56), - }, - [2374] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5502), - [sym_comment] = ACTIONS(56), - }, - [2375] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5504), - [sym_comment] = ACTIONS(56), - }, - [2376] = { - [anon_sym_RBRACE] = ACTIONS(5504), - [sym_comment] = ACTIONS(56), - }, - [2377] = { - [sym__concat] = ACTIONS(3023), - [anon_sym_RBRACE] = ACTIONS(3023), - [sym_comment] = ACTIONS(56), - }, - [2378] = { - [sym_concatenation] = STATE(2639), - [sym_string] = STATE(2638), - [sym_simple_expansion] = STATE(2638), - [sym_string_expansion] = STATE(2638), - [sym_expansion] = STATE(2638), - [sym_command_substitution] = STATE(2638), - [sym_process_substitution] = STATE(2638), - [anon_sym_RBRACE] = ACTIONS(5504), - [sym__special_characters] = ACTIONS(5506), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5508), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5510), - }, - [2379] = { - [sym__concat] = ACTIONS(3068), - [anon_sym_RBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(56), - }, - [2380] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5512), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2381] = { - [sym__concat] = ACTIONS(3074), - [anon_sym_RBRACE] = ACTIONS(3074), - [sym_comment] = ACTIONS(56), - }, - [2382] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5514), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2383] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5504), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2384] = { - [sym__concat] = ACTIONS(3080), - [anon_sym_RBRACE] = ACTIONS(3080), - [sym_comment] = ACTIONS(56), - }, - [2385] = { - [sym__concat] = ACTIONS(4214), - [anon_sym_RBRACE] = ACTIONS(4214), - [anon_sym_EQ] = ACTIONS(4942), - [sym__special_characters] = ACTIONS(4216), - [anon_sym_DQUOTE] = ACTIONS(4214), - [anon_sym_DOLLAR] = ACTIONS(4942), - [sym_raw_string] = ACTIONS(4214), - [anon_sym_POUND] = ACTIONS(4214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4214), - [anon_sym_COLON] = ACTIONS(4942), - [anon_sym_COLON_QMARK] = ACTIONS(4942), - [anon_sym_COLON_DASH] = ACTIONS(4942), - [anon_sym_PERCENT] = ACTIONS(4942), - [anon_sym_SLASH] = ACTIONS(4942), - [anon_sym_DASH] = ACTIONS(4942), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4214), - [anon_sym_BQUOTE] = ACTIONS(4214), - [anon_sym_LT_LPAREN] = ACTIONS(4214), - [anon_sym_GT_LPAREN] = ACTIONS(4214), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(4216), - }, - [2386] = { - [sym__concat] = ACTIONS(4220), - [anon_sym_RBRACE] = ACTIONS(4220), - [anon_sym_EQ] = ACTIONS(4944), - [sym__special_characters] = ACTIONS(4222), - [anon_sym_DQUOTE] = ACTIONS(4220), - [anon_sym_DOLLAR] = ACTIONS(4944), - [sym_raw_string] = ACTIONS(4220), - [anon_sym_POUND] = ACTIONS(4220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4220), - [anon_sym_COLON] = ACTIONS(4944), - [anon_sym_COLON_QMARK] = ACTIONS(4944), - [anon_sym_COLON_DASH] = ACTIONS(4944), - [anon_sym_PERCENT] = ACTIONS(4944), - [anon_sym_SLASH] = ACTIONS(4944), - [anon_sym_DASH] = ACTIONS(4944), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4220), - [anon_sym_BQUOTE] = ACTIONS(4220), - [anon_sym_LT_LPAREN] = ACTIONS(4220), - [anon_sym_GT_LPAREN] = ACTIONS(4220), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(4222), - }, - [2387] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5516), - [sym_comment] = ACTIONS(56), - }, - [2388] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5518), - [sym_comment] = ACTIONS(56), - }, - [2389] = { - [anon_sym_RBRACE] = ACTIONS(5518), - [sym_comment] = ACTIONS(56), - }, - [2390] = { - [sym__concat] = ACTIONS(4269), - [anon_sym_RBRACE] = ACTIONS(4269), - [anon_sym_EQ] = ACTIONS(4950), - [sym__special_characters] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4269), - [anon_sym_DOLLAR] = ACTIONS(4950), - [sym_raw_string] = ACTIONS(4269), - [anon_sym_POUND] = ACTIONS(4269), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4269), - [anon_sym_COLON] = ACTIONS(4950), - [anon_sym_COLON_QMARK] = ACTIONS(4950), - [anon_sym_COLON_DASH] = ACTIONS(4950), - [anon_sym_PERCENT] = ACTIONS(4950), - [anon_sym_SLASH] = ACTIONS(4950), - [anon_sym_DASH] = ACTIONS(4950), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4269), - [anon_sym_BQUOTE] = ACTIONS(4269), - [anon_sym_LT_LPAREN] = ACTIONS(4269), - [anon_sym_GT_LPAREN] = ACTIONS(4269), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(4271), - }, - [2391] = { - [sym__concat] = ACTIONS(4273), - [anon_sym_RBRACE] = ACTIONS(4273), - [anon_sym_EQ] = ACTIONS(4952), - [sym__special_characters] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4273), - [anon_sym_DOLLAR] = ACTIONS(4952), - [sym_raw_string] = ACTIONS(4273), - [anon_sym_POUND] = ACTIONS(4273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_COLON] = ACTIONS(4952), - [anon_sym_COLON_QMARK] = ACTIONS(4952), - [anon_sym_COLON_DASH] = ACTIONS(4952), - [anon_sym_PERCENT] = ACTIONS(4952), - [anon_sym_SLASH] = ACTIONS(4952), - [anon_sym_DASH] = ACTIONS(4952), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4273), - [anon_sym_BQUOTE] = ACTIONS(4273), - [anon_sym_LT_LPAREN] = ACTIONS(4273), - [anon_sym_GT_LPAREN] = ACTIONS(4273), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(4275), - }, - [2392] = { - [sym_file_descriptor] = ACTIONS(2969), - [sym__concat] = ACTIONS(2969), - [sym_variable_name] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(4098), - [anon_sym_RPAREN] = ACTIONS(2969), - [anon_sym_PIPE_AMP] = ACTIONS(2969), - [anon_sym_AMP_AMP] = ACTIONS(2969), - [anon_sym_PIPE_PIPE] = ACTIONS(2969), - [anon_sym_LT] = ACTIONS(4098), - [anon_sym_GT] = ACTIONS(4098), - [anon_sym_GT_GT] = ACTIONS(2969), - [anon_sym_AMP_GT] = ACTIONS(4098), - [anon_sym_AMP_GT_GT] = ACTIONS(2969), - [anon_sym_LT_AMP] = ACTIONS(2969), - [anon_sym_GT_AMP] = ACTIONS(2969), - [sym__special_characters] = ACTIONS(4098), - [anon_sym_DQUOTE] = ACTIONS(2969), - [anon_sym_DOLLAR] = ACTIONS(4098), - [sym_raw_string] = ACTIONS(2969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2969), - [anon_sym_BQUOTE] = ACTIONS(2969), - [anon_sym_LT_LPAREN] = ACTIONS(2969), - [anon_sym_GT_LPAREN] = ACTIONS(2969), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4098), - }, - [2393] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5520), - [sym_comment] = ACTIONS(56), - }, - [2394] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5522), - [sym_comment] = ACTIONS(56), - }, - [2395] = { - [anon_sym_RBRACE] = ACTIONS(5522), - [sym_comment] = ACTIONS(56), - }, - [2396] = { - [sym_file_descriptor] = ACTIONS(3023), - [sym__concat] = ACTIONS(3023), - [sym_variable_name] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(4104), - [anon_sym_RPAREN] = ACTIONS(3023), - [anon_sym_PIPE_AMP] = ACTIONS(3023), - [anon_sym_AMP_AMP] = ACTIONS(3023), - [anon_sym_PIPE_PIPE] = ACTIONS(3023), - [anon_sym_LT] = ACTIONS(4104), - [anon_sym_GT] = ACTIONS(4104), - [anon_sym_GT_GT] = ACTIONS(3023), - [anon_sym_AMP_GT] = ACTIONS(4104), - [anon_sym_AMP_GT_GT] = ACTIONS(3023), - [anon_sym_LT_AMP] = ACTIONS(3023), - [anon_sym_GT_AMP] = ACTIONS(3023), - [sym__special_characters] = ACTIONS(4104), - [anon_sym_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR] = ACTIONS(4104), - [sym_raw_string] = ACTIONS(3023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3023), - [anon_sym_BQUOTE] = ACTIONS(3023), - [anon_sym_LT_LPAREN] = ACTIONS(3023), - [anon_sym_GT_LPAREN] = ACTIONS(3023), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4104), - }, - [2397] = { - [sym_concatenation] = STATE(2648), - [sym_string] = STATE(2647), - [sym_simple_expansion] = STATE(2647), - [sym_string_expansion] = STATE(2647), - [sym_expansion] = STATE(2647), - [sym_command_substitution] = STATE(2647), - [sym_process_substitution] = STATE(2647), - [anon_sym_RBRACE] = ACTIONS(5522), - [sym__special_characters] = ACTIONS(5524), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5526), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5528), - }, - [2398] = { - [sym_file_descriptor] = ACTIONS(3068), - [sym__concat] = ACTIONS(3068), - [sym_variable_name] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(4112), - [anon_sym_RPAREN] = ACTIONS(3068), - [anon_sym_PIPE_AMP] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(4112), - [anon_sym_GT] = ACTIONS(4112), - [anon_sym_GT_GT] = ACTIONS(3068), - [anon_sym_AMP_GT] = ACTIONS(4112), - [anon_sym_AMP_GT_GT] = ACTIONS(3068), - [anon_sym_LT_AMP] = ACTIONS(3068), - [anon_sym_GT_AMP] = ACTIONS(3068), - [sym__special_characters] = ACTIONS(4112), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(4112), - [sym_raw_string] = ACTIONS(3068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3068), - [anon_sym_BQUOTE] = ACTIONS(3068), - [anon_sym_LT_LPAREN] = ACTIONS(3068), - [anon_sym_GT_LPAREN] = ACTIONS(3068), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4112), - }, - [2399] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5530), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2400] = { - [sym_file_descriptor] = ACTIONS(3074), - [sym__concat] = ACTIONS(3074), - [sym_variable_name] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(4116), - [anon_sym_RPAREN] = ACTIONS(3074), - [anon_sym_PIPE_AMP] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_GT_GT] = ACTIONS(3074), - [anon_sym_AMP_GT] = ACTIONS(4116), - [anon_sym_AMP_GT_GT] = ACTIONS(3074), - [anon_sym_LT_AMP] = ACTIONS(3074), - [anon_sym_GT_AMP] = ACTIONS(3074), - [sym__special_characters] = ACTIONS(4116), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_DOLLAR] = ACTIONS(4116), - [sym_raw_string] = ACTIONS(3074), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3074), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3074), - [anon_sym_BQUOTE] = ACTIONS(3074), - [anon_sym_LT_LPAREN] = ACTIONS(3074), - [anon_sym_GT_LPAREN] = ACTIONS(3074), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4116), - }, - [2401] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5532), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2402] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5522), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2403] = { - [sym_file_descriptor] = ACTIONS(3080), - [sym__concat] = ACTIONS(3080), - [sym_variable_name] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(4120), - [anon_sym_RPAREN] = ACTIONS(3080), - [anon_sym_PIPE_AMP] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(4120), - [anon_sym_GT] = ACTIONS(4120), - [anon_sym_GT_GT] = ACTIONS(3080), - [anon_sym_AMP_GT] = ACTIONS(4120), - [anon_sym_AMP_GT_GT] = ACTIONS(3080), - [anon_sym_LT_AMP] = ACTIONS(3080), - [anon_sym_GT_AMP] = ACTIONS(3080), - [sym__special_characters] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(3080), - [anon_sym_DOLLAR] = ACTIONS(4120), - [sym_raw_string] = ACTIONS(3080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3080), - [anon_sym_BQUOTE] = ACTIONS(3080), - [anon_sym_LT_LPAREN] = ACTIONS(3080), - [anon_sym_GT_LPAREN] = ACTIONS(3080), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4120), - }, - [2404] = { - [sym__terminated_statement] = STATE(673), - [sym_for_statement] = STATE(674), - [sym_while_statement] = STATE(674), - [sym_if_statement] = STATE(674), - [sym_case_statement] = STATE(674), - [sym_function_definition] = STATE(674), - [sym_subshell] = STATE(674), - [sym_pipeline] = STATE(674), - [sym_list] = STATE(674), - [sym_bracket_command] = STATE(674), - [sym_command] = STATE(674), + [1968] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2617), + [anon_sym_RBRACE] = ACTIONS(5423), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5425), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1969] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2620), + [anon_sym_RBRACE] = ACTIONS(5427), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5429), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1970] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2622), + [anon_sym_RBRACE] = ACTIONS(5409), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5431), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1971] = { + [sym__concat] = ACTIONS(1992), + [anon_sym_SEMI_SEMI] = ACTIONS(1994), + [sym__special_characters] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [anon_sym_DOLLAR] = ACTIONS(1994), + [sym_raw_string] = ACTIONS(1994), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1994), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1994), + [anon_sym_BQUOTE] = ACTIONS(1994), + [anon_sym_LT_LPAREN] = ACTIONS(1994), + [anon_sym_GT_LPAREN] = ACTIONS(1994), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_LF] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + }, + [1972] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5433), + }, + [1973] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5435), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1974] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2002), + [anon_sym_BQUOTE] = ACTIONS(2002), + [anon_sym_LT_LPAREN] = ACTIONS(2002), + [anon_sym_GT_LPAREN] = ACTIONS(2002), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2002), + }, + [1975] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5437), + }, + [1976] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5409), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [1977] = { + [sym__concat] = ACTIONS(2156), + [anon_sym_SEMI_SEMI] = ACTIONS(2158), + [sym__special_characters] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2158), + [anon_sym_DOLLAR] = ACTIONS(2158), + [sym_raw_string] = ACTIONS(2158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2158), + [anon_sym_BQUOTE] = ACTIONS(2158), + [anon_sym_LT_LPAREN] = ACTIONS(2158), + [anon_sym_GT_LPAREN] = ACTIONS(2158), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym_LF] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2158), + }, + [1978] = { + [sym__concat] = ACTIONS(2358), + [anon_sym_SEMI_SEMI] = ACTIONS(2360), + [sym__special_characters] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [anon_sym_DOLLAR] = ACTIONS(2360), + [sym_raw_string] = ACTIONS(2360), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2360), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2360), + [anon_sym_BQUOTE] = ACTIONS(2360), + [anon_sym_LT_LPAREN] = ACTIONS(2360), + [anon_sym_GT_LPAREN] = ACTIONS(2360), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + }, + [1979] = { + [sym__terminated_statement] = STATE(691), + [sym_for_statement] = STATE(692), + [sym_while_statement] = STATE(692), + [sym_if_statement] = STATE(692), + [sym_case_statement] = STATE(692), + [sym_function_definition] = STATE(692), + [sym_subshell] = STATE(692), + [sym_pipeline] = STATE(692), + [sym_list] = STATE(692), + [sym_command] = STATE(692), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(675), - [sym_declaration_command] = STATE(674), - [sym_unset_command] = STATE(674), + [sym_bracket_command] = STATE(692), + [sym_variable_assignment] = STATE(693), + [sym_declaration_command] = STATE(692), + [sym_unset_command] = STATE(692), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -63407,13 +55242,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(2652), + [aux_sym_program_repeat1] = STATE(2627), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(5534), + [anon_sym_done] = ACTIONS(5439), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), @@ -63446,2676 +55281,1995 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(58), }, - [2405] = { + [1980] = { + [anon_sym_PIPE] = ACTIONS(5441), + [anon_sym_RPAREN] = ACTIONS(5441), + [anon_sym_SEMI_SEMI] = ACTIONS(5441), + [anon_sym_PIPE_AMP] = ACTIONS(5441), + [anon_sym_AMP_AMP] = ACTIONS(5441), + [anon_sym_PIPE_PIPE] = ACTIONS(5441), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5441), + [anon_sym_LF] = ACTIONS(5441), + [anon_sym_AMP] = ACTIONS(5441), + }, + [1981] = { + [sym__terminated_statement] = STATE(699), + [sym_for_statement] = STATE(700), + [sym_while_statement] = STATE(700), + [sym_if_statement] = STATE(700), + [sym_case_statement] = STATE(700), + [sym_function_definition] = STATE(700), + [sym_subshell] = STATE(700), + [sym_pipeline] = STATE(700), + [sym_list] = STATE(700), + [sym_command] = STATE(700), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(700), + [sym_variable_assignment] = STATE(703), + [sym_declaration_command] = STATE(700), + [sym_unset_command] = STATE(700), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(2628), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_fi] = ACTIONS(5443), + [anon_sym_elif] = ACTIONS(5443), + [anon_sym_else] = ACTIONS(5443), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [1982] = { + [sym_file_descriptor] = ACTIONS(1080), + [sym_variable_name] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_fi] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_function] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1080), + [anon_sym_declare] = ACTIONS(1082), + [anon_sym_typeset] = ACTIONS(1082), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_readonly] = ACTIONS(1082), + [anon_sym_local] = ACTIONS(1082), + [anon_sym_unset] = ACTIONS(1082), + [anon_sym_unsetenv] = ACTIONS(1082), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1080), + [anon_sym_LT_AMP] = ACTIONS(1080), + [anon_sym_GT_AMP] = ACTIONS(1080), + [sym__special_characters] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(1080), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1080), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1080), + [anon_sym_BQUOTE] = ACTIONS(1080), + [anon_sym_LT_LPAREN] = ACTIONS(1080), + [anon_sym_GT_LPAREN] = ACTIONS(1080), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1084), + }, + [1983] = { + [sym__terminated_statement] = STATE(1313), + [sym_for_statement] = STATE(1314), + [sym_while_statement] = STATE(1314), + [sym_if_statement] = STATE(1314), + [sym_case_statement] = STATE(1314), + [sym_function_definition] = STATE(1314), + [sym_subshell] = STATE(1314), + [sym_pipeline] = STATE(1314), + [sym_list] = STATE(1314), + [sym_command] = STATE(1314), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(1314), + [sym_variable_assignment] = STATE(1315), + [sym_declaration_command] = STATE(1314), + [sym_unset_command] = STATE(1314), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1983), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(1130), + [sym_variable_name] = ACTIONS(1133), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_if] = ACTIONS(1144), + [anon_sym_fi] = ACTIONS(4241), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_function] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1162), + [anon_sym_typeset] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(1162), + [anon_sym_readonly] = ACTIONS(1162), + [anon_sym_local] = ACTIONS(1162), + [anon_sym_unset] = ACTIONS(1165), + [anon_sym_unsetenv] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(1168), + [anon_sym_GT] = ACTIONS(1168), + [anon_sym_GT_GT] = ACTIONS(1171), + [anon_sym_AMP_GT] = ACTIONS(1168), + [anon_sym_AMP_GT_GT] = ACTIONS(1171), + [anon_sym_LT_AMP] = ACTIONS(1171), + [anon_sym_GT_AMP] = ACTIONS(1171), + [sym__special_characters] = ACTIONS(1174), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1180), + [sym_raw_string] = ACTIONS(1183), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1186), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1189), + [anon_sym_BQUOTE] = ACTIONS(1192), + [anon_sym_LT_LPAREN] = ACTIONS(1195), + [anon_sym_GT_LPAREN] = ACTIONS(1195), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1198), + }, + [1984] = { + [anon_sym_PIPE] = ACTIONS(5445), + [anon_sym_RPAREN] = ACTIONS(5445), + [anon_sym_SEMI_SEMI] = ACTIONS(5445), + [anon_sym_PIPE_AMP] = ACTIONS(5445), + [anon_sym_AMP_AMP] = ACTIONS(5445), + [anon_sym_PIPE_PIPE] = ACTIONS(5445), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5445), + [anon_sym_LF] = ACTIONS(5445), + [anon_sym_AMP] = ACTIONS(5445), + }, + [1985] = { + [anon_sym_fi] = ACTIONS(5447), + [sym_comment] = ACTIONS(56), + }, + [1986] = { + [sym_string] = STATE(2630), + [sym_simple_expansion] = STATE(2630), + [sym_string_expansion] = STATE(2630), + [sym_expansion] = STATE(2630), + [sym_command_substitution] = STATE(2630), + [sym_process_substitution] = STATE(2630), + [sym__special_characters] = ACTIONS(5449), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2657), + [sym_raw_string] = ACTIONS(5451), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2663), + [anon_sym_BQUOTE] = ACTIONS(2665), + [anon_sym_LT_LPAREN] = ACTIONS(2667), + [anon_sym_GT_LPAREN] = ACTIONS(2667), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5449), + }, + [1987] = { + [sym_concatenation] = STATE(2633), + [sym_string] = STATE(2632), + [sym_simple_expansion] = STATE(2632), + [sym_string_expansion] = STATE(2632), + [sym_expansion] = STATE(2632), + [sym_command_substitution] = STATE(2632), + [sym_process_substitution] = STATE(2632), + [sym__special_characters] = ACTIONS(5453), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2657), + [sym_raw_string] = ACTIONS(5455), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2663), + [anon_sym_BQUOTE] = ACTIONS(2665), + [anon_sym_LT_LPAREN] = ACTIONS(2667), + [anon_sym_GT_LPAREN] = ACTIONS(2667), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5457), + }, + [1988] = { + [sym__terminated_statement] = STATE(2635), + [sym_for_statement] = STATE(2636), + [sym_while_statement] = STATE(2636), + [sym_if_statement] = STATE(2636), + [sym_case_statement] = STATE(2636), + [sym_function_definition] = STATE(2636), + [sym_subshell] = STATE(2636), + [sym_pipeline] = STATE(2636), + [sym_list] = STATE(2636), + [sym_command] = STATE(2636), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(2636), + [sym_variable_assignment] = STATE(2637), + [sym_declaration_command] = STATE(2636), + [sym_unset_command] = STATE(2636), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(2638), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_esac] = ACTIONS(5459), + [anon_sym_SEMI_SEMI] = ACTIONS(5461), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [1989] = { + [aux_sym_case_item_repeat1] = STATE(2640), + [anon_sym_PIPE] = ACTIONS(4262), + [anon_sym_RPAREN] = ACTIONS(5463), + [sym_comment] = ACTIONS(56), + }, + [1990] = { + [aux_sym_concatenation_repeat1] = STATE(2641), + [sym__concat] = ACTIONS(4260), + [anon_sym_PIPE] = ACTIONS(772), + [anon_sym_RPAREN] = ACTIONS(772), + [sym_comment] = ACTIONS(56), + }, + [1991] = { + [sym__concat] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(776), + [sym_comment] = ACTIONS(56), + }, + [1992] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(5465), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [1993] = { + [sym__concat] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(808), + [anon_sym_RPAREN] = ACTIONS(808), + [sym_comment] = ACTIONS(56), + }, + [1994] = { + [sym__concat] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(812), + [anon_sym_RPAREN] = ACTIONS(812), + [sym_comment] = ACTIONS(56), + }, + [1995] = { + [sym__concat] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(816), + [anon_sym_RPAREN] = ACTIONS(816), + [sym_comment] = ACTIONS(56), + }, + [1996] = { + [sym__terminated_statement] = STATE(2635), + [sym_for_statement] = STATE(2636), + [sym_while_statement] = STATE(2636), + [sym_if_statement] = STATE(2636), + [sym_case_statement] = STATE(2636), + [sym_function_definition] = STATE(2636), + [sym_subshell] = STATE(2636), + [sym_pipeline] = STATE(2636), + [sym_list] = STATE(2636), + [sym_command] = STATE(2636), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(2636), + [sym_variable_assignment] = STATE(2637), + [sym_declaration_command] = STATE(2636), + [sym_unset_command] = STATE(2636), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(2644), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_esac] = ACTIONS(5467), + [anon_sym_SEMI_SEMI] = ACTIONS(5469), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [1997] = { + [aux_sym_case_item_repeat1] = STATE(2640), + [anon_sym_PIPE] = ACTIONS(4262), + [anon_sym_RPAREN] = ACTIONS(5471), + [sym_comment] = ACTIONS(56), + }, + [1998] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(5473), + [sym_comment] = ACTIONS(56), + }, + [1999] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2649), + [anon_sym_RBRACE] = ACTIONS(5475), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5477), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2000] = { + [sym_subscript] = STATE(2653), + [sym_variable_name] = ACTIONS(5479), + [anon_sym_DOLLAR] = ACTIONS(5481), + [anon_sym_DASH] = ACTIONS(5481), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5483), + [anon_sym_STAR] = ACTIONS(5481), + [anon_sym_AT] = ACTIONS(5481), + [anon_sym_QMARK] = ACTIONS(5481), + [anon_sym_0] = ACTIONS(5485), + [anon_sym__] = ACTIONS(5485), + }, + [2001] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2656), + [anon_sym_RBRACE] = ACTIONS(5487), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5489), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2002] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2659), + [anon_sym_RBRACE] = ACTIONS(5491), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5493), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2003] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(5495), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [2004] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(5495), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [2005] = { + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(5495), + [sym_comment] = ACTIONS(56), + }, + [2006] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(5495), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [2007] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(5497), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [2008] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(5497), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [2009] = { + [anon_sym_PIPE] = ACTIONS(5499), + [anon_sym_RPAREN] = ACTIONS(5499), + [anon_sym_SEMI_SEMI] = ACTIONS(5499), + [anon_sym_PIPE_AMP] = ACTIONS(5499), + [anon_sym_AMP_AMP] = ACTIONS(5499), + [anon_sym_PIPE_PIPE] = ACTIONS(5499), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5499), + [anon_sym_LF] = ACTIONS(5499), + [anon_sym_AMP] = ACTIONS(5499), + }, + [2010] = { + [anon_sym_esac] = ACTIONS(5501), + [sym_comment] = ACTIONS(56), + }, + [2011] = { + [sym_case_item] = STATE(1332), + [sym_concatenation] = STATE(2665), + [sym_string] = STATE(2664), + [sym_simple_expansion] = STATE(2664), + [sym_string_expansion] = STATE(2664), + [sym_expansion] = STATE(2664), + [sym_command_substitution] = STATE(2664), + [sym_process_substitution] = STATE(2664), + [aux_sym_case_statement_repeat1] = STATE(2011), + [sym__special_characters] = ACTIONS(5503), + [anon_sym_DQUOTE] = ACTIONS(5506), + [anon_sym_DOLLAR] = ACTIONS(5509), + [sym_raw_string] = ACTIONS(5512), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5515), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5518), + [anon_sym_BQUOTE] = ACTIONS(5521), + [anon_sym_LT_LPAREN] = ACTIONS(5524), + [anon_sym_GT_LPAREN] = ACTIONS(5524), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5527), + }, + [2012] = { + [anon_sym_PIPE] = ACTIONS(5530), + [anon_sym_RPAREN] = ACTIONS(5530), + [anon_sym_SEMI_SEMI] = ACTIONS(5530), + [anon_sym_PIPE_AMP] = ACTIONS(5530), + [anon_sym_AMP_AMP] = ACTIONS(5530), + [anon_sym_PIPE_PIPE] = ACTIONS(5530), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5530), + [anon_sym_LF] = ACTIONS(5530), + [anon_sym_AMP] = ACTIONS(5530), + }, + [2013] = { + [sym_case_item] = STATE(1332), + [sym_last_case_item] = STATE(2666), + [sym_concatenation] = STATE(1334), + [sym_string] = STATE(1327), + [sym_simple_expansion] = STATE(1327), + [sym_string_expansion] = STATE(1327), + [sym_expansion] = STATE(1327), + [sym_command_substitution] = STATE(1327), + [sym_process_substitution] = STATE(1327), + [aux_sym_case_statement_repeat1] = STATE(2011), + [sym__special_characters] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2657), + [sym_raw_string] = ACTIONS(2659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2663), + [anon_sym_BQUOTE] = ACTIONS(2665), + [anon_sym_LT_LPAREN] = ACTIONS(2667), + [anon_sym_GT_LPAREN] = ACTIONS(2667), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4292), + }, + [2014] = { + [anon_sym_PIPE] = ACTIONS(5532), + [anon_sym_RPAREN] = ACTIONS(5532), + [anon_sym_SEMI_SEMI] = ACTIONS(5532), + [anon_sym_PIPE_AMP] = ACTIONS(5532), + [anon_sym_AMP_AMP] = ACTIONS(5532), + [anon_sym_PIPE_PIPE] = ACTIONS(5532), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5532), + [anon_sym_LF] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(5532), + }, + [2015] = { + [anon_sym_esac] = ACTIONS(5534), + [sym_comment] = ACTIONS(56), + }, + [2016] = { [anon_sym_PIPE] = ACTIONS(5536), - [anon_sym_RPAREN] = ACTIONS(5538), - [anon_sym_PIPE_AMP] = ACTIONS(5538), - [anon_sym_AMP_AMP] = ACTIONS(5538), - [anon_sym_PIPE_PIPE] = ACTIONS(5538), - [anon_sym_BQUOTE] = ACTIONS(5538), + [anon_sym_RPAREN] = ACTIONS(5536), + [anon_sym_SEMI_SEMI] = ACTIONS(5536), + [anon_sym_PIPE_AMP] = ACTIONS(5536), + [anon_sym_AMP_AMP] = ACTIONS(5536), + [anon_sym_PIPE_PIPE] = ACTIONS(5536), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5536), + [anon_sym_LF] = ACTIONS(5536), + [anon_sym_AMP] = ACTIONS(5536), + }, + [2017] = { + [sym_case_item] = STATE(1332), + [sym_last_case_item] = STATE(2668), + [sym_concatenation] = STATE(1334), + [sym_string] = STATE(1327), + [sym_simple_expansion] = STATE(1327), + [sym_string_expansion] = STATE(1327), + [sym_expansion] = STATE(1327), + [sym_command_substitution] = STATE(1327), + [sym_process_substitution] = STATE(1327), + [aux_sym_case_statement_repeat1] = STATE(2011), + [sym__special_characters] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2657), + [sym_raw_string] = ACTIONS(2659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2663), + [anon_sym_BQUOTE] = ACTIONS(2665), + [anon_sym_LT_LPAREN] = ACTIONS(2667), + [anon_sym_GT_LPAREN] = ACTIONS(2667), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4292), + }, + [2018] = { + [sym__concat] = ACTIONS(4728), + [anon_sym_in] = ACTIONS(4730), + [anon_sym_SEMI_SEMI] = ACTIONS(4730), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_LF] = ACTIONS(4730), + [anon_sym_AMP] = ACTIONS(4730), + }, + [2019] = { + [sym__concat] = ACTIONS(4734), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_SEMI_SEMI] = ACTIONS(4736), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_LF] = ACTIONS(4736), + [anon_sym_AMP] = ACTIONS(4736), + }, + [2020] = { + [sym__concat] = ACTIONS(4797), + [anon_sym_in] = ACTIONS(4799), + [anon_sym_SEMI_SEMI] = ACTIONS(4799), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4799), + [anon_sym_LF] = ACTIONS(4799), + [anon_sym_AMP] = ACTIONS(4799), + }, + [2021] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5538), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2022] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(5540), [sym_comment] = ACTIONS(56), }, - [2406] = { - [anon_sym_PIPE] = ACTIONS(5540), - [anon_sym_RPAREN] = ACTIONS(5542), - [anon_sym_PIPE_AMP] = ACTIONS(5542), - [anon_sym_AMP_AMP] = ACTIONS(5542), - [anon_sym_PIPE_PIPE] = ACTIONS(5542), - [anon_sym_BQUOTE] = ACTIONS(5542), + [2023] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(5542), [sym_comment] = ACTIONS(56), }, - [2407] = { - [anon_sym_fi] = ACTIONS(5544), + [2024] = { + [anon_sym_RBRACE] = ACTIONS(5542), [sym_comment] = ACTIONS(56), }, - [2408] = { - [anon_sym_PIPE] = ACTIONS(5546), - [anon_sym_RPAREN] = ACTIONS(5548), - [anon_sym_PIPE_AMP] = ACTIONS(5548), - [anon_sym_AMP_AMP] = ACTIONS(5548), - [anon_sym_PIPE_PIPE] = ACTIONS(5548), - [anon_sym_BQUOTE] = ACTIONS(5548), - [sym_comment] = ACTIONS(56), + [2025] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2673), + [anon_sym_RBRACE] = ACTIONS(5544), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2409] = { - [anon_sym_esac] = ACTIONS(5550), - [sym_comment] = ACTIONS(56), + [2026] = { + [sym__concat] = ACTIONS(4809), + [anon_sym_in] = ACTIONS(4811), + [anon_sym_SEMI_SEMI] = ACTIONS(4811), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym_LF] = ACTIONS(4811), + [anon_sym_AMP] = ACTIONS(4811), }, - [2410] = { - [anon_sym_PIPE] = ACTIONS(5552), + [2027] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2675), + [anon_sym_RBRACE] = ACTIONS(5546), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2028] = { + [sym__concat] = ACTIONS(4815), + [anon_sym_in] = ACTIONS(4817), + [anon_sym_SEMI_SEMI] = ACTIONS(4817), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4817), + [anon_sym_LF] = ACTIONS(4817), + [anon_sym_AMP] = ACTIONS(4817), + }, + [2029] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2677), + [anon_sym_RBRACE] = ACTIONS(5548), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2030] = { + [sym__concat] = ACTIONS(4821), + [anon_sym_in] = ACTIONS(4823), + [anon_sym_SEMI_SEMI] = ACTIONS(4823), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4823), + [anon_sym_LF] = ACTIONS(4823), + [anon_sym_AMP] = ACTIONS(4823), + }, + [2031] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5550), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2032] = { + [sym__concat] = ACTIONS(4827), + [anon_sym_in] = ACTIONS(4829), + [anon_sym_SEMI_SEMI] = ACTIONS(4829), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4829), + [anon_sym_LF] = ACTIONS(4829), + [anon_sym_AMP] = ACTIONS(4829), + }, + [2033] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5552), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2034] = { + [anon_sym_PIPE] = ACTIONS(5554), [anon_sym_RPAREN] = ACTIONS(5554), + [anon_sym_SEMI_SEMI] = ACTIONS(5554), [anon_sym_PIPE_AMP] = ACTIONS(5554), [anon_sym_AMP_AMP] = ACTIONS(5554), [anon_sym_PIPE_PIPE] = ACTIONS(5554), - [anon_sym_BQUOTE] = ACTIONS(5554), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5554), + [anon_sym_LF] = ACTIONS(5554), + [anon_sym_AMP] = ACTIONS(5554), + }, + [2035] = { + [aux_sym_concatenation_repeat1] = STATE(2039), + [sym__concat] = ACTIONS(4340), + [anon_sym_PIPE] = ACTIONS(3974), + [anon_sym_SEMI_SEMI] = ACTIONS(3974), + [anon_sym_PIPE_AMP] = ACTIONS(3974), + [anon_sym_AMP_AMP] = ACTIONS(3974), + [anon_sym_PIPE_PIPE] = ACTIONS(3974), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3974), + [anon_sym_LF] = ACTIONS(3974), + [anon_sym_AMP] = ACTIONS(3974), + }, + [2036] = { + [aux_sym_concatenation_repeat1] = STATE(2039), + [sym__concat] = ACTIONS(4340), + [anon_sym_PIPE] = ACTIONS(3976), + [anon_sym_SEMI_SEMI] = ACTIONS(3976), + [anon_sym_PIPE_AMP] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3976), + [anon_sym_PIPE_PIPE] = ACTIONS(3976), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3976), + [anon_sym_LF] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3976), + }, + [2037] = { + [anon_sym_PIPE] = ACTIONS(3976), + [anon_sym_RPAREN] = ACTIONS(3976), + [anon_sym_SEMI_SEMI] = ACTIONS(3976), + [anon_sym_PIPE_AMP] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3976), + [anon_sym_PIPE_PIPE] = ACTIONS(3976), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3976), + [anon_sym_LF] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3976), + }, + [2038] = { + [sym_string] = STATE(2680), + [sym_simple_expansion] = STATE(2680), + [sym_string_expansion] = STATE(2680), + [sym_expansion] = STATE(2680), + [sym_command_substitution] = STATE(2680), + [sym_process_substitution] = STATE(2680), + [sym__special_characters] = ACTIONS(5556), + [anon_sym_DQUOTE] = ACTIONS(2724), + [anon_sym_DOLLAR] = ACTIONS(2726), + [sym_raw_string] = ACTIONS(5558), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2732), + [anon_sym_BQUOTE] = ACTIONS(2734), + [anon_sym_LT_LPAREN] = ACTIONS(2736), + [anon_sym_GT_LPAREN] = ACTIONS(2736), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5556), + }, + [2039] = { + [aux_sym_concatenation_repeat1] = STATE(2681), + [sym__concat] = ACTIONS(4340), + [anon_sym_PIPE] = ACTIONS(774), + [anon_sym_SEMI_SEMI] = ACTIONS(774), + [anon_sym_PIPE_AMP] = ACTIONS(774), + [anon_sym_AMP_AMP] = ACTIONS(774), + [anon_sym_PIPE_PIPE] = ACTIONS(774), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(774), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_AMP] = ACTIONS(774), + }, + [2040] = { + [sym__concat] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(778), + [anon_sym_SEMI_SEMI] = ACTIONS(778), + [anon_sym_PIPE_AMP] = ACTIONS(778), + [anon_sym_AMP_AMP] = ACTIONS(778), + [anon_sym_PIPE_PIPE] = ACTIONS(778), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(778), + [anon_sym_LF] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(778), + }, + [2041] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(5560), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [2042] = { + [sym__concat] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(810), + [anon_sym_SEMI_SEMI] = ACTIONS(810), + [anon_sym_PIPE_AMP] = ACTIONS(810), + [anon_sym_AMP_AMP] = ACTIONS(810), + [anon_sym_PIPE_PIPE] = ACTIONS(810), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(810), + [anon_sym_LF] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(810), + }, + [2043] = { + [sym__concat] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(814), + [anon_sym_SEMI_SEMI] = ACTIONS(814), + [anon_sym_PIPE_AMP] = ACTIONS(814), + [anon_sym_AMP_AMP] = ACTIONS(814), + [anon_sym_PIPE_PIPE] = ACTIONS(814), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(814), + [anon_sym_LF] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(814), + }, + [2044] = { + [sym__concat] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_SEMI_SEMI] = ACTIONS(818), + [anon_sym_PIPE_AMP] = ACTIONS(818), + [anon_sym_AMP_AMP] = ACTIONS(818), + [anon_sym_PIPE_PIPE] = ACTIONS(818), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_LF] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(818), + }, + [2045] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(5562), [sym_comment] = ACTIONS(56), }, - [2411] = { - [sym_case_item] = STATE(1262), - [sym_last_case_item] = STATE(2655), - [sym_concatenation] = STATE(1264), - [sym_string] = STATE(1257), - [sym_simple_expansion] = STATE(1257), - [sym_string_expansion] = STATE(1257), - [sym_expansion] = STATE(1257), - [sym_command_substitution] = STATE(1257), - [sym_process_substitution] = STATE(1257), - [aux_sym_case_statement_repeat1] = STATE(1827), - [sym__special_characters] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2502), - [anon_sym_DOLLAR] = ACTIONS(2504), - [sym_raw_string] = ACTIONS(2506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2508), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2510), - [anon_sym_BQUOTE] = ACTIONS(2512), - [anon_sym_LT_LPAREN] = ACTIONS(2514), - [anon_sym_GT_LPAREN] = ACTIONS(2514), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3910), + [2046] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2686), + [anon_sym_RBRACE] = ACTIONS(5564), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5566), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2412] = { - [anon_sym_PIPE] = ACTIONS(5556), - [anon_sym_RPAREN] = ACTIONS(5558), - [anon_sym_PIPE_AMP] = ACTIONS(5558), - [anon_sym_AMP_AMP] = ACTIONS(5558), - [anon_sym_PIPE_PIPE] = ACTIONS(5558), - [anon_sym_BQUOTE] = ACTIONS(5558), + [2047] = { + [sym_subscript] = STATE(2690), + [sym_variable_name] = ACTIONS(5568), + [anon_sym_DOLLAR] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5570), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5572), + [anon_sym_STAR] = ACTIONS(5570), + [anon_sym_AT] = ACTIONS(5570), + [anon_sym_QMARK] = ACTIONS(5570), + [anon_sym_0] = ACTIONS(5574), + [anon_sym__] = ACTIONS(5574), + }, + [2048] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2693), + [anon_sym_RBRACE] = ACTIONS(5576), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5578), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2049] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2696), + [anon_sym_RBRACE] = ACTIONS(5580), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5582), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2050] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(5584), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), [sym_comment] = ACTIONS(56), }, - [2413] = { - [anon_sym_esac] = ACTIONS(5560), + [2051] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(5584), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [2052] = { + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(5584), [sym_comment] = ACTIONS(56), }, - [2414] = { - [anon_sym_PIPE] = ACTIONS(5562), - [anon_sym_RPAREN] = ACTIONS(5564), - [anon_sym_PIPE_AMP] = ACTIONS(5564), - [anon_sym_AMP_AMP] = ACTIONS(5564), - [anon_sym_PIPE_PIPE] = ACTIONS(5564), - [anon_sym_BQUOTE] = ACTIONS(5564), + [2053] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(5584), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [2054] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(5586), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), [sym_comment] = ACTIONS(56), }, - [2415] = { - [sym_case_item] = STATE(1262), - [sym_last_case_item] = STATE(2657), - [sym_concatenation] = STATE(1264), - [sym_string] = STATE(1257), - [sym_simple_expansion] = STATE(1257), - [sym_string_expansion] = STATE(1257), - [sym_expansion] = STATE(1257), - [sym_command_substitution] = STATE(1257), - [sym_process_substitution] = STATE(1257), - [aux_sym_case_statement_repeat1] = STATE(1827), - [sym__special_characters] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2502), - [anon_sym_DOLLAR] = ACTIONS(2504), - [sym_raw_string] = ACTIONS(2506), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2508), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2510), - [anon_sym_BQUOTE] = ACTIONS(2512), - [anon_sym_LT_LPAREN] = ACTIONS(2514), - [anon_sym_GT_LPAREN] = ACTIONS(2514), + [2055] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(5586), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3910), + [sym_word] = ACTIONS(382), }, - [2416] = { - [anon_sym_PIPE] = ACTIONS(5566), - [anon_sym_RPAREN] = ACTIONS(5568), - [anon_sym_PIPE_AMP] = ACTIONS(5568), - [anon_sym_AMP_AMP] = ACTIONS(5568), - [anon_sym_PIPE_PIPE] = ACTIONS(5568), - [anon_sym_BQUOTE] = ACTIONS(5568), - [sym_comment] = ACTIONS(56), - }, - [2417] = { - [aux_sym_concatenation_repeat1] = STATE(2421), - [sym__concat] = ACTIONS(5090), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_RPAREN] = ACTIONS(1199), - [anon_sym_PIPE_AMP] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [sym_comment] = ACTIONS(56), - }, - [2418] = { - [aux_sym_concatenation_repeat1] = STATE(2421), - [sym__concat] = ACTIONS(5090), - [anon_sym_PIPE] = ACTIONS(1205), - [anon_sym_RPAREN] = ACTIONS(1203), - [anon_sym_PIPE_AMP] = ACTIONS(1203), - [anon_sym_AMP_AMP] = ACTIONS(1203), - [anon_sym_PIPE_PIPE] = ACTIONS(1203), - [sym_comment] = ACTIONS(56), - }, - [2419] = { - [anon_sym_PIPE] = ACTIONS(1205), - [anon_sym_RPAREN] = ACTIONS(1203), - [anon_sym_PIPE_AMP] = ACTIONS(1203), - [anon_sym_AMP_AMP] = ACTIONS(1203), - [anon_sym_PIPE_PIPE] = ACTIONS(1203), - [anon_sym_BQUOTE] = ACTIONS(1203), - [sym_comment] = ACTIONS(56), - }, - [2420] = { - [sym_string] = STATE(2658), - [sym_simple_expansion] = STATE(2658), - [sym_string_expansion] = STATE(2658), - [sym_expansion] = STATE(2658), - [sym_command_substitution] = STATE(2658), - [sym_process_substitution] = STATE(2658), - [sym__special_characters] = ACTIONS(5570), - [anon_sym_DQUOTE] = ACTIONS(4343), - [anon_sym_DOLLAR] = ACTIONS(4345), - [sym_raw_string] = ACTIONS(5572), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4351), - [anon_sym_BQUOTE] = ACTIONS(4353), - [anon_sym_LT_LPAREN] = ACTIONS(4355), - [anon_sym_GT_LPAREN] = ACTIONS(4355), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5570), - }, - [2421] = { - [aux_sym_concatenation_repeat1] = STATE(2659), - [sym__concat] = ACTIONS(5090), - [anon_sym_PIPE] = ACTIONS(1501), - [anon_sym_RPAREN] = ACTIONS(760), - [anon_sym_PIPE_AMP] = ACTIONS(760), - [anon_sym_AMP_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(760), - [sym_comment] = ACTIONS(56), - }, - [2422] = { - [sym__concat] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_RPAREN] = ACTIONS(764), - [anon_sym_PIPE_AMP] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(764), - [sym_comment] = ACTIONS(56), - }, - [2423] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(5574), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [2424] = { - [sym__concat] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_RPAREN] = ACTIONS(796), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [sym_comment] = ACTIONS(56), - }, - [2425] = { - [sym__concat] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_RPAREN] = ACTIONS(800), - [anon_sym_PIPE_AMP] = ACTIONS(800), - [anon_sym_AMP_AMP] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(800), - [sym_comment] = ACTIONS(56), - }, - [2426] = { - [sym__concat] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_RPAREN] = ACTIONS(804), - [anon_sym_PIPE_AMP] = ACTIONS(804), - [anon_sym_AMP_AMP] = ACTIONS(804), - [anon_sym_PIPE_PIPE] = ACTIONS(804), - [sym_comment] = ACTIONS(56), - }, - [2427] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(5576), - [sym_comment] = ACTIONS(56), - }, - [2428] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2663), - [anon_sym_RBRACE] = ACTIONS(5578), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2429] = { - [sym_subscript] = STATE(2667), - [sym_variable_name] = ACTIONS(5580), - [anon_sym_DOLLAR] = ACTIONS(5582), - [anon_sym_DASH] = ACTIONS(5582), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5584), - [anon_sym_STAR] = ACTIONS(5582), - [anon_sym_AT] = ACTIONS(5582), - [anon_sym_QMARK] = ACTIONS(5582), - [anon_sym_0] = ACTIONS(5586), - [anon_sym__] = ACTIONS(5586), - }, - [2430] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2669), - [anon_sym_RBRACE] = ACTIONS(5588), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2431] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2671), - [anon_sym_RBRACE] = ACTIONS(5590), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2432] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(5592), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [2433] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(5592), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [2434] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(5592), - [sym_comment] = ACTIONS(56), - }, - [2435] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(5592), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [2436] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(5594), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [2437] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(5594), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [2438] = { - [sym_variable_name] = ACTIONS(3751), - [anon_sym_PIPE] = ACTIONS(5029), - [anon_sym_RPAREN] = ACTIONS(3751), - [anon_sym_PIPE_AMP] = ACTIONS(3751), - [anon_sym_AMP_AMP] = ACTIONS(3751), - [anon_sym_PIPE_PIPE] = ACTIONS(3751), - [sym__special_characters] = ACTIONS(5029), - [anon_sym_DQUOTE] = ACTIONS(3751), - [anon_sym_DOLLAR] = ACTIONS(5029), - [sym_raw_string] = ACTIONS(3751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3751), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3751), - [anon_sym_BQUOTE] = ACTIONS(3751), - [anon_sym_LT_LPAREN] = ACTIONS(3751), - [anon_sym_GT_LPAREN] = ACTIONS(3751), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5029), - [sym_word] = ACTIONS(3753), - }, - [2439] = { - [sym__concat] = ACTIONS(4214), - [sym_variable_name] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4942), - [anon_sym_RPAREN] = ACTIONS(4214), - [anon_sym_PIPE_AMP] = ACTIONS(4214), - [anon_sym_AMP_AMP] = ACTIONS(4214), - [anon_sym_PIPE_PIPE] = ACTIONS(4214), - [sym__special_characters] = ACTIONS(4942), - [anon_sym_DQUOTE] = ACTIONS(4214), - [anon_sym_DOLLAR] = ACTIONS(4942), - [sym_raw_string] = ACTIONS(4214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4214), - [anon_sym_BQUOTE] = ACTIONS(4214), - [anon_sym_LT_LPAREN] = ACTIONS(4214), - [anon_sym_GT_LPAREN] = ACTIONS(4214), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4942), - [sym_word] = ACTIONS(4216), - }, - [2440] = { - [sym__concat] = ACTIONS(4220), - [sym_variable_name] = ACTIONS(4220), - [anon_sym_PIPE] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4220), - [anon_sym_PIPE_AMP] = ACTIONS(4220), - [anon_sym_AMP_AMP] = ACTIONS(4220), - [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [sym__special_characters] = ACTIONS(4944), - [anon_sym_DQUOTE] = ACTIONS(4220), - [anon_sym_DOLLAR] = ACTIONS(4944), - [sym_raw_string] = ACTIONS(4220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4220), - [anon_sym_BQUOTE] = ACTIONS(4220), - [anon_sym_LT_LPAREN] = ACTIONS(4220), - [anon_sym_GT_LPAREN] = ACTIONS(4220), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4944), - [sym_word] = ACTIONS(4222), - }, - [2441] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5596), - [sym_comment] = ACTIONS(56), - }, - [2442] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5598), - [sym_comment] = ACTIONS(56), - }, - [2443] = { - [anon_sym_RBRACE] = ACTIONS(5598), - [sym_comment] = ACTIONS(56), - }, - [2444] = { - [sym__concat] = ACTIONS(4269), - [sym_variable_name] = ACTIONS(4269), - [anon_sym_PIPE] = ACTIONS(4950), - [anon_sym_RPAREN] = ACTIONS(4269), - [anon_sym_PIPE_AMP] = ACTIONS(4269), - [anon_sym_AMP_AMP] = ACTIONS(4269), - [anon_sym_PIPE_PIPE] = ACTIONS(4269), - [sym__special_characters] = ACTIONS(4950), - [anon_sym_DQUOTE] = ACTIONS(4269), - [anon_sym_DOLLAR] = ACTIONS(4950), - [sym_raw_string] = ACTIONS(4269), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4269), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4269), - [anon_sym_BQUOTE] = ACTIONS(4269), - [anon_sym_LT_LPAREN] = ACTIONS(4269), - [anon_sym_GT_LPAREN] = ACTIONS(4269), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4950), - [sym_word] = ACTIONS(4271), - }, - [2445] = { - [sym__concat] = ACTIONS(4273), - [sym_variable_name] = ACTIONS(4273), - [anon_sym_PIPE] = ACTIONS(4952), - [anon_sym_RPAREN] = ACTIONS(4273), - [anon_sym_PIPE_AMP] = ACTIONS(4273), - [anon_sym_AMP_AMP] = ACTIONS(4273), - [anon_sym_PIPE_PIPE] = ACTIONS(4273), - [sym__special_characters] = ACTIONS(4952), - [anon_sym_DQUOTE] = ACTIONS(4273), - [anon_sym_DOLLAR] = ACTIONS(4952), - [sym_raw_string] = ACTIONS(4273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4273), - [anon_sym_BQUOTE] = ACTIONS(4273), - [anon_sym_LT_LPAREN] = ACTIONS(4273), - [anon_sym_GT_LPAREN] = ACTIONS(4273), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4952), - [sym_word] = ACTIONS(4275), - }, - [2446] = { - [sym__concat] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4942), - [anon_sym_RPAREN] = ACTIONS(4214), - [anon_sym_PIPE_AMP] = ACTIONS(4214), - [anon_sym_AMP_AMP] = ACTIONS(4214), - [anon_sym_PIPE_PIPE] = ACTIONS(4214), - [sym__special_characters] = ACTIONS(4942), - [anon_sym_DQUOTE] = ACTIONS(4214), - [anon_sym_DOLLAR] = ACTIONS(4942), - [sym_raw_string] = ACTIONS(4214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4214), - [anon_sym_BQUOTE] = ACTIONS(4214), - [anon_sym_LT_LPAREN] = ACTIONS(4214), - [anon_sym_GT_LPAREN] = ACTIONS(4214), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4942), - [sym_word] = ACTIONS(4216), - }, - [2447] = { - [sym__concat] = ACTIONS(4220), - [anon_sym_PIPE] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4220), - [anon_sym_PIPE_AMP] = ACTIONS(4220), - [anon_sym_AMP_AMP] = ACTIONS(4220), - [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [sym__special_characters] = ACTIONS(4944), - [anon_sym_DQUOTE] = ACTIONS(4220), - [anon_sym_DOLLAR] = ACTIONS(4944), - [sym_raw_string] = ACTIONS(4220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4220), - [anon_sym_BQUOTE] = ACTIONS(4220), - [anon_sym_LT_LPAREN] = ACTIONS(4220), - [anon_sym_GT_LPAREN] = ACTIONS(4220), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4944), - [sym_word] = ACTIONS(4222), - }, - [2448] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5600), - [sym_comment] = ACTIONS(56), - }, - [2449] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5602), - [sym_comment] = ACTIONS(56), - }, - [2450] = { - [anon_sym_RBRACE] = ACTIONS(5602), - [sym_comment] = ACTIONS(56), - }, - [2451] = { - [sym__concat] = ACTIONS(4269), - [anon_sym_PIPE] = ACTIONS(4950), - [anon_sym_RPAREN] = ACTIONS(4269), - [anon_sym_PIPE_AMP] = ACTIONS(4269), - [anon_sym_AMP_AMP] = ACTIONS(4269), - [anon_sym_PIPE_PIPE] = ACTIONS(4269), - [sym__special_characters] = ACTIONS(4950), - [anon_sym_DQUOTE] = ACTIONS(4269), - [anon_sym_DOLLAR] = ACTIONS(4950), - [sym_raw_string] = ACTIONS(4269), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4269), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4269), - [anon_sym_BQUOTE] = ACTIONS(4269), - [anon_sym_LT_LPAREN] = ACTIONS(4269), - [anon_sym_GT_LPAREN] = ACTIONS(4269), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4950), - [sym_word] = ACTIONS(4271), - }, - [2452] = { - [sym__concat] = ACTIONS(4273), - [anon_sym_PIPE] = ACTIONS(4952), - [anon_sym_RPAREN] = ACTIONS(4273), - [anon_sym_PIPE_AMP] = ACTIONS(4273), - [anon_sym_AMP_AMP] = ACTIONS(4273), - [anon_sym_PIPE_PIPE] = ACTIONS(4273), - [sym__special_characters] = ACTIONS(4952), - [anon_sym_DQUOTE] = ACTIONS(4273), - [anon_sym_DOLLAR] = ACTIONS(4952), - [sym_raw_string] = ACTIONS(4273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4273), - [anon_sym_BQUOTE] = ACTIONS(4273), - [anon_sym_LT_LPAREN] = ACTIONS(4273), - [anon_sym_GT_LPAREN] = ACTIONS(4273), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4952), - [sym_word] = ACTIONS(4275), - }, - [2453] = { - [sym_file_descriptor] = ACTIONS(5021), - [sym__concat] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5490), - [anon_sym_RPAREN] = ACTIONS(5021), - [anon_sym_PIPE_AMP] = ACTIONS(5021), - [anon_sym_AMP_AMP] = ACTIONS(5021), - [anon_sym_PIPE_PIPE] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5490), - [anon_sym_GT] = ACTIONS(5490), - [anon_sym_GT_GT] = ACTIONS(5021), - [anon_sym_AMP_GT] = ACTIONS(5490), - [anon_sym_AMP_GT_GT] = ACTIONS(5021), - [anon_sym_LT_AMP] = ACTIONS(5021), - [anon_sym_GT_AMP] = ACTIONS(5021), - [anon_sym_LT_LT] = ACTIONS(5490), - [anon_sym_LT_LT_DASH] = ACTIONS(5021), - [anon_sym_LT_LT_LT] = ACTIONS(5021), - [sym__special_characters] = ACTIONS(5490), - [anon_sym_DQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR] = ACTIONS(5490), - [sym_raw_string] = ACTIONS(5021), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5021), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5021), - [anon_sym_LT_LPAREN] = ACTIONS(5021), - [anon_sym_GT_LPAREN] = ACTIONS(5021), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5490), - }, - [2454] = { - [sym_file_descriptor] = ACTIONS(5025), - [sym__concat] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5492), - [anon_sym_RPAREN] = ACTIONS(5025), - [anon_sym_PIPE_AMP] = ACTIONS(5025), - [anon_sym_AMP_AMP] = ACTIONS(5025), - [anon_sym_PIPE_PIPE] = ACTIONS(5025), - [anon_sym_LT] = ACTIONS(5492), - [anon_sym_GT] = ACTIONS(5492), - [anon_sym_GT_GT] = ACTIONS(5025), - [anon_sym_AMP_GT] = ACTIONS(5492), - [anon_sym_AMP_GT_GT] = ACTIONS(5025), - [anon_sym_LT_AMP] = ACTIONS(5025), - [anon_sym_GT_AMP] = ACTIONS(5025), - [anon_sym_LT_LT] = ACTIONS(5492), - [anon_sym_LT_LT_DASH] = ACTIONS(5025), - [anon_sym_LT_LT_LT] = ACTIONS(5025), - [sym__special_characters] = ACTIONS(5492), - [anon_sym_DQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR] = ACTIONS(5492), - [sym_raw_string] = ACTIONS(5025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5025), - [anon_sym_LT_LPAREN] = ACTIONS(5025), - [anon_sym_GT_LPAREN] = ACTIONS(5025), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5492), - }, - [2455] = { - [sym_file_descriptor] = ACTIONS(2969), - [sym__concat] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(4098), - [anon_sym_RPAREN] = ACTIONS(2969), - [anon_sym_PIPE_AMP] = ACTIONS(2969), - [anon_sym_AMP_AMP] = ACTIONS(2969), - [anon_sym_PIPE_PIPE] = ACTIONS(2969), - [anon_sym_LT] = ACTIONS(4098), - [anon_sym_GT] = ACTIONS(4098), - [anon_sym_GT_GT] = ACTIONS(2969), - [anon_sym_AMP_GT] = ACTIONS(4098), - [anon_sym_AMP_GT_GT] = ACTIONS(2969), - [anon_sym_LT_AMP] = ACTIONS(2969), - [anon_sym_GT_AMP] = ACTIONS(2969), - [anon_sym_LT_LT] = ACTIONS(4098), - [anon_sym_LT_LT_DASH] = ACTIONS(2969), - [anon_sym_LT_LT_LT] = ACTIONS(2969), - [sym_comment] = ACTIONS(56), - }, - [2456] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5604), - [sym_comment] = ACTIONS(56), - }, - [2457] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5606), - [sym_comment] = ACTIONS(56), - }, - [2458] = { - [anon_sym_RBRACE] = ACTIONS(5606), - [sym_comment] = ACTIONS(56), - }, - [2459] = { - [sym_file_descriptor] = ACTIONS(3023), - [sym__concat] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(4104), - [anon_sym_RPAREN] = ACTIONS(3023), - [anon_sym_PIPE_AMP] = ACTIONS(3023), - [anon_sym_AMP_AMP] = ACTIONS(3023), - [anon_sym_PIPE_PIPE] = ACTIONS(3023), - [anon_sym_LT] = ACTIONS(4104), - [anon_sym_GT] = ACTIONS(4104), - [anon_sym_GT_GT] = ACTIONS(3023), - [anon_sym_AMP_GT] = ACTIONS(4104), - [anon_sym_AMP_GT_GT] = ACTIONS(3023), - [anon_sym_LT_AMP] = ACTIONS(3023), - [anon_sym_GT_AMP] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(4104), - [anon_sym_LT_LT_DASH] = ACTIONS(3023), - [anon_sym_LT_LT_LT] = ACTIONS(3023), - [sym_comment] = ACTIONS(56), - }, - [2460] = { - [sym_concatenation] = STATE(2682), - [sym_string] = STATE(2681), - [sym_simple_expansion] = STATE(2681), - [sym_string_expansion] = STATE(2681), - [sym_expansion] = STATE(2681), - [sym_command_substitution] = STATE(2681), - [sym_process_substitution] = STATE(2681), - [anon_sym_RBRACE] = ACTIONS(5606), - [sym__special_characters] = ACTIONS(5608), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5610), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), + [2056] = { + [sym_file_descriptor] = ACTIONS(1858), + [sym__concat] = ACTIONS(1858), + [sym_variable_name] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [anon_sym_PIPE_AMP] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1860), + [anon_sym_PIPE_PIPE] = ACTIONS(1860), + [anon_sym_LT] = ACTIONS(1860), + [anon_sym_GT] = ACTIONS(1860), + [anon_sym_GT_GT] = ACTIONS(1860), + [anon_sym_AMP_GT] = ACTIONS(1860), + [anon_sym_AMP_GT_GT] = ACTIONS(1860), + [anon_sym_LT_AMP] = ACTIONS(1860), + [anon_sym_GT_AMP] = ACTIONS(1860), + [sym__special_characters] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1860), + [anon_sym_DOLLAR] = ACTIONS(1860), + [sym_raw_string] = ACTIONS(1860), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1860), [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5612), + [anon_sym_LT_LPAREN] = ACTIONS(1860), + [anon_sym_GT_LPAREN] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), }, - [2461] = { - [sym_file_descriptor] = ACTIONS(3068), - [sym__concat] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(4112), - [anon_sym_RPAREN] = ACTIONS(3068), - [anon_sym_PIPE_AMP] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(4112), - [anon_sym_GT] = ACTIONS(4112), - [anon_sym_GT_GT] = ACTIONS(3068), - [anon_sym_AMP_GT] = ACTIONS(4112), - [anon_sym_AMP_GT_GT] = ACTIONS(3068), - [anon_sym_LT_AMP] = ACTIONS(3068), - [anon_sym_GT_AMP] = ACTIONS(3068), - [anon_sym_LT_LT] = ACTIONS(4112), - [anon_sym_LT_LT_DASH] = ACTIONS(3068), - [anon_sym_LT_LT_LT] = ACTIONS(3068), - [sym_comment] = ACTIONS(56), - }, - [2462] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5614), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2463] = { - [sym_file_descriptor] = ACTIONS(3074), - [sym__concat] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(4116), - [anon_sym_RPAREN] = ACTIONS(3074), - [anon_sym_PIPE_AMP] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_GT_GT] = ACTIONS(3074), - [anon_sym_AMP_GT] = ACTIONS(4116), - [anon_sym_AMP_GT_GT] = ACTIONS(3074), - [anon_sym_LT_AMP] = ACTIONS(3074), - [anon_sym_GT_AMP] = ACTIONS(3074), - [anon_sym_LT_LT] = ACTIONS(4116), - [anon_sym_LT_LT_DASH] = ACTIONS(3074), - [anon_sym_LT_LT_LT] = ACTIONS(3074), - [sym_comment] = ACTIONS(56), - }, - [2464] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5616), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2465] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5606), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2466] = { - [sym_file_descriptor] = ACTIONS(3080), - [sym__concat] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(4120), - [anon_sym_RPAREN] = ACTIONS(3080), - [anon_sym_PIPE_AMP] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(4120), - [anon_sym_GT] = ACTIONS(4120), - [anon_sym_GT_GT] = ACTIONS(3080), - [anon_sym_AMP_GT] = ACTIONS(4120), - [anon_sym_AMP_GT_GT] = ACTIONS(3080), - [anon_sym_LT_AMP] = ACTIONS(3080), - [anon_sym_GT_AMP] = ACTIONS(3080), - [anon_sym_LT_LT] = ACTIONS(4120), - [anon_sym_LT_LT_DASH] = ACTIONS(3080), - [anon_sym_LT_LT_LT] = ACTIONS(3080), - [sym_comment] = ACTIONS(56), - }, - [2467] = { - [sym_file_descriptor] = ACTIONS(2969), - [sym__concat] = ACTIONS(2969), - [sym_variable_name] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(4098), - [anon_sym_PIPE_AMP] = ACTIONS(2969), - [anon_sym_AMP_AMP] = ACTIONS(2969), - [anon_sym_PIPE_PIPE] = ACTIONS(2969), - [anon_sym_LT] = ACTIONS(4098), - [anon_sym_GT] = ACTIONS(4098), - [anon_sym_GT_GT] = ACTIONS(2969), - [anon_sym_AMP_GT] = ACTIONS(4098), - [anon_sym_AMP_GT_GT] = ACTIONS(2969), - [anon_sym_LT_AMP] = ACTIONS(2969), - [anon_sym_GT_AMP] = ACTIONS(2969), - [sym__special_characters] = ACTIONS(4098), - [anon_sym_DQUOTE] = ACTIONS(2969), - [anon_sym_DOLLAR] = ACTIONS(4098), - [sym_raw_string] = ACTIONS(2969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2969), - [anon_sym_BQUOTE] = ACTIONS(2969), - [anon_sym_LT_LPAREN] = ACTIONS(2969), - [anon_sym_GT_LPAREN] = ACTIONS(2969), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4098), - }, - [2468] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5618), - [sym_comment] = ACTIONS(56), - }, - [2469] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5620), - [sym_comment] = ACTIONS(56), - }, - [2470] = { - [anon_sym_RBRACE] = ACTIONS(5620), - [sym_comment] = ACTIONS(56), - }, - [2471] = { - [sym_file_descriptor] = ACTIONS(3023), - [sym__concat] = ACTIONS(3023), - [sym_variable_name] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(4104), - [anon_sym_PIPE_AMP] = ACTIONS(3023), - [anon_sym_AMP_AMP] = ACTIONS(3023), - [anon_sym_PIPE_PIPE] = ACTIONS(3023), - [anon_sym_LT] = ACTIONS(4104), - [anon_sym_GT] = ACTIONS(4104), - [anon_sym_GT_GT] = ACTIONS(3023), - [anon_sym_AMP_GT] = ACTIONS(4104), - [anon_sym_AMP_GT_GT] = ACTIONS(3023), - [anon_sym_LT_AMP] = ACTIONS(3023), - [anon_sym_GT_AMP] = ACTIONS(3023), - [sym__special_characters] = ACTIONS(4104), - [anon_sym_DQUOTE] = ACTIONS(3023), - [anon_sym_DOLLAR] = ACTIONS(4104), - [sym_raw_string] = ACTIONS(3023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3023), - [anon_sym_BQUOTE] = ACTIONS(3023), - [anon_sym_LT_LPAREN] = ACTIONS(3023), - [anon_sym_GT_LPAREN] = ACTIONS(3023), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4104), - }, - [2472] = { - [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(5620), - [sym__special_characters] = ACTIONS(5622), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5624), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), + [2057] = { + [aux_sym_concatenation_repeat1] = STATE(2057), + [sym_file_descriptor] = ACTIONS(1858), + [sym__concat] = ACTIONS(5588), + [sym_variable_name] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [anon_sym_PIPE_AMP] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1860), + [anon_sym_PIPE_PIPE] = ACTIONS(1860), + [anon_sym_LT] = ACTIONS(1860), + [anon_sym_GT] = ACTIONS(1860), + [anon_sym_GT_GT] = ACTIONS(1860), + [anon_sym_AMP_GT] = ACTIONS(1860), + [anon_sym_AMP_GT_GT] = ACTIONS(1860), + [anon_sym_LT_AMP] = ACTIONS(1860), + [anon_sym_GT_AMP] = ACTIONS(1860), + [sym__special_characters] = ACTIONS(1860), + [anon_sym_DQUOTE] = ACTIONS(1860), + [anon_sym_DOLLAR] = ACTIONS(1860), + [sym_raw_string] = ACTIONS(1860), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1860), [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5626), - }, - [2473] = { - [sym_file_descriptor] = ACTIONS(3068), - [sym__concat] = ACTIONS(3068), - [sym_variable_name] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(4112), - [anon_sym_PIPE_AMP] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(4112), - [anon_sym_GT] = ACTIONS(4112), - [anon_sym_GT_GT] = ACTIONS(3068), - [anon_sym_AMP_GT] = ACTIONS(4112), - [anon_sym_AMP_GT_GT] = ACTIONS(3068), - [anon_sym_LT_AMP] = ACTIONS(3068), - [anon_sym_GT_AMP] = ACTIONS(3068), - [sym__special_characters] = ACTIONS(4112), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(4112), - [sym_raw_string] = ACTIONS(3068), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3068), - [anon_sym_BQUOTE] = ACTIONS(3068), - [anon_sym_LT_LPAREN] = ACTIONS(3068), - [anon_sym_GT_LPAREN] = ACTIONS(3068), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4112), - }, - [2474] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5628), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2475] = { - [sym_file_descriptor] = ACTIONS(3074), - [sym__concat] = ACTIONS(3074), - [sym_variable_name] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(4116), - [anon_sym_PIPE_AMP] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_GT_GT] = ACTIONS(3074), - [anon_sym_AMP_GT] = ACTIONS(4116), - [anon_sym_AMP_GT_GT] = ACTIONS(3074), - [anon_sym_LT_AMP] = ACTIONS(3074), - [anon_sym_GT_AMP] = ACTIONS(3074), - [sym__special_characters] = ACTIONS(4116), - [anon_sym_DQUOTE] = ACTIONS(3074), - [anon_sym_DOLLAR] = ACTIONS(4116), - [sym_raw_string] = ACTIONS(3074), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3074), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3074), - [anon_sym_BQUOTE] = ACTIONS(3074), - [anon_sym_LT_LPAREN] = ACTIONS(3074), - [anon_sym_GT_LPAREN] = ACTIONS(3074), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4116), - }, - [2476] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5630), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2477] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5620), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2478] = { - [sym_file_descriptor] = ACTIONS(3080), - [sym__concat] = ACTIONS(3080), - [sym_variable_name] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(4120), - [anon_sym_PIPE_AMP] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(4120), - [anon_sym_GT] = ACTIONS(4120), - [anon_sym_GT_GT] = ACTIONS(3080), - [anon_sym_AMP_GT] = ACTIONS(4120), - [anon_sym_AMP_GT_GT] = ACTIONS(3080), - [anon_sym_LT_AMP] = ACTIONS(3080), - [anon_sym_GT_AMP] = ACTIONS(3080), - [sym__special_characters] = ACTIONS(4120), - [anon_sym_DQUOTE] = ACTIONS(3080), - [anon_sym_DOLLAR] = ACTIONS(4120), - [sym_raw_string] = ACTIONS(3080), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3080), - [anon_sym_BQUOTE] = ACTIONS(3080), - [anon_sym_LT_LPAREN] = ACTIONS(3080), - [anon_sym_GT_LPAREN] = ACTIONS(3080), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4120), - }, - [2479] = { - [aux_sym_concatenation_repeat1] = STATE(2482), - [sym__concat] = ACTIONS(5198), - [anon_sym_PIPE] = ACTIONS(1201), - [anon_sym_PIPE_AMP] = ACTIONS(1199), - [anon_sym_AMP_AMP] = ACTIONS(1199), - [anon_sym_PIPE_PIPE] = ACTIONS(1199), - [anon_sym_BQUOTE] = ACTIONS(1199), - [sym_comment] = ACTIONS(56), - }, - [2480] = { - [aux_sym_concatenation_repeat1] = STATE(2482), - [sym__concat] = ACTIONS(5198), - [anon_sym_PIPE] = ACTIONS(1205), - [anon_sym_PIPE_AMP] = ACTIONS(1203), - [anon_sym_AMP_AMP] = ACTIONS(1203), - [anon_sym_PIPE_PIPE] = ACTIONS(1203), - [anon_sym_BQUOTE] = ACTIONS(1203), - [sym_comment] = ACTIONS(56), - }, - [2481] = { - [sym_string] = STATE(2692), - [sym_simple_expansion] = STATE(2692), - [sym_string_expansion] = STATE(2692), - [sym_expansion] = STATE(2692), - [sym_command_substitution] = STATE(2692), - [sym_process_substitution] = STATE(2692), - [sym__special_characters] = ACTIONS(5632), - [anon_sym_DQUOTE] = ACTIONS(4493), - [anon_sym_DOLLAR] = ACTIONS(4495), - [sym_raw_string] = ACTIONS(5634), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4499), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4501), - [anon_sym_BQUOTE] = ACTIONS(4503), - [anon_sym_LT_LPAREN] = ACTIONS(4505), - [anon_sym_GT_LPAREN] = ACTIONS(4505), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5632), - }, - [2482] = { - [aux_sym_concatenation_repeat1] = STATE(2693), - [sym__concat] = ACTIONS(5198), - [anon_sym_PIPE] = ACTIONS(1501), - [anon_sym_PIPE_AMP] = ACTIONS(760), - [anon_sym_AMP_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(760), - [anon_sym_BQUOTE] = ACTIONS(760), - [sym_comment] = ACTIONS(56), - }, - [2483] = { - [sym__concat] = ACTIONS(764), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_PIPE_AMP] = ACTIONS(764), - [anon_sym_AMP_AMP] = ACTIONS(764), - [anon_sym_PIPE_PIPE] = ACTIONS(764), - [anon_sym_BQUOTE] = ACTIONS(764), - [sym_comment] = ACTIONS(56), - }, - [2484] = { - [sym_simple_expansion] = STATE(132), - [sym_expansion] = STATE(132), - [sym_command_substitution] = STATE(132), - [aux_sym_string_repeat1] = STATE(439), - [anon_sym_DQUOTE] = ACTIONS(5636), - [anon_sym_DOLLAR] = ACTIONS(228), - [sym__string_content] = ACTIONS(230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(232), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(234), - [anon_sym_BQUOTE] = ACTIONS(236), - [sym_comment] = ACTIONS(178), - }, - [2485] = { - [sym__concat] = ACTIONS(796), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_PIPE_AMP] = ACTIONS(796), - [anon_sym_AMP_AMP] = ACTIONS(796), - [anon_sym_PIPE_PIPE] = ACTIONS(796), - [anon_sym_BQUOTE] = ACTIONS(796), - [sym_comment] = ACTIONS(56), - }, - [2486] = { - [sym__concat] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(1509), - [anon_sym_PIPE_AMP] = ACTIONS(800), - [anon_sym_AMP_AMP] = ACTIONS(800), - [anon_sym_PIPE_PIPE] = ACTIONS(800), - [anon_sym_BQUOTE] = ACTIONS(800), - [sym_comment] = ACTIONS(56), - }, - [2487] = { - [sym__concat] = ACTIONS(804), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_PIPE_AMP] = ACTIONS(804), - [anon_sym_AMP_AMP] = ACTIONS(804), - [anon_sym_PIPE_PIPE] = ACTIONS(804), - [anon_sym_BQUOTE] = ACTIONS(804), - [sym_comment] = ACTIONS(56), - }, - [2488] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(5638), - [sym_comment] = ACTIONS(56), - }, - [2489] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2697), - [anon_sym_RBRACE] = ACTIONS(5640), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2490] = { - [sym_subscript] = STATE(2701), - [sym_variable_name] = ACTIONS(5642), - [anon_sym_DOLLAR] = ACTIONS(5644), - [anon_sym_DASH] = ACTIONS(5644), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5646), - [anon_sym_STAR] = ACTIONS(5644), - [anon_sym_AT] = ACTIONS(5644), - [anon_sym_QMARK] = ACTIONS(5644), - [anon_sym_0] = ACTIONS(5648), - [anon_sym__] = ACTIONS(5648), - }, - [2491] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2703), - [anon_sym_RBRACE] = ACTIONS(5650), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2492] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2705), - [anon_sym_RBRACE] = ACTIONS(5652), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2493] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(5654), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [2494] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(5654), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [2495] = { - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_BQUOTE] = ACTIONS(5654), - [sym_comment] = ACTIONS(56), - }, - [2496] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(1030), - [anon_sym_PIPE_AMP] = ACTIONS(1032), - [anon_sym_AMP_AMP] = ACTIONS(1034), - [anon_sym_PIPE_PIPE] = ACTIONS(1034), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(5654), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [2497] = { - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(5656), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [sym_comment] = ACTIONS(56), - }, - [2498] = { - [sym_file_descriptor] = ACTIONS(368), - [sym_variable_name] = ACTIONS(368), - [anon_sym_PIPE] = ACTIONS(936), - [anon_sym_RPAREN] = ACTIONS(5656), - [anon_sym_PIPE_AMP] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(942), - [anon_sym_PIPE_PIPE] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(372), - [anon_sym_GT] = ACTIONS(372), - [anon_sym_GT_GT] = ACTIONS(368), - [anon_sym_AMP_GT] = ACTIONS(372), - [anon_sym_AMP_GT_GT] = ACTIONS(368), - [anon_sym_LT_AMP] = ACTIONS(368), - [anon_sym_GT_AMP] = ACTIONS(368), - [sym__special_characters] = ACTIONS(372), - [anon_sym_DQUOTE] = ACTIONS(368), - [anon_sym_DOLLAR] = ACTIONS(372), - [sym_raw_string] = ACTIONS(368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(368), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(368), - [anon_sym_BQUOTE] = ACTIONS(368), - [anon_sym_LT_LPAREN] = ACTIONS(368), - [anon_sym_GT_LPAREN] = ACTIONS(368), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(372), - }, - [2499] = { - [sym__concat] = ACTIONS(4214), - [sym_variable_name] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4942), - [anon_sym_PIPE_AMP] = ACTIONS(4214), - [anon_sym_AMP_AMP] = ACTIONS(4214), - [anon_sym_PIPE_PIPE] = ACTIONS(4214), - [sym__special_characters] = ACTIONS(4942), - [anon_sym_DQUOTE] = ACTIONS(4214), - [anon_sym_DOLLAR] = ACTIONS(4942), - [sym_raw_string] = ACTIONS(4214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4214), - [anon_sym_BQUOTE] = ACTIONS(4214), - [anon_sym_LT_LPAREN] = ACTIONS(4214), - [anon_sym_GT_LPAREN] = ACTIONS(4214), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4942), - [sym_word] = ACTIONS(4216), - }, - [2500] = { - [sym__concat] = ACTIONS(4220), - [sym_variable_name] = ACTIONS(4220), - [anon_sym_PIPE] = ACTIONS(4944), - [anon_sym_PIPE_AMP] = ACTIONS(4220), - [anon_sym_AMP_AMP] = ACTIONS(4220), - [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [sym__special_characters] = ACTIONS(4944), - [anon_sym_DQUOTE] = ACTIONS(4220), - [anon_sym_DOLLAR] = ACTIONS(4944), - [sym_raw_string] = ACTIONS(4220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4220), - [anon_sym_BQUOTE] = ACTIONS(4220), - [anon_sym_LT_LPAREN] = ACTIONS(4220), - [anon_sym_GT_LPAREN] = ACTIONS(4220), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4944), - [sym_word] = ACTIONS(4222), - }, - [2501] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5658), - [sym_comment] = ACTIONS(56), - }, - [2502] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5660), - [sym_comment] = ACTIONS(56), - }, - [2503] = { - [anon_sym_RBRACE] = ACTIONS(5660), - [sym_comment] = ACTIONS(56), - }, - [2504] = { - [sym__concat] = ACTIONS(4269), - [sym_variable_name] = ACTIONS(4269), - [anon_sym_PIPE] = ACTIONS(4950), - [anon_sym_PIPE_AMP] = ACTIONS(4269), - [anon_sym_AMP_AMP] = ACTIONS(4269), - [anon_sym_PIPE_PIPE] = ACTIONS(4269), - [sym__special_characters] = ACTIONS(4950), - [anon_sym_DQUOTE] = ACTIONS(4269), - [anon_sym_DOLLAR] = ACTIONS(4950), - [sym_raw_string] = ACTIONS(4269), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4269), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4269), - [anon_sym_BQUOTE] = ACTIONS(4269), - [anon_sym_LT_LPAREN] = ACTIONS(4269), - [anon_sym_GT_LPAREN] = ACTIONS(4269), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4950), - [sym_word] = ACTIONS(4271), - }, - [2505] = { - [sym__concat] = ACTIONS(4273), - [sym_variable_name] = ACTIONS(4273), - [anon_sym_PIPE] = ACTIONS(4952), - [anon_sym_PIPE_AMP] = ACTIONS(4273), - [anon_sym_AMP_AMP] = ACTIONS(4273), - [anon_sym_PIPE_PIPE] = ACTIONS(4273), - [sym__special_characters] = ACTIONS(4952), - [anon_sym_DQUOTE] = ACTIONS(4273), - [anon_sym_DOLLAR] = ACTIONS(4952), - [sym_raw_string] = ACTIONS(4273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4273), - [anon_sym_BQUOTE] = ACTIONS(4273), - [anon_sym_LT_LPAREN] = ACTIONS(4273), - [anon_sym_GT_LPAREN] = ACTIONS(4273), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4952), - [sym_word] = ACTIONS(4275), - }, - [2506] = { - [sym__concat] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4942), - [anon_sym_PIPE_AMP] = ACTIONS(4214), - [anon_sym_AMP_AMP] = ACTIONS(4214), - [anon_sym_PIPE_PIPE] = ACTIONS(4214), - [sym__special_characters] = ACTIONS(4942), - [anon_sym_DQUOTE] = ACTIONS(4214), - [anon_sym_DOLLAR] = ACTIONS(4942), - [sym_raw_string] = ACTIONS(4214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4214), - [anon_sym_BQUOTE] = ACTIONS(4214), - [anon_sym_LT_LPAREN] = ACTIONS(4214), - [anon_sym_GT_LPAREN] = ACTIONS(4214), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4942), - [sym_word] = ACTIONS(4216), - }, - [2507] = { - [sym__concat] = ACTIONS(4220), - [anon_sym_PIPE] = ACTIONS(4944), - [anon_sym_PIPE_AMP] = ACTIONS(4220), - [anon_sym_AMP_AMP] = ACTIONS(4220), - [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [sym__special_characters] = ACTIONS(4944), - [anon_sym_DQUOTE] = ACTIONS(4220), - [anon_sym_DOLLAR] = ACTIONS(4944), - [sym_raw_string] = ACTIONS(4220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4220), - [anon_sym_BQUOTE] = ACTIONS(4220), - [anon_sym_LT_LPAREN] = ACTIONS(4220), - [anon_sym_GT_LPAREN] = ACTIONS(4220), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4944), - [sym_word] = ACTIONS(4222), - }, - [2508] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5662), - [sym_comment] = ACTIONS(56), - }, - [2509] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5664), - [sym_comment] = ACTIONS(56), - }, - [2510] = { - [anon_sym_RBRACE] = ACTIONS(5664), - [sym_comment] = ACTIONS(56), - }, - [2511] = { - [sym__concat] = ACTIONS(4269), - [anon_sym_PIPE] = ACTIONS(4950), - [anon_sym_PIPE_AMP] = ACTIONS(4269), - [anon_sym_AMP_AMP] = ACTIONS(4269), - [anon_sym_PIPE_PIPE] = ACTIONS(4269), - [sym__special_characters] = ACTIONS(4950), - [anon_sym_DQUOTE] = ACTIONS(4269), - [anon_sym_DOLLAR] = ACTIONS(4950), - [sym_raw_string] = ACTIONS(4269), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4269), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4269), - [anon_sym_BQUOTE] = ACTIONS(4269), - [anon_sym_LT_LPAREN] = ACTIONS(4269), - [anon_sym_GT_LPAREN] = ACTIONS(4269), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4950), - [sym_word] = ACTIONS(4271), - }, - [2512] = { - [sym__concat] = ACTIONS(4273), - [anon_sym_PIPE] = ACTIONS(4952), - [anon_sym_PIPE_AMP] = ACTIONS(4273), - [anon_sym_AMP_AMP] = ACTIONS(4273), - [anon_sym_PIPE_PIPE] = ACTIONS(4273), - [sym__special_characters] = ACTIONS(4952), - [anon_sym_DQUOTE] = ACTIONS(4273), - [anon_sym_DOLLAR] = ACTIONS(4952), - [sym_raw_string] = ACTIONS(4273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4273), - [anon_sym_BQUOTE] = ACTIONS(4273), - [anon_sym_LT_LPAREN] = ACTIONS(4273), - [anon_sym_GT_LPAREN] = ACTIONS(4273), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4952), - [sym_word] = ACTIONS(4275), - }, - [2513] = { - [sym_file_descriptor] = ACTIONS(5021), - [sym__concat] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5490), - [anon_sym_PIPE_AMP] = ACTIONS(5021), - [anon_sym_AMP_AMP] = ACTIONS(5021), - [anon_sym_PIPE_PIPE] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5490), - [anon_sym_GT] = ACTIONS(5490), - [anon_sym_GT_GT] = ACTIONS(5021), - [anon_sym_AMP_GT] = ACTIONS(5490), - [anon_sym_AMP_GT_GT] = ACTIONS(5021), - [anon_sym_LT_AMP] = ACTIONS(5021), - [anon_sym_GT_AMP] = ACTIONS(5021), - [anon_sym_LT_LT] = ACTIONS(5490), - [anon_sym_LT_LT_DASH] = ACTIONS(5021), - [anon_sym_LT_LT_LT] = ACTIONS(5021), - [sym__special_characters] = ACTIONS(5490), - [anon_sym_DQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR] = ACTIONS(5490), - [sym_raw_string] = ACTIONS(5021), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5021), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5021), - [anon_sym_LT_LPAREN] = ACTIONS(5021), - [anon_sym_GT_LPAREN] = ACTIONS(5021), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5490), - }, - [2514] = { - [sym_file_descriptor] = ACTIONS(5025), - [sym__concat] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5492), - [anon_sym_PIPE_AMP] = ACTIONS(5025), - [anon_sym_AMP_AMP] = ACTIONS(5025), - [anon_sym_PIPE_PIPE] = ACTIONS(5025), - [anon_sym_LT] = ACTIONS(5492), - [anon_sym_GT] = ACTIONS(5492), - [anon_sym_GT_GT] = ACTIONS(5025), - [anon_sym_AMP_GT] = ACTIONS(5492), - [anon_sym_AMP_GT_GT] = ACTIONS(5025), - [anon_sym_LT_AMP] = ACTIONS(5025), - [anon_sym_GT_AMP] = ACTIONS(5025), - [anon_sym_LT_LT] = ACTIONS(5492), - [anon_sym_LT_LT_DASH] = ACTIONS(5025), - [anon_sym_LT_LT_LT] = ACTIONS(5025), - [sym__special_characters] = ACTIONS(5492), - [anon_sym_DQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR] = ACTIONS(5492), - [sym_raw_string] = ACTIONS(5025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5025), - [anon_sym_LT_LPAREN] = ACTIONS(5025), - [anon_sym_GT_LPAREN] = ACTIONS(5025), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5492), - }, - [2515] = { - [sym_file_descriptor] = ACTIONS(2969), - [sym__concat] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(4098), - [anon_sym_PIPE_AMP] = ACTIONS(2969), - [anon_sym_AMP_AMP] = ACTIONS(2969), - [anon_sym_PIPE_PIPE] = ACTIONS(2969), - [anon_sym_LT] = ACTIONS(4098), - [anon_sym_GT] = ACTIONS(4098), - [anon_sym_GT_GT] = ACTIONS(2969), - [anon_sym_AMP_GT] = ACTIONS(4098), - [anon_sym_AMP_GT_GT] = ACTIONS(2969), - [anon_sym_LT_AMP] = ACTIONS(2969), - [anon_sym_GT_AMP] = ACTIONS(2969), - [anon_sym_LT_LT] = ACTIONS(4098), - [anon_sym_LT_LT_DASH] = ACTIONS(2969), - [anon_sym_LT_LT_LT] = ACTIONS(2969), - [anon_sym_BQUOTE] = ACTIONS(2969), - [sym_comment] = ACTIONS(56), - }, - [2516] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5666), - [sym_comment] = ACTIONS(56), - }, - [2517] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5668), - [sym_comment] = ACTIONS(56), - }, - [2518] = { - [anon_sym_RBRACE] = ACTIONS(5668), - [sym_comment] = ACTIONS(56), - }, - [2519] = { - [sym_file_descriptor] = ACTIONS(3023), - [sym__concat] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(4104), - [anon_sym_PIPE_AMP] = ACTIONS(3023), - [anon_sym_AMP_AMP] = ACTIONS(3023), - [anon_sym_PIPE_PIPE] = ACTIONS(3023), - [anon_sym_LT] = ACTIONS(4104), - [anon_sym_GT] = ACTIONS(4104), - [anon_sym_GT_GT] = ACTIONS(3023), - [anon_sym_AMP_GT] = ACTIONS(4104), - [anon_sym_AMP_GT_GT] = ACTIONS(3023), - [anon_sym_LT_AMP] = ACTIONS(3023), - [anon_sym_GT_AMP] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(4104), - [anon_sym_LT_LT_DASH] = ACTIONS(3023), - [anon_sym_LT_LT_LT] = ACTIONS(3023), - [anon_sym_BQUOTE] = ACTIONS(3023), - [sym_comment] = ACTIONS(56), - }, - [2520] = { - [sym_concatenation] = STATE(2716), - [sym_string] = STATE(2715), - [sym_simple_expansion] = STATE(2715), - [sym_string_expansion] = STATE(2715), - [sym_expansion] = STATE(2715), - [sym_command_substitution] = STATE(2715), - [sym_process_substitution] = STATE(2715), - [anon_sym_RBRACE] = ACTIONS(5668), - [sym__special_characters] = ACTIONS(5670), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5672), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5674), - }, - [2521] = { - [sym_file_descriptor] = ACTIONS(3068), - [sym__concat] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(4112), - [anon_sym_PIPE_AMP] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(4112), - [anon_sym_GT] = ACTIONS(4112), - [anon_sym_GT_GT] = ACTIONS(3068), - [anon_sym_AMP_GT] = ACTIONS(4112), - [anon_sym_AMP_GT_GT] = ACTIONS(3068), - [anon_sym_LT_AMP] = ACTIONS(3068), - [anon_sym_GT_AMP] = ACTIONS(3068), - [anon_sym_LT_LT] = ACTIONS(4112), - [anon_sym_LT_LT_DASH] = ACTIONS(3068), - [anon_sym_LT_LT_LT] = ACTIONS(3068), - [anon_sym_BQUOTE] = ACTIONS(3068), - [sym_comment] = ACTIONS(56), - }, - [2522] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5676), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2523] = { - [sym_file_descriptor] = ACTIONS(3074), - [sym__concat] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(4116), - [anon_sym_PIPE_AMP] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_LT] = ACTIONS(4116), - [anon_sym_GT] = ACTIONS(4116), - [anon_sym_GT_GT] = ACTIONS(3074), - [anon_sym_AMP_GT] = ACTIONS(4116), - [anon_sym_AMP_GT_GT] = ACTIONS(3074), - [anon_sym_LT_AMP] = ACTIONS(3074), - [anon_sym_GT_AMP] = ACTIONS(3074), - [anon_sym_LT_LT] = ACTIONS(4116), - [anon_sym_LT_LT_DASH] = ACTIONS(3074), - [anon_sym_LT_LT_LT] = ACTIONS(3074), - [anon_sym_BQUOTE] = ACTIONS(3074), - [sym_comment] = ACTIONS(56), - }, - [2524] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5678), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2525] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5668), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2526] = { - [sym_file_descriptor] = ACTIONS(3080), - [sym__concat] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(4120), - [anon_sym_PIPE_AMP] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_LT] = ACTIONS(4120), - [anon_sym_GT] = ACTIONS(4120), - [anon_sym_GT_GT] = ACTIONS(3080), - [anon_sym_AMP_GT] = ACTIONS(4120), - [anon_sym_AMP_GT_GT] = ACTIONS(3080), - [anon_sym_LT_AMP] = ACTIONS(3080), - [anon_sym_GT_AMP] = ACTIONS(3080), - [anon_sym_LT_LT] = ACTIONS(4120), - [anon_sym_LT_LT_DASH] = ACTIONS(3080), - [anon_sym_LT_LT_LT] = ACTIONS(3080), - [anon_sym_BQUOTE] = ACTIONS(3080), - [sym_comment] = ACTIONS(56), - }, - [2527] = { - [sym_file_descriptor] = ACTIONS(4214), - [sym__concat] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_SEMI_SEMI] = ACTIONS(4216), - [anon_sym_PIPE_AMP] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4216), - [anon_sym_PIPE_PIPE] = ACTIONS(4216), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_AMP_GT] = ACTIONS(4216), - [anon_sym_AMP_GT_GT] = ACTIONS(4216), - [anon_sym_LT_AMP] = ACTIONS(4216), - [anon_sym_GT_AMP] = ACTIONS(4216), - [anon_sym_LT_LT] = ACTIONS(4216), - [anon_sym_LT_LT_DASH] = ACTIONS(4216), - [anon_sym_LT_LT_LT] = ACTIONS(4216), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4216), - [anon_sym_LF] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - }, - [2528] = { - [sym_file_descriptor] = ACTIONS(4220), - [sym__concat] = ACTIONS(4220), - [anon_sym_PIPE] = ACTIONS(4222), - [anon_sym_SEMI_SEMI] = ACTIONS(4222), - [anon_sym_PIPE_AMP] = ACTIONS(4222), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [anon_sym_LT] = ACTIONS(4222), - [anon_sym_GT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4222), - [anon_sym_AMP_GT] = ACTIONS(4222), - [anon_sym_AMP_GT_GT] = ACTIONS(4222), - [anon_sym_LT_AMP] = ACTIONS(4222), - [anon_sym_GT_AMP] = ACTIONS(4222), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_LT_LT_DASH] = ACTIONS(4222), - [anon_sym_LT_LT_LT] = ACTIONS(4222), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_LF] = ACTIONS(4222), - [anon_sym_AMP] = ACTIONS(4222), - }, - [2529] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5680), - [sym_comment] = ACTIONS(56), - }, - [2530] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5682), - [sym_comment] = ACTIONS(56), - }, - [2531] = { - [anon_sym_RBRACE] = ACTIONS(5682), - [sym_comment] = ACTIONS(56), - }, - [2532] = { - [sym_file_descriptor] = ACTIONS(4269), - [sym__concat] = ACTIONS(4269), - [anon_sym_PIPE] = ACTIONS(4271), - [anon_sym_SEMI_SEMI] = ACTIONS(4271), - [anon_sym_PIPE_AMP] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4271), - [anon_sym_GT] = ACTIONS(4271), - [anon_sym_GT_GT] = ACTIONS(4271), - [anon_sym_AMP_GT] = ACTIONS(4271), - [anon_sym_AMP_GT_GT] = ACTIONS(4271), - [anon_sym_LT_AMP] = ACTIONS(4271), - [anon_sym_GT_AMP] = ACTIONS(4271), - [anon_sym_LT_LT] = ACTIONS(4271), - [anon_sym_LT_LT_DASH] = ACTIONS(4271), - [anon_sym_LT_LT_LT] = ACTIONS(4271), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_LF] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4271), - }, - [2533] = { - [sym_file_descriptor] = ACTIONS(4273), - [sym__concat] = ACTIONS(4273), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_SEMI_SEMI] = ACTIONS(4275), - [anon_sym_PIPE_AMP] = ACTIONS(4275), - [anon_sym_AMP_AMP] = ACTIONS(4275), - [anon_sym_PIPE_PIPE] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_GT_GT] = ACTIONS(4275), - [anon_sym_AMP_GT] = ACTIONS(4275), - [anon_sym_AMP_GT_GT] = ACTIONS(4275), - [anon_sym_LT_AMP] = ACTIONS(4275), - [anon_sym_GT_AMP] = ACTIONS(4275), - [anon_sym_LT_LT] = ACTIONS(4275), - [anon_sym_LT_LT_DASH] = ACTIONS(4275), - [anon_sym_LT_LT_LT] = ACTIONS(4275), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_LF] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4275), - }, - [2534] = { - [sym__heredoc_middle] = ACTIONS(2969), - [sym__heredoc_end] = ACTIONS(2969), - [anon_sym_DOLLAR] = ACTIONS(4098), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2969), - [sym_comment] = ACTIONS(56), - }, - [2535] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5684), - [sym_comment] = ACTIONS(56), - }, - [2536] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5686), - [sym_comment] = ACTIONS(56), - }, - [2537] = { - [anon_sym_RBRACE] = ACTIONS(5686), - [sym_comment] = ACTIONS(56), - }, - [2538] = { - [sym__heredoc_middle] = ACTIONS(3023), - [sym__heredoc_end] = ACTIONS(3023), - [anon_sym_DOLLAR] = ACTIONS(4104), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3023), - [sym_comment] = ACTIONS(56), - }, - [2539] = { - [sym_concatenation] = STATE(2725), - [sym_string] = STATE(2724), - [sym_simple_expansion] = STATE(2724), - [sym_string_expansion] = STATE(2724), - [sym_expansion] = STATE(2724), - [sym_command_substitution] = STATE(2724), - [sym_process_substitution] = STATE(2724), - [anon_sym_RBRACE] = ACTIONS(5686), - [sym__special_characters] = ACTIONS(5688), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5690), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5692), - }, - [2540] = { - [sym__heredoc_middle] = ACTIONS(3068), - [sym__heredoc_end] = ACTIONS(3068), - [anon_sym_DOLLAR] = ACTIONS(4112), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3068), - [sym_comment] = ACTIONS(56), - }, - [2541] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5694), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2542] = { - [sym__heredoc_middle] = ACTIONS(3074), - [sym__heredoc_end] = ACTIONS(3074), - [anon_sym_DOLLAR] = ACTIONS(4116), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3074), - [sym_comment] = ACTIONS(56), - }, - [2543] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5696), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2544] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5686), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2545] = { - [sym__heredoc_middle] = ACTIONS(3080), - [sym__heredoc_end] = ACTIONS(3080), - [anon_sym_DOLLAR] = ACTIONS(4120), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3080), - [sym_comment] = ACTIONS(56), - }, - [2546] = { - [sym__concat] = ACTIONS(5021), - [anon_sym_RBRACK] = ACTIONS(5021), - [sym_comment] = ACTIONS(56), - }, - [2547] = { - [sym__concat] = ACTIONS(5025), - [anon_sym_RBRACK] = ACTIONS(5025), - [sym_comment] = ACTIONS(56), - }, - [2548] = { - [sym__concat] = ACTIONS(4214), - [anon_sym_RPAREN] = ACTIONS(4214), - [sym__special_characters] = ACTIONS(4942), - [anon_sym_DQUOTE] = ACTIONS(4214), - [anon_sym_DOLLAR] = ACTIONS(4942), - [sym_raw_string] = ACTIONS(4214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4214), - [anon_sym_BQUOTE] = ACTIONS(4214), - [anon_sym_LT_LPAREN] = ACTIONS(4214), - [anon_sym_GT_LPAREN] = ACTIONS(4214), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4942), - }, - [2549] = { - [sym__concat] = ACTIONS(4220), - [anon_sym_RPAREN] = ACTIONS(4220), - [sym__special_characters] = ACTIONS(4944), - [anon_sym_DQUOTE] = ACTIONS(4220), - [anon_sym_DOLLAR] = ACTIONS(4944), - [sym_raw_string] = ACTIONS(4220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4220), - [anon_sym_BQUOTE] = ACTIONS(4220), - [anon_sym_LT_LPAREN] = ACTIONS(4220), - [anon_sym_GT_LPAREN] = ACTIONS(4220), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4944), - }, - [2550] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5698), - [sym_comment] = ACTIONS(56), - }, - [2551] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5700), - [sym_comment] = ACTIONS(56), - }, - [2552] = { - [anon_sym_RBRACE] = ACTIONS(5700), - [sym_comment] = ACTIONS(56), - }, - [2553] = { - [sym__concat] = ACTIONS(4269), - [anon_sym_RPAREN] = ACTIONS(4269), - [sym__special_characters] = ACTIONS(4950), - [anon_sym_DQUOTE] = ACTIONS(4269), - [anon_sym_DOLLAR] = ACTIONS(4950), - [sym_raw_string] = ACTIONS(4269), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4269), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4269), - [anon_sym_BQUOTE] = ACTIONS(4269), - [anon_sym_LT_LPAREN] = ACTIONS(4269), - [anon_sym_GT_LPAREN] = ACTIONS(4269), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4950), - }, - [2554] = { - [sym__concat] = ACTIONS(4273), - [anon_sym_RPAREN] = ACTIONS(4273), - [sym__special_characters] = ACTIONS(4952), - [anon_sym_DQUOTE] = ACTIONS(4273), - [anon_sym_DOLLAR] = ACTIONS(4952), - [sym_raw_string] = ACTIONS(4273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4273), - [anon_sym_BQUOTE] = ACTIONS(4273), - [anon_sym_LT_LPAREN] = ACTIONS(4273), - [anon_sym_GT_LPAREN] = ACTIONS(4273), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4952), - }, - [2555] = { - [sym_file_descriptor] = ACTIONS(5021), - [sym__concat] = ACTIONS(5021), - [sym_variable_name] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_SEMI_SEMI] = ACTIONS(5023), - [anon_sym_PIPE_AMP] = ACTIONS(5023), - [anon_sym_AMP_AMP] = ACTIONS(5023), - [anon_sym_PIPE_PIPE] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5023), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_GT_GT] = ACTIONS(5023), - [anon_sym_AMP_GT] = ACTIONS(5023), - [anon_sym_AMP_GT_GT] = ACTIONS(5023), - [anon_sym_LT_AMP] = ACTIONS(5023), - [anon_sym_GT_AMP] = ACTIONS(5023), - [sym__special_characters] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5023), - [sym_raw_string] = ACTIONS(5023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5023), - [anon_sym_BQUOTE] = ACTIONS(5023), - [anon_sym_LT_LPAREN] = ACTIONS(5023), - [anon_sym_GT_LPAREN] = ACTIONS(5023), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(5023), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_LF] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(5023), - }, - [2556] = { - [sym_file_descriptor] = ACTIONS(5025), - [sym__concat] = ACTIONS(5025), - [sym_variable_name] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_SEMI_SEMI] = ACTIONS(5027), - [anon_sym_PIPE_AMP] = ACTIONS(5027), - [anon_sym_AMP_AMP] = ACTIONS(5027), - [anon_sym_PIPE_PIPE] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5027), - [anon_sym_GT] = ACTIONS(5027), - [anon_sym_GT_GT] = ACTIONS(5027), - [anon_sym_AMP_GT] = ACTIONS(5027), - [anon_sym_AMP_GT_GT] = ACTIONS(5027), - [anon_sym_LT_AMP] = ACTIONS(5027), - [anon_sym_GT_AMP] = ACTIONS(5027), - [sym__special_characters] = ACTIONS(5027), - [anon_sym_DQUOTE] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5027), - [sym_raw_string] = ACTIONS(5027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5027), - [anon_sym_BQUOTE] = ACTIONS(5027), - [anon_sym_LT_LPAREN] = ACTIONS(5027), - [anon_sym_GT_LPAREN] = ACTIONS(5027), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(5027), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_LF] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(5027), - }, - [2557] = { - [sym__concat] = ACTIONS(4214), - [anon_sym_SEMI_SEMI] = ACTIONS(4216), - [sym__special_characters] = ACTIONS(4216), - [anon_sym_DQUOTE] = ACTIONS(4216), - [anon_sym_DOLLAR] = ACTIONS(4216), - [sym_raw_string] = ACTIONS(4216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4216), - [anon_sym_BQUOTE] = ACTIONS(4216), - [anon_sym_LT_LPAREN] = ACTIONS(4216), - [anon_sym_GT_LPAREN] = ACTIONS(4216), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(4216), - [anon_sym_SEMI] = ACTIONS(4216), - [anon_sym_LF] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - }, - [2558] = { - [sym__concat] = ACTIONS(4220), - [anon_sym_SEMI_SEMI] = ACTIONS(4222), - [sym__special_characters] = ACTIONS(4222), - [anon_sym_DQUOTE] = ACTIONS(4222), - [anon_sym_DOLLAR] = ACTIONS(4222), - [sym_raw_string] = ACTIONS(4222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4222), - [anon_sym_BQUOTE] = ACTIONS(4222), - [anon_sym_LT_LPAREN] = ACTIONS(4222), - [anon_sym_GT_LPAREN] = ACTIONS(4222), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(4222), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_LF] = ACTIONS(4222), - [anon_sym_AMP] = ACTIONS(4222), - }, - [2559] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5702), - [sym_comment] = ACTIONS(56), - }, - [2560] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5704), - [sym_comment] = ACTIONS(56), - }, - [2561] = { - [anon_sym_RBRACE] = ACTIONS(5704), - [sym_comment] = ACTIONS(56), - }, - [2562] = { - [sym__concat] = ACTIONS(4269), - [anon_sym_SEMI_SEMI] = ACTIONS(4271), - [sym__special_characters] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4271), - [sym_raw_string] = ACTIONS(4271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4271), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4271), - [anon_sym_BQUOTE] = ACTIONS(4271), - [anon_sym_LT_LPAREN] = ACTIONS(4271), - [anon_sym_GT_LPAREN] = ACTIONS(4271), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(4271), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_LF] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4271), - }, - [2563] = { - [sym__concat] = ACTIONS(4273), - [anon_sym_SEMI_SEMI] = ACTIONS(4275), - [sym__special_characters] = ACTIONS(4275), - [anon_sym_DQUOTE] = ACTIONS(4275), - [anon_sym_DOLLAR] = ACTIONS(4275), - [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(178), - [sym_word] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_LF] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4275), - }, - [2564] = { - [anon_sym_PIPE] = ACTIONS(3857), - [anon_sym_RPAREN] = ACTIONS(3857), - [anon_sym_SEMI_SEMI] = ACTIONS(3857), - [anon_sym_PIPE_AMP] = ACTIONS(3857), - [anon_sym_AMP_AMP] = ACTIONS(3857), - [anon_sym_PIPE_PIPE] = ACTIONS(3857), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3857), - [anon_sym_LF] = ACTIONS(3857), - [anon_sym_AMP] = ACTIONS(3857), - }, - [2565] = { - [sym_file_descriptor] = ACTIONS(1058), - [sym_variable_name] = ACTIONS(1058), - [anon_sym_for] = ACTIONS(1060), - [anon_sym_while] = ACTIONS(1060), - [anon_sym_if] = ACTIONS(1060), - [anon_sym_case] = ACTIONS(1060), - [anon_sym_esac] = ACTIONS(1060), - [anon_sym_SEMI_SEMI] = ACTIONS(1058), - [anon_sym_function] = ACTIONS(1060), - [anon_sym_LPAREN] = ACTIONS(1058), - [anon_sym_LBRACK] = ACTIONS(1060), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1058), - [anon_sym_declare] = ACTIONS(1060), - [anon_sym_typeset] = ACTIONS(1060), - [anon_sym_export] = ACTIONS(1060), - [anon_sym_readonly] = ACTIONS(1060), - [anon_sym_local] = ACTIONS(1060), - [anon_sym_unset] = ACTIONS(1060), - [anon_sym_unsetenv] = ACTIONS(1060), - [anon_sym_LT] = ACTIONS(1060), - [anon_sym_GT] = ACTIONS(1060), - [anon_sym_GT_GT] = ACTIONS(1058), - [anon_sym_AMP_GT] = ACTIONS(1060), - [anon_sym_AMP_GT_GT] = ACTIONS(1058), - [anon_sym_LT_AMP] = ACTIONS(1058), - [anon_sym_GT_AMP] = ACTIONS(1058), - [sym__special_characters] = ACTIONS(1062), - [anon_sym_DQUOTE] = ACTIONS(1058), - [anon_sym_DOLLAR] = ACTIONS(1060), - [sym_raw_string] = ACTIONS(1058), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1058), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1058), - [anon_sym_BQUOTE] = ACTIONS(1058), - [anon_sym_LT_LPAREN] = ACTIONS(1058), - [anon_sym_GT_LPAREN] = ACTIONS(1058), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1062), - }, - [2566] = { - [anon_sym_esac] = ACTIONS(5706), - [sym__special_characters] = ACTIONS(5708), - [anon_sym_DQUOTE] = ACTIONS(5710), - [anon_sym_DOLLAR] = ACTIONS(5708), - [sym_raw_string] = ACTIONS(5710), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5710), - [anon_sym_BQUOTE] = ACTIONS(5710), - [anon_sym_LT_LPAREN] = ACTIONS(5710), - [anon_sym_GT_LPAREN] = ACTIONS(5710), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5712), - }, - [2567] = { - [sym__terminated_statement] = STATE(2250), - [sym_for_statement] = STATE(2251), - [sym_while_statement] = STATE(2251), - [sym_if_statement] = STATE(2251), - [sym_case_statement] = STATE(2251), - [sym_function_definition] = STATE(2251), - [sym_subshell] = STATE(2251), - [sym_pipeline] = STATE(2251), - [sym_list] = STATE(2251), - [sym_bracket_command] = STATE(2251), - [sym_command] = STATE(2251), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2252), - [sym_declaration_command] = STATE(2251), - [sym_unset_command] = STATE(2251), - [sym_subscript] = STATE(29), + [anon_sym_LT_LPAREN] = ACTIONS(1860), + [anon_sym_GT_LPAREN] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + }, + [2058] = { + [sym_file_descriptor] = ACTIONS(1895), + [sym__concat] = ACTIONS(1895), + [sym_variable_name] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_RPAREN] = ACTIONS(1897), + [anon_sym_SEMI_SEMI] = ACTIONS(1897), + [anon_sym_PIPE_AMP] = ACTIONS(1897), + [anon_sym_AMP_AMP] = ACTIONS(1897), + [anon_sym_PIPE_PIPE] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1897), + [anon_sym_GT] = ACTIONS(1897), + [anon_sym_GT_GT] = ACTIONS(1897), + [anon_sym_AMP_GT] = ACTIONS(1897), + [anon_sym_AMP_GT_GT] = ACTIONS(1897), + [anon_sym_LT_AMP] = ACTIONS(1897), + [anon_sym_GT_AMP] = ACTIONS(1897), + [sym__special_characters] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1897), + [anon_sym_DOLLAR] = ACTIONS(1897), + [sym_raw_string] = ACTIONS(1897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1897), + [anon_sym_BQUOTE] = ACTIONS(1897), + [anon_sym_LT_LPAREN] = ACTIONS(1897), + [anon_sym_GT_LPAREN] = ACTIONS(1897), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_LF] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), + }, + [2059] = { + [sym_concatenation] = STATE(2702), + [sym_string] = STATE(2701), + [sym_simple_expansion] = STATE(2701), + [sym_string_expansion] = STATE(2701), + [sym_expansion] = STATE(2701), + [sym_command_substitution] = STATE(2701), + [sym_process_substitution] = STATE(2701), + [anon_sym_RBRACE] = ACTIONS(5591), + [sym__special_characters] = ACTIONS(5593), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(5595), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5597), + }, + [2060] = { + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(1940), + [sym_variable_name] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1942), + [anon_sym_PIPE_AMP] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1942), + [anon_sym_PIPE_PIPE] = ACTIONS(1942), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_GT_GT] = ACTIONS(1942), + [anon_sym_AMP_GT] = ACTIONS(1942), + [anon_sym_AMP_GT_GT] = ACTIONS(1942), + [anon_sym_LT_AMP] = ACTIONS(1942), + [anon_sym_GT_AMP] = ACTIONS(1942), + [sym__special_characters] = ACTIONS(1942), + [anon_sym_DQUOTE] = ACTIONS(1942), + [anon_sym_DOLLAR] = ACTIONS(1942), + [sym_raw_string] = ACTIONS(1942), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1942), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1942), + [anon_sym_BQUOTE] = ACTIONS(1942), + [anon_sym_LT_LPAREN] = ACTIONS(1942), + [anon_sym_GT_LPAREN] = ACTIONS(1942), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + }, + [2061] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5599), + }, + [2062] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5601), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2063] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(5603), + [sym_comment] = ACTIONS(56), + }, + [2064] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2708), + [anon_sym_RBRACE] = ACTIONS(5605), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5607), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2065] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2711), + [anon_sym_RBRACE] = ACTIONS(5609), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5611), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2066] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2713), + [anon_sym_RBRACE] = ACTIONS(5591), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5613), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2067] = { + [sym_file_descriptor] = ACTIONS(1992), + [sym__concat] = ACTIONS(1992), + [sym_variable_name] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(1994), + [anon_sym_RPAREN] = ACTIONS(1994), + [anon_sym_SEMI_SEMI] = ACTIONS(1994), + [anon_sym_PIPE_AMP] = ACTIONS(1994), + [anon_sym_AMP_AMP] = ACTIONS(1994), + [anon_sym_PIPE_PIPE] = ACTIONS(1994), + [anon_sym_LT] = ACTIONS(1994), + [anon_sym_GT] = ACTIONS(1994), + [anon_sym_GT_GT] = ACTIONS(1994), + [anon_sym_AMP_GT] = ACTIONS(1994), + [anon_sym_AMP_GT_GT] = ACTIONS(1994), + [anon_sym_LT_AMP] = ACTIONS(1994), + [anon_sym_GT_AMP] = ACTIONS(1994), + [sym__special_characters] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [anon_sym_DOLLAR] = ACTIONS(1994), + [sym_raw_string] = ACTIONS(1994), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1994), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1994), + [anon_sym_BQUOTE] = ACTIONS(1994), + [anon_sym_LT_LPAREN] = ACTIONS(1994), + [anon_sym_GT_LPAREN] = ACTIONS(1994), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_LF] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + }, + [2068] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5615), + }, + [2069] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5617), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2070] = { + [sym_file_descriptor] = ACTIONS(2000), + [sym__concat] = ACTIONS(2000), + [sym_variable_name] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_RPAREN] = ACTIONS(2002), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [anon_sym_PIPE_AMP] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_PIPE_PIPE] = ACTIONS(2002), + [anon_sym_LT] = ACTIONS(2002), + [anon_sym_GT] = ACTIONS(2002), + [anon_sym_GT_GT] = ACTIONS(2002), + [anon_sym_AMP_GT] = ACTIONS(2002), + [anon_sym_AMP_GT_GT] = ACTIONS(2002), + [anon_sym_LT_AMP] = ACTIONS(2002), + [anon_sym_GT_AMP] = ACTIONS(2002), + [sym__special_characters] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_DOLLAR] = ACTIONS(2002), + [sym_raw_string] = ACTIONS(2002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2002), + [anon_sym_BQUOTE] = ACTIONS(2002), + [anon_sym_LT_LPAREN] = ACTIONS(2002), + [anon_sym_GT_LPAREN] = ACTIONS(2002), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2002), + }, + [2071] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5619), + }, + [2072] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5591), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2073] = { + [sym_file_descriptor] = ACTIONS(2156), + [sym__concat] = ACTIONS(2156), + [sym_variable_name] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_RPAREN] = ACTIONS(2158), + [anon_sym_SEMI_SEMI] = ACTIONS(2158), + [anon_sym_PIPE_AMP] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_PIPE_PIPE] = ACTIONS(2158), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_GT] = ACTIONS(2158), + [anon_sym_GT_GT] = ACTIONS(2158), + [anon_sym_AMP_GT] = ACTIONS(2158), + [anon_sym_AMP_GT_GT] = ACTIONS(2158), + [anon_sym_LT_AMP] = ACTIONS(2158), + [anon_sym_GT_AMP] = ACTIONS(2158), + [sym__special_characters] = ACTIONS(2158), + [anon_sym_DQUOTE] = ACTIONS(2158), + [anon_sym_DOLLAR] = ACTIONS(2158), + [sym_raw_string] = ACTIONS(2158), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2158), + [anon_sym_BQUOTE] = ACTIONS(2158), + [anon_sym_LT_LPAREN] = ACTIONS(2158), + [anon_sym_GT_LPAREN] = ACTIONS(2158), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2158), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym_LF] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2158), + }, + [2074] = { + [sym_file_descriptor] = ACTIONS(2358), + [sym__concat] = ACTIONS(2358), + [sym_variable_name] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_RPAREN] = ACTIONS(2360), + [anon_sym_SEMI_SEMI] = ACTIONS(2360), + [anon_sym_PIPE_AMP] = ACTIONS(2360), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_AMP_GT] = ACTIONS(2360), + [anon_sym_AMP_GT_GT] = ACTIONS(2360), + [anon_sym_LT_AMP] = ACTIONS(2360), + [anon_sym_GT_AMP] = ACTIONS(2360), + [sym__special_characters] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [anon_sym_DOLLAR] = ACTIONS(2360), + [sym_raw_string] = ACTIONS(2360), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2360), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2360), + [anon_sym_BQUOTE] = ACTIONS(2360), + [anon_sym_LT_LPAREN] = ACTIONS(2360), + [anon_sym_GT_LPAREN] = ACTIONS(2360), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2360), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + }, + [2075] = { + [sym_file_redirect] = STATE(2034), + [sym_file_descriptor] = ACTIONS(2764), + [anon_sym_PIPE] = ACTIONS(4328), + [anon_sym_RPAREN] = ACTIONS(4328), + [anon_sym_SEMI_SEMI] = ACTIONS(4328), + [anon_sym_PIPE_AMP] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), + [anon_sym_LT] = ACTIONS(2766), + [anon_sym_GT] = ACTIONS(2766), + [anon_sym_GT_GT] = ACTIONS(2766), + [anon_sym_AMP_GT] = ACTIONS(2766), + [anon_sym_AMP_GT_GT] = ACTIONS(2766), + [anon_sym_LT_AMP] = ACTIONS(2766), + [anon_sym_GT_AMP] = ACTIONS(2766), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_LF] = ACTIONS(4328), + [anon_sym_AMP] = ACTIONS(4328), + }, + [2076] = { + [sym_concatenation] = STATE(2037), + [sym_string] = STATE(2718), + [sym_simple_expansion] = STATE(2718), + [sym_string_expansion] = STATE(2718), + [sym_expansion] = STATE(2718), + [sym_command_substitution] = STATE(2718), + [sym_process_substitution] = STATE(2718), + [sym__special_characters] = ACTIONS(5621), + [anon_sym_DQUOTE] = ACTIONS(4398), + [anon_sym_DOLLAR] = ACTIONS(4400), + [sym_raw_string] = ACTIONS(5623), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4406), + [anon_sym_BQUOTE] = ACTIONS(4408), + [anon_sym_LT_LPAREN] = ACTIONS(4410), + [anon_sym_GT_LPAREN] = ACTIONS(4410), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5625), + }, + [2077] = { + [aux_sym_concatenation_repeat1] = STATE(2720), + [sym__concat] = ACTIONS(5627), + [anon_sym_PIPE] = ACTIONS(2374), + [anon_sym_RPAREN] = ACTIONS(2374), + [anon_sym_SEMI_SEMI] = ACTIONS(2374), + [anon_sym_PIPE_AMP] = ACTIONS(2374), + [anon_sym_AMP_AMP] = ACTIONS(2374), + [anon_sym_PIPE_PIPE] = ACTIONS(2374), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2374), + [anon_sym_LF] = ACTIONS(2374), + [anon_sym_AMP] = ACTIONS(2374), + }, + [2078] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(2722), + [anon_sym_DQUOTE] = ACTIONS(5629), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [2079] = { + [sym_string] = STATE(2725), + [anon_sym_DQUOTE] = ACTIONS(4398), + [anon_sym_DOLLAR] = ACTIONS(5631), + [anon_sym_POUND] = ACTIONS(5631), + [anon_sym_DASH] = ACTIONS(5631), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5633), + [anon_sym_STAR] = ACTIONS(5631), + [anon_sym_AT] = ACTIONS(5631), + [anon_sym_QMARK] = ACTIONS(5631), + [anon_sym_0] = ACTIONS(5635), + [anon_sym__] = ACTIONS(5635), + }, + [2080] = { + [aux_sym_concatenation_repeat1] = STATE(2720), + [sym__concat] = ACTIONS(5627), + [anon_sym_PIPE] = ACTIONS(2384), + [anon_sym_RPAREN] = ACTIONS(2384), + [anon_sym_SEMI_SEMI] = ACTIONS(2384), + [anon_sym_PIPE_AMP] = ACTIONS(2384), + [anon_sym_AMP_AMP] = ACTIONS(2384), + [anon_sym_PIPE_PIPE] = ACTIONS(2384), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2384), + [anon_sym_LF] = ACTIONS(2384), + [anon_sym_AMP] = ACTIONS(2384), + }, + [2081] = { + [sym_subscript] = STATE(2730), + [sym_variable_name] = ACTIONS(5637), + [anon_sym_DOLLAR] = ACTIONS(5639), + [anon_sym_POUND] = ACTIONS(5641), + [anon_sym_DASH] = ACTIONS(5639), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5643), + [anon_sym_STAR] = ACTIONS(5639), + [anon_sym_AT] = ACTIONS(5639), + [anon_sym_QMARK] = ACTIONS(5639), + [anon_sym_0] = ACTIONS(5645), + [anon_sym__] = ACTIONS(5645), + }, + [2082] = { + [sym_for_statement] = STATE(2731), + [sym_while_statement] = STATE(2731), + [sym_if_statement] = STATE(2731), + [sym_case_statement] = STATE(2731), + [sym_function_definition] = STATE(2731), + [sym_subshell] = STATE(2731), + [sym_pipeline] = STATE(2731), + [sym_list] = STATE(2731), + [sym_command] = STATE(2731), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(2731), + [sym_variable_assignment] = STATE(2732), + [sym_declaration_command] = STATE(2731), + [sym_unset_command] = STATE(2731), + [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(2567), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1110), - [sym_variable_name] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1118), - [anon_sym_while] = ACTIONS(1121), - [anon_sym_if] = ACTIONS(1124), - [anon_sym_case] = ACTIONS(1127), - [anon_sym_esac] = ACTIONS(3859), - [anon_sym_SEMI_SEMI] = ACTIONS(1116), - [anon_sym_function] = ACTIONS(1130), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1136), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1139), - [anon_sym_declare] = ACTIONS(1142), - [anon_sym_typeset] = ACTIONS(1142), - [anon_sym_export] = ACTIONS(1142), - [anon_sym_readonly] = ACTIONS(1142), - [anon_sym_local] = ACTIONS(1142), - [anon_sym_unset] = ACTIONS(1145), - [anon_sym_unsetenv] = ACTIONS(1145), - [anon_sym_LT] = ACTIONS(1148), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_GT_GT] = ACTIONS(1151), - [anon_sym_AMP_GT] = ACTIONS(1148), - [anon_sym_AMP_GT_GT] = ACTIONS(1151), - [anon_sym_LT_AMP] = ACTIONS(1151), - [anon_sym_GT_AMP] = ACTIONS(1151), - [sym__special_characters] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1157), - [anon_sym_DOLLAR] = ACTIONS(1160), - [sym_raw_string] = ACTIONS(1163), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1166), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1169), - [anon_sym_BQUOTE] = ACTIONS(1172), - [anon_sym_LT_LPAREN] = ACTIONS(1175), - [anon_sym_GT_LPAREN] = ACTIONS(1175), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1178), - }, - [2568] = { - [sym__terminated_statement] = STATE(2250), - [sym_for_statement] = STATE(2251), - [sym_while_statement] = STATE(2251), - [sym_if_statement] = STATE(2251), - [sym_case_statement] = STATE(2251), - [sym_function_definition] = STATE(2251), - [sym_subshell] = STATE(2251), - [sym_pipeline] = STATE(2251), - [sym_list] = STATE(2251), - [sym_bracket_command] = STATE(2251), - [sym_command] = STATE(2251), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2252), - [sym_declaration_command] = STATE(2251), - [sym_unset_command] = STATE(2251), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(2567), - [aux_sym_command_repeat1] = STATE(33), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(5706), - [anon_sym_SEMI_SEMI] = ACTIONS(5714), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -66123,78 +57277,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [sym_word] = ACTIONS(300), }, - [2569] = { - [anon_sym_esac] = ACTIONS(5716), - [sym__special_characters] = ACTIONS(5718), - [anon_sym_DQUOTE] = ACTIONS(5720), - [anon_sym_DOLLAR] = ACTIONS(5718), - [sym_raw_string] = ACTIONS(5720), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5720), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5720), - [anon_sym_BQUOTE] = ACTIONS(5720), - [anon_sym_LT_LPAREN] = ACTIONS(5720), - [anon_sym_GT_LPAREN] = ACTIONS(5720), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5722), - }, - [2570] = { - [sym__terminated_statement] = STATE(2250), - [sym_for_statement] = STATE(2251), - [sym_while_statement] = STATE(2251), - [sym_if_statement] = STATE(2251), - [sym_case_statement] = STATE(2251), - [sym_function_definition] = STATE(2251), - [sym_subshell] = STATE(2251), - [sym_pipeline] = STATE(2251), - [sym_list] = STATE(2251), - [sym_bracket_command] = STATE(2251), - [sym_command] = STATE(2251), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(2252), - [sym_declaration_command] = STATE(2251), - [sym_unset_command] = STATE(2251), - [sym_subscript] = STATE(29), + [2083] = { + [sym_for_statement] = STATE(2733), + [sym_while_statement] = STATE(2733), + [sym_if_statement] = STATE(2733), + [sym_case_statement] = STATE(2733), + [sym_function_definition] = STATE(2733), + [sym_subshell] = STATE(2733), + [sym_pipeline] = STATE(2733), + [sym_list] = STATE(2733), + [sym_command] = STATE(2733), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(2733), + [sym_variable_assignment] = STATE(2734), + [sym_declaration_command] = STATE(2733), + [sym_unset_command] = STATE(2733), + [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(2567), - [aux_sym_command_repeat1] = STATE(33), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(5716), - [anon_sym_SEMI_SEMI] = ACTIONS(5724), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -66202,220 +57338,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [sym_word] = ACTIONS(332), }, - [2571] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(2969), - [anon_sym_RPAREN] = ACTIONS(2969), - [sym_comment] = ACTIONS(56), - }, - [2572] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5726), - [sym_comment] = ACTIONS(56), - }, - [2573] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5728), - [sym_comment] = ACTIONS(56), - }, - [2574] = { - [anon_sym_RBRACE] = ACTIONS(5728), - [sym_comment] = ACTIONS(56), - }, - [2575] = { - [sym__concat] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3023), - [anon_sym_RPAREN] = ACTIONS(3023), - [sym_comment] = ACTIONS(56), - }, - [2576] = { - [sym_concatenation] = STATE(2738), - [sym_string] = STATE(2737), - [sym_simple_expansion] = STATE(2737), - [sym_string_expansion] = STATE(2737), - [sym_expansion] = STATE(2737), - [sym_command_substitution] = STATE(2737), - [sym_process_substitution] = STATE(2737), - [anon_sym_RBRACE] = ACTIONS(5728), - [sym__special_characters] = ACTIONS(5730), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5732), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5734), - }, - [2577] = { - [sym__concat] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(3068), - [anon_sym_RPAREN] = ACTIONS(3068), - [sym_comment] = ACTIONS(56), - }, - [2578] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5736), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2579] = { - [sym__concat] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(3074), - [anon_sym_RPAREN] = ACTIONS(3074), - [sym_comment] = ACTIONS(56), - }, - [2580] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5738), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2581] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5728), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2582] = { - [sym__concat] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(3080), - [anon_sym_RPAREN] = ACTIONS(3080), - [sym_comment] = ACTIONS(56), - }, - [2583] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_bracket_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_subscript] = STATE(29), + [2084] = { + [sym_for_statement] = STATE(2735), + [sym_while_statement] = STATE(2735), + [sym_if_statement] = STATE(2735), + [sym_case_statement] = STATE(2735), + [sym_function_definition] = STATE(2735), + [sym_subshell] = STATE(2735), + [sym_pipeline] = STATE(2735), + [sym_list] = STATE(2735), + [sym_command] = STATE(2735), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(2735), + [sym_variable_assignment] = STATE(2736), + [sym_declaration_command] = STATE(2735), + [sym_unset_command] = STATE(2735), + [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(2742), - [aux_sym_command_repeat1] = STATE(33), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(5740), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -66423,490 +57399,460 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [sym_word] = ACTIONS(300), }, - [2584] = { - [aux_sym_case_item_repeat1] = STATE(2255), - [anon_sym_PIPE] = ACTIONS(3880), - [anon_sym_RPAREN] = ACTIONS(5742), + [2085] = { + [sym__concat] = ACTIONS(3235), + [sym_variable_name] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3237), + [anon_sym_RPAREN] = ACTIONS(3237), + [anon_sym_SEMI_SEMI] = ACTIONS(3237), + [anon_sym_PIPE_AMP] = ACTIONS(3237), + [anon_sym_AMP_AMP] = ACTIONS(3237), + [anon_sym_PIPE_PIPE] = ACTIONS(3237), + [sym__special_characters] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3237), + [anon_sym_DOLLAR] = ACTIONS(3237), + [sym_raw_string] = ACTIONS(3237), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3237), + [anon_sym_BQUOTE] = ACTIONS(3237), + [anon_sym_LT_LPAREN] = ACTIONS(3237), + [anon_sym_GT_LPAREN] = ACTIONS(3237), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3237), + [sym_word] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_LF] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), + }, + [2086] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(5647), [sym_comment] = ACTIONS(56), }, - [2585] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_bracket_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(2745), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(5744), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [2586] = { - [aux_sym_case_item_repeat1] = STATE(2255), - [anon_sym_PIPE] = ACTIONS(3880), - [anon_sym_RPAREN] = ACTIONS(5746), + [2087] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(5649), [sym_comment] = ACTIONS(56), }, - [2587] = { - [anon_sym_PIPE] = ACTIONS(5748), - [anon_sym_RPAREN] = ACTIONS(5748), - [anon_sym_SEMI_SEMI] = ACTIONS(5748), - [anon_sym_PIPE_AMP] = ACTIONS(5748), - [anon_sym_AMP_AMP] = ACTIONS(5748), - [anon_sym_PIPE_PIPE] = ACTIONS(5748), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(5748), - [anon_sym_LF] = ACTIONS(5748), - [anon_sym_AMP] = ACTIONS(5748), - }, - [2588] = { - [anon_sym_PIPE] = ACTIONS(5750), - [anon_sym_RPAREN] = ACTIONS(5750), - [anon_sym_SEMI_SEMI] = ACTIONS(5750), - [anon_sym_PIPE_AMP] = ACTIONS(5750), - [anon_sym_AMP_AMP] = ACTIONS(5750), - [anon_sym_PIPE_PIPE] = ACTIONS(5750), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(5750), - [anon_sym_LF] = ACTIONS(5750), - [anon_sym_AMP] = ACTIONS(5750), - }, - [2589] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_SEMI_SEMI] = ACTIONS(2971), - [anon_sym_PIPE_AMP] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_PIPE_PIPE] = ACTIONS(2971), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - }, - [2590] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5752), + [2088] = { + [anon_sym_RBRACE] = ACTIONS(5649), [sym_comment] = ACTIONS(56), }, - [2591] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5754), + [2089] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2740), + [anon_sym_RBRACE] = ACTIONS(5651), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2090] = { + [sym__concat] = ACTIONS(3297), + [sym_variable_name] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_RPAREN] = ACTIONS(3299), + [anon_sym_SEMI_SEMI] = ACTIONS(3299), + [anon_sym_PIPE_AMP] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [sym__special_characters] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3299), + [sym_raw_string] = ACTIONS(3299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3299), + [anon_sym_BQUOTE] = ACTIONS(3299), + [anon_sym_LT_LPAREN] = ACTIONS(3299), + [anon_sym_GT_LPAREN] = ACTIONS(3299), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3299), + [sym_word] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_LF] = ACTIONS(3299), + [anon_sym_AMP] = ACTIONS(3299), + }, + [2091] = { + [sym_concatenation] = STATE(2743), + [sym_string] = STATE(2742), + [sym_simple_expansion] = STATE(2742), + [sym_string_expansion] = STATE(2742), + [sym_expansion] = STATE(2742), + [sym_command_substitution] = STATE(2742), + [sym_process_substitution] = STATE(2742), + [anon_sym_RBRACE] = ACTIONS(5649), + [sym__special_characters] = ACTIONS(5653), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(5655), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5657), + }, + [2092] = { + [sym__concat] = ACTIONS(3342), + [sym_variable_name] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(3344), + [anon_sym_RPAREN] = ACTIONS(3344), + [anon_sym_SEMI_SEMI] = ACTIONS(3344), + [anon_sym_PIPE_AMP] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [sym__special_characters] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_DOLLAR] = ACTIONS(3344), + [sym_raw_string] = ACTIONS(3344), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3344), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3344), + [anon_sym_BQUOTE] = ACTIONS(3344), + [anon_sym_LT_LPAREN] = ACTIONS(3344), + [anon_sym_GT_LPAREN] = ACTIONS(3344), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3344), + [sym_word] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_LF] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3344), + }, + [2093] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5659), + }, + [2094] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5661), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2095] = { + [sym__concat] = ACTIONS(3350), + [sym_variable_name] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3352), + [anon_sym_RPAREN] = ACTIONS(3352), + [anon_sym_SEMI_SEMI] = ACTIONS(3352), + [anon_sym_PIPE_AMP] = ACTIONS(3352), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_PIPE_PIPE] = ACTIONS(3352), + [sym__special_characters] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [anon_sym_DOLLAR] = ACTIONS(3352), + [sym_raw_string] = ACTIONS(3352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3352), + [anon_sym_BQUOTE] = ACTIONS(3352), + [anon_sym_LT_LPAREN] = ACTIONS(3352), + [anon_sym_GT_LPAREN] = ACTIONS(3352), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3352), + [sym_word] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3352), + [anon_sym_LF] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3352), + }, + [2096] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5663), + }, + [2097] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5665), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2098] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5667), + }, + [2099] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5649), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2100] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2750), + [anon_sym_RBRACE] = ACTIONS(5669), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2101] = { + [sym__concat] = ACTIONS(3362), + [sym_variable_name] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(3364), + [anon_sym_RPAREN] = ACTIONS(3364), + [anon_sym_SEMI_SEMI] = ACTIONS(3364), + [anon_sym_PIPE_AMP] = ACTIONS(3364), + [anon_sym_AMP_AMP] = ACTIONS(3364), + [anon_sym_PIPE_PIPE] = ACTIONS(3364), + [sym__special_characters] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [anon_sym_DOLLAR] = ACTIONS(3364), + [sym_raw_string] = ACTIONS(3364), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3364), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3364), + [anon_sym_BQUOTE] = ACTIONS(3364), + [anon_sym_LT_LPAREN] = ACTIONS(3364), + [anon_sym_GT_LPAREN] = ACTIONS(3364), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3364), + [sym_word] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_LF] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3364), + }, + [2102] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2752), + [anon_sym_RBRACE] = ACTIONS(5671), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2103] = { + [sym__concat] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3237), + [anon_sym_RPAREN] = ACTIONS(3237), + [anon_sym_SEMI_SEMI] = ACTIONS(3237), + [anon_sym_PIPE_AMP] = ACTIONS(3237), + [anon_sym_AMP_AMP] = ACTIONS(3237), + [anon_sym_PIPE_PIPE] = ACTIONS(3237), + [sym__special_characters] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3237), + [anon_sym_DOLLAR] = ACTIONS(3237), + [sym_raw_string] = ACTIONS(3237), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3237), + [anon_sym_BQUOTE] = ACTIONS(3237), + [anon_sym_LT_LPAREN] = ACTIONS(3237), + [anon_sym_GT_LPAREN] = ACTIONS(3237), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3237), + [sym_word] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_LF] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), + }, + [2104] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(5673), [sym_comment] = ACTIONS(56), }, - [2592] = { - [anon_sym_RBRACE] = ACTIONS(5754), + [2105] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(5675), [sym_comment] = ACTIONS(56), }, - [2593] = { - [sym__concat] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3025), - [anon_sym_SEMI_SEMI] = ACTIONS(3025), - [anon_sym_PIPE_AMP] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_LF] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3025), - }, - [2594] = { - [sym_concatenation] = STATE(2751), - [sym_string] = STATE(2750), - [sym_simple_expansion] = STATE(2750), - [sym_string_expansion] = STATE(2750), - [sym_expansion] = STATE(2750), - [sym_command_substitution] = STATE(2750), - [sym_process_substitution] = STATE(2750), - [anon_sym_RBRACE] = ACTIONS(5754), - [sym__special_characters] = ACTIONS(5756), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5758), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5760), - }, - [2595] = { - [sym__concat] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_SEMI_SEMI] = ACTIONS(3070), - [anon_sym_PIPE_AMP] = ACTIONS(3070), - [anon_sym_AMP_AMP] = ACTIONS(3070), - [anon_sym_PIPE_PIPE] = ACTIONS(3070), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3070), - [anon_sym_LF] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3070), - }, - [2596] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5762), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2597] = { - [sym__concat] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(3076), - [anon_sym_SEMI_SEMI] = ACTIONS(3076), - [anon_sym_PIPE_AMP] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3076), - [anon_sym_LF] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3076), - }, - [2598] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5764), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2599] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5754), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2600] = { - [sym__concat] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(3082), - [anon_sym_SEMI_SEMI] = ACTIONS(3082), - [anon_sym_PIPE_AMP] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3082), - [anon_sym_LF] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3082), - }, - [2601] = { - [sym_file_descriptor] = ACTIONS(4214), - [sym__concat] = ACTIONS(4214), - [sym_variable_name] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_RPAREN] = ACTIONS(4216), - [anon_sym_SEMI_SEMI] = ACTIONS(4216), - [anon_sym_PIPE_AMP] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4216), - [anon_sym_PIPE_PIPE] = ACTIONS(4216), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_AMP_GT] = ACTIONS(4216), - [anon_sym_AMP_GT_GT] = ACTIONS(4216), - [anon_sym_LT_AMP] = ACTIONS(4216), - [anon_sym_GT_AMP] = ACTIONS(4216), - [sym__special_characters] = ACTIONS(4216), - [anon_sym_DQUOTE] = ACTIONS(4216), - [anon_sym_DOLLAR] = ACTIONS(4216), - [sym_raw_string] = ACTIONS(4216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4216), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4216), - [anon_sym_BQUOTE] = ACTIONS(4216), - [anon_sym_LT_LPAREN] = ACTIONS(4216), - [anon_sym_GT_LPAREN] = ACTIONS(4216), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(4216), - [anon_sym_SEMI] = ACTIONS(4216), - [anon_sym_LF] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - }, - [2602] = { - [sym_file_descriptor] = ACTIONS(4220), - [sym__concat] = ACTIONS(4220), - [sym_variable_name] = ACTIONS(4220), - [anon_sym_PIPE] = ACTIONS(4222), - [anon_sym_RPAREN] = ACTIONS(4222), - [anon_sym_SEMI_SEMI] = ACTIONS(4222), - [anon_sym_PIPE_AMP] = ACTIONS(4222), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [anon_sym_LT] = ACTIONS(4222), - [anon_sym_GT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4222), - [anon_sym_AMP_GT] = ACTIONS(4222), - [anon_sym_AMP_GT_GT] = ACTIONS(4222), - [anon_sym_LT_AMP] = ACTIONS(4222), - [anon_sym_GT_AMP] = ACTIONS(4222), - [sym__special_characters] = ACTIONS(4222), - [anon_sym_DQUOTE] = ACTIONS(4222), - [anon_sym_DOLLAR] = ACTIONS(4222), - [sym_raw_string] = ACTIONS(4222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4222), - [anon_sym_BQUOTE] = ACTIONS(4222), - [anon_sym_LT_LPAREN] = ACTIONS(4222), - [anon_sym_GT_LPAREN] = ACTIONS(4222), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(4222), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_LF] = ACTIONS(4222), - [anon_sym_AMP] = ACTIONS(4222), - }, - [2603] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5766), + [2106] = { + [anon_sym_RBRACE] = ACTIONS(5675), [sym_comment] = ACTIONS(56), }, - [2604] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5768), - [sym_comment] = ACTIONS(56), + [2107] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2756), + [anon_sym_RBRACE] = ACTIONS(5677), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2605] = { - [anon_sym_RBRACE] = ACTIONS(5768), - [sym_comment] = ACTIONS(56), + [2108] = { + [sym__concat] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_RPAREN] = ACTIONS(3299), + [anon_sym_SEMI_SEMI] = ACTIONS(3299), + [anon_sym_PIPE_AMP] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [sym__special_characters] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3299), + [sym_raw_string] = ACTIONS(3299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3299), + [anon_sym_BQUOTE] = ACTIONS(3299), + [anon_sym_LT_LPAREN] = ACTIONS(3299), + [anon_sym_GT_LPAREN] = ACTIONS(3299), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3299), + [sym_word] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_LF] = ACTIONS(3299), + [anon_sym_AMP] = ACTIONS(3299), }, - [2606] = { - [sym_file_descriptor] = ACTIONS(4269), - [sym__concat] = ACTIONS(4269), - [sym_variable_name] = ACTIONS(4269), - [anon_sym_PIPE] = ACTIONS(4271), - [anon_sym_RPAREN] = ACTIONS(4271), - [anon_sym_SEMI_SEMI] = ACTIONS(4271), - [anon_sym_PIPE_AMP] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4271), - [anon_sym_GT] = ACTIONS(4271), - [anon_sym_GT_GT] = ACTIONS(4271), - [anon_sym_AMP_GT] = ACTIONS(4271), - [anon_sym_AMP_GT_GT] = ACTIONS(4271), - [anon_sym_LT_AMP] = ACTIONS(4271), - [anon_sym_GT_AMP] = ACTIONS(4271), - [sym__special_characters] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4271), - [anon_sym_DOLLAR] = ACTIONS(4271), - [sym_raw_string] = ACTIONS(4271), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4271), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4271), - [anon_sym_BQUOTE] = ACTIONS(4271), - [anon_sym_LT_LPAREN] = ACTIONS(4271), - [anon_sym_GT_LPAREN] = ACTIONS(4271), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(4271), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_LF] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4271), - }, - [2607] = { - [sym_file_descriptor] = ACTIONS(4273), - [sym__concat] = ACTIONS(4273), - [sym_variable_name] = ACTIONS(4273), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [anon_sym_SEMI_SEMI] = ACTIONS(4275), - [anon_sym_PIPE_AMP] = ACTIONS(4275), - [anon_sym_AMP_AMP] = ACTIONS(4275), - [anon_sym_PIPE_PIPE] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_GT_GT] = ACTIONS(4275), - [anon_sym_AMP_GT] = ACTIONS(4275), - [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(4275), - [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(178), - [sym_word] = ACTIONS(4275), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_LF] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4275), - }, - [2608] = { - [sym__concat] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [anon_sym_PIPE_AMP] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - }, - [2609] = { - [aux_sym_concatenation_repeat1] = STATE(2609), - [sym__concat] = ACTIONS(5770), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_RPAREN] = ACTIONS(1792), - [anon_sym_SEMI_SEMI] = ACTIONS(1792), - [anon_sym_PIPE_AMP] = ACTIONS(1792), - [anon_sym_AMP_AMP] = ACTIONS(1792), - [anon_sym_PIPE_PIPE] = ACTIONS(1792), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1792), - [anon_sym_LF] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(1792), - }, - [2610] = { - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_RPAREN] = ACTIONS(1823), - [anon_sym_SEMI_SEMI] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1823), - [anon_sym_PIPE_PIPE] = ACTIONS(1823), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_LF] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - }, - [2611] = { + [2109] = { [sym_concatenation] = STATE(2759), [sym_string] = STATE(2758), [sym_simple_expansion] = STATE(2758), @@ -66914,3472 +57860,16504 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(2758), [sym_command_substitution] = STATE(2758), [sym_process_substitution] = STATE(2758), - [anon_sym_RBRACE] = ACTIONS(5773), - [sym__special_characters] = ACTIONS(5775), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5777), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(5675), + [sym__special_characters] = ACTIONS(5679), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(5681), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5779), + [sym_word] = ACTIONS(5683), }, - [2612] = { - [sym__concat] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_RPAREN] = ACTIONS(1868), - [anon_sym_SEMI_SEMI] = ACTIONS(1868), - [anon_sym_PIPE_AMP] = ACTIONS(1868), - [anon_sym_AMP_AMP] = ACTIONS(1868), - [anon_sym_PIPE_PIPE] = ACTIONS(1868), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1868), - [anon_sym_LF] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(1868), + [2110] = { + [sym__concat] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(3344), + [anon_sym_RPAREN] = ACTIONS(3344), + [anon_sym_SEMI_SEMI] = ACTIONS(3344), + [anon_sym_PIPE_AMP] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [sym__special_characters] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_DOLLAR] = ACTIONS(3344), + [sym_raw_string] = ACTIONS(3344), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3344), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3344), + [anon_sym_BQUOTE] = ACTIONS(3344), + [anon_sym_LT_LPAREN] = ACTIONS(3344), + [anon_sym_GT_LPAREN] = ACTIONS(3344), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3344), + [sym_word] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_LF] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3344), }, - [2613] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5781), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [2111] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5685), }, - [2614] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(5783), - [sym_comment] = ACTIONS(56), + [2112] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5687), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2615] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2763), - [anon_sym_RBRACE] = ACTIONS(5785), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [2113] = { + [sym__concat] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3352), + [anon_sym_RPAREN] = ACTIONS(3352), + [anon_sym_SEMI_SEMI] = ACTIONS(3352), + [anon_sym_PIPE_AMP] = ACTIONS(3352), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_PIPE_PIPE] = ACTIONS(3352), + [sym__special_characters] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [anon_sym_DOLLAR] = ACTIONS(3352), + [sym_raw_string] = ACTIONS(3352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3352), + [anon_sym_BQUOTE] = ACTIONS(3352), + [anon_sym_LT_LPAREN] = ACTIONS(3352), + [anon_sym_GT_LPAREN] = ACTIONS(3352), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3352), + [sym_word] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3352), + [anon_sym_LF] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3352), }, - [2616] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2765), - [anon_sym_RBRACE] = ACTIONS(5787), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [2114] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5689), }, - [2617] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), + [2115] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5691), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2116] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5693), + }, + [2117] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5675), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2118] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), [aux_sym_expansion_repeat1] = STATE(2766), - [anon_sym_RBRACE] = ACTIONS(5773), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(5695), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2618] = { - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1912), - [anon_sym_SEMI_SEMI] = ACTIONS(1912), - [anon_sym_PIPE_AMP] = ACTIONS(1912), - [anon_sym_AMP_AMP] = ACTIONS(1912), - [anon_sym_PIPE_PIPE] = ACTIONS(1912), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1912), - [anon_sym_LF] = ACTIONS(1912), - [anon_sym_AMP] = ACTIONS(1912), + [2119] = { + [sym__concat] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(3364), + [anon_sym_RPAREN] = ACTIONS(3364), + [anon_sym_SEMI_SEMI] = ACTIONS(3364), + [anon_sym_PIPE_AMP] = ACTIONS(3364), + [anon_sym_AMP_AMP] = ACTIONS(3364), + [anon_sym_PIPE_PIPE] = ACTIONS(3364), + [sym__special_characters] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [anon_sym_DOLLAR] = ACTIONS(3364), + [sym_raw_string] = ACTIONS(3364), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3364), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3364), + [anon_sym_BQUOTE] = ACTIONS(3364), + [anon_sym_LT_LPAREN] = ACTIONS(3364), + [anon_sym_GT_LPAREN] = ACTIONS(3364), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3364), + [sym_word] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_LF] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3364), }, - [2619] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5789), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [2120] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2768), + [anon_sym_RBRACE] = ACTIONS(5697), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2620] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_RPAREN] = ACTIONS(1918), - [anon_sym_SEMI_SEMI] = ACTIONS(1918), - [anon_sym_PIPE_AMP] = ACTIONS(1918), - [anon_sym_AMP_AMP] = ACTIONS(1918), - [anon_sym_PIPE_PIPE] = ACTIONS(1918), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(1918), - [anon_sym_LF] = ACTIONS(1918), - [anon_sym_AMP] = ACTIONS(1918), + [2121] = { + [sym_file_descriptor] = ACTIONS(4728), + [sym__concat] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4730), + [anon_sym_RPAREN] = ACTIONS(4730), + [anon_sym_SEMI_SEMI] = ACTIONS(4730), + [anon_sym_PIPE_AMP] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [anon_sym_EQ_TILDE] = ACTIONS(4730), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_GT] = ACTIONS(4730), + [anon_sym_GT_GT] = ACTIONS(4730), + [anon_sym_AMP_GT] = ACTIONS(4730), + [anon_sym_AMP_GT_GT] = ACTIONS(4730), + [anon_sym_LT_AMP] = ACTIONS(4730), + [anon_sym_GT_AMP] = ACTIONS(4730), + [anon_sym_LT_LT] = ACTIONS(4730), + [anon_sym_LT_LT_DASH] = ACTIONS(4730), + [anon_sym_LT_LT_LT] = ACTIONS(4730), + [sym__special_characters] = ACTIONS(4730), + [anon_sym_DQUOTE] = ACTIONS(4730), + [anon_sym_DOLLAR] = ACTIONS(4730), + [sym_raw_string] = ACTIONS(4730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), + [anon_sym_BQUOTE] = ACTIONS(4730), + [anon_sym_LT_LPAREN] = ACTIONS(4730), + [anon_sym_GT_LPAREN] = ACTIONS(4730), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_LF] = ACTIONS(4730), + [anon_sym_AMP] = ACTIONS(4730), }, - [2621] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5773), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [2122] = { + [sym_file_descriptor] = ACTIONS(4734), + [sym__concat] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(4736), + [anon_sym_RPAREN] = ACTIONS(4736), + [anon_sym_SEMI_SEMI] = ACTIONS(4736), + [anon_sym_PIPE_AMP] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [anon_sym_EQ_TILDE] = ACTIONS(4736), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_GT_GT] = ACTIONS(4736), + [anon_sym_AMP_GT] = ACTIONS(4736), + [anon_sym_AMP_GT_GT] = ACTIONS(4736), + [anon_sym_LT_AMP] = ACTIONS(4736), + [anon_sym_GT_AMP] = ACTIONS(4736), + [anon_sym_LT_LT] = ACTIONS(4736), + [anon_sym_LT_LT_DASH] = ACTIONS(4736), + [anon_sym_LT_LT_LT] = ACTIONS(4736), + [sym__special_characters] = ACTIONS(4736), + [anon_sym_DQUOTE] = ACTIONS(4736), + [anon_sym_DOLLAR] = ACTIONS(4736), + [sym_raw_string] = ACTIONS(4736), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), + [anon_sym_BQUOTE] = ACTIONS(4736), + [anon_sym_LT_LPAREN] = ACTIONS(4736), + [anon_sym_GT_LPAREN] = ACTIONS(4736), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_LF] = ACTIONS(4736), + [anon_sym_AMP] = ACTIONS(4736), }, - [2622] = { - [sym__concat] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2066), - [anon_sym_RPAREN] = ACTIONS(2066), - [anon_sym_SEMI_SEMI] = ACTIONS(2066), - [anon_sym_PIPE_AMP] = ACTIONS(2066), - [anon_sym_AMP_AMP] = ACTIONS(2066), - [anon_sym_PIPE_PIPE] = ACTIONS(2066), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2066), - [anon_sym_LF] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2066), + [2123] = { + [sym_file_descriptor] = ACTIONS(4797), + [sym__concat] = ACTIONS(4797), + [anon_sym_PIPE] = ACTIONS(4799), + [anon_sym_RPAREN] = ACTIONS(4799), + [anon_sym_SEMI_SEMI] = ACTIONS(4799), + [anon_sym_PIPE_AMP] = ACTIONS(4799), + [anon_sym_AMP_AMP] = ACTIONS(4799), + [anon_sym_PIPE_PIPE] = ACTIONS(4799), + [anon_sym_EQ_TILDE] = ACTIONS(4799), + [anon_sym_LT] = ACTIONS(4799), + [anon_sym_GT] = ACTIONS(4799), + [anon_sym_GT_GT] = ACTIONS(4799), + [anon_sym_AMP_GT] = ACTIONS(4799), + [anon_sym_AMP_GT_GT] = ACTIONS(4799), + [anon_sym_LT_AMP] = ACTIONS(4799), + [anon_sym_GT_AMP] = ACTIONS(4799), + [anon_sym_LT_LT] = ACTIONS(4799), + [anon_sym_LT_LT_DASH] = ACTIONS(4799), + [anon_sym_LT_LT_LT] = ACTIONS(4799), + [sym__special_characters] = ACTIONS(4799), + [anon_sym_DQUOTE] = ACTIONS(4799), + [anon_sym_DOLLAR] = ACTIONS(4799), + [sym_raw_string] = ACTIONS(4799), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4799), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4799), + [anon_sym_BQUOTE] = ACTIONS(4799), + [anon_sym_LT_LPAREN] = ACTIONS(4799), + [anon_sym_GT_LPAREN] = ACTIONS(4799), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4799), + [anon_sym_SEMI] = ACTIONS(4799), + [anon_sym_LF] = ACTIONS(4799), + [anon_sym_AMP] = ACTIONS(4799), }, - [2623] = { - [sym__concat] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_RPAREN] = ACTIONS(2230), - [anon_sym_SEMI_SEMI] = ACTIONS(2230), - [anon_sym_PIPE_AMP] = ACTIONS(2230), - [anon_sym_AMP_AMP] = ACTIONS(2230), - [anon_sym_PIPE_PIPE] = ACTIONS(2230), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_LF] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), + [2124] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5699), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2624] = { - [sym__concat] = ACTIONS(5021), - [sym_variable_name] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [anon_sym_SEMI_SEMI] = ACTIONS(5023), - [anon_sym_PIPE_AMP] = ACTIONS(5023), - [anon_sym_AMP_AMP] = ACTIONS(5023), - [anon_sym_PIPE_PIPE] = ACTIONS(5023), - [sym__special_characters] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5023), - [sym_raw_string] = ACTIONS(5023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5023), - [anon_sym_BQUOTE] = ACTIONS(5023), - [anon_sym_LT_LPAREN] = ACTIONS(5023), - [anon_sym_GT_LPAREN] = ACTIONS(5023), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5023), - [sym_word] = ACTIONS(5023), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_LF] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(5023), - }, - [2625] = { - [sym__concat] = ACTIONS(5025), - [sym_variable_name] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [anon_sym_SEMI_SEMI] = ACTIONS(5027), - [anon_sym_PIPE_AMP] = ACTIONS(5027), - [anon_sym_AMP_AMP] = ACTIONS(5027), - [anon_sym_PIPE_PIPE] = ACTIONS(5027), - [sym__special_characters] = ACTIONS(5027), - [anon_sym_DQUOTE] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5027), - [sym_raw_string] = ACTIONS(5027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5027), - [anon_sym_BQUOTE] = ACTIONS(5027), - [anon_sym_LT_LPAREN] = ACTIONS(5027), - [anon_sym_GT_LPAREN] = ACTIONS(5027), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5027), - [sym_word] = ACTIONS(5027), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_LF] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(5027), - }, - [2626] = { - [sym__concat] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [anon_sym_SEMI_SEMI] = ACTIONS(5023), - [anon_sym_PIPE_AMP] = ACTIONS(5023), - [anon_sym_AMP_AMP] = ACTIONS(5023), - [anon_sym_PIPE_PIPE] = ACTIONS(5023), - [sym__special_characters] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5023), - [sym_raw_string] = ACTIONS(5023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5023), - [anon_sym_BQUOTE] = ACTIONS(5023), - [anon_sym_LT_LPAREN] = ACTIONS(5023), - [anon_sym_GT_LPAREN] = ACTIONS(5023), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5023), - [sym_word] = ACTIONS(5023), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_LF] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(5023), - }, - [2627] = { - [sym__concat] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [anon_sym_SEMI_SEMI] = ACTIONS(5027), - [anon_sym_PIPE_AMP] = ACTIONS(5027), - [anon_sym_AMP_AMP] = ACTIONS(5027), - [anon_sym_PIPE_PIPE] = ACTIONS(5027), - [sym__special_characters] = ACTIONS(5027), - [anon_sym_DQUOTE] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5027), - [sym_raw_string] = ACTIONS(5027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5027), - [anon_sym_BQUOTE] = ACTIONS(5027), - [anon_sym_LT_LPAREN] = ACTIONS(5027), - [anon_sym_GT_LPAREN] = ACTIONS(5027), - [sym_comment] = ACTIONS(178), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5027), - [sym_word] = ACTIONS(5027), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_LF] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(5027), - }, - [2628] = { - [sym_file_descriptor] = ACTIONS(4214), - [sym__concat] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_RPAREN] = ACTIONS(4216), - [anon_sym_SEMI_SEMI] = ACTIONS(4216), - [anon_sym_PIPE_AMP] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4216), - [anon_sym_PIPE_PIPE] = ACTIONS(4216), - [anon_sym_LT] = ACTIONS(4216), - [anon_sym_GT] = ACTIONS(4216), - [anon_sym_GT_GT] = ACTIONS(4216), - [anon_sym_AMP_GT] = ACTIONS(4216), - [anon_sym_AMP_GT_GT] = ACTIONS(4216), - [anon_sym_LT_AMP] = ACTIONS(4216), - [anon_sym_GT_AMP] = ACTIONS(4216), - [anon_sym_LT_LT] = ACTIONS(4216), - [anon_sym_LT_LT_DASH] = ACTIONS(4216), - [anon_sym_LT_LT_LT] = ACTIONS(4216), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4216), - [anon_sym_LF] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - }, - [2629] = { - [sym_file_descriptor] = ACTIONS(4220), - [sym__concat] = ACTIONS(4220), - [anon_sym_PIPE] = ACTIONS(4222), - [anon_sym_RPAREN] = ACTIONS(4222), - [anon_sym_SEMI_SEMI] = ACTIONS(4222), - [anon_sym_PIPE_AMP] = ACTIONS(4222), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [anon_sym_LT] = ACTIONS(4222), - [anon_sym_GT] = ACTIONS(4222), - [anon_sym_GT_GT] = ACTIONS(4222), - [anon_sym_AMP_GT] = ACTIONS(4222), - [anon_sym_AMP_GT_GT] = ACTIONS(4222), - [anon_sym_LT_AMP] = ACTIONS(4222), - [anon_sym_GT_AMP] = ACTIONS(4222), - [anon_sym_LT_LT] = ACTIONS(4222), - [anon_sym_LT_LT_DASH] = ACTIONS(4222), - [anon_sym_LT_LT_LT] = ACTIONS(4222), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_LF] = ACTIONS(4222), - [anon_sym_AMP] = ACTIONS(4222), - }, - [2630] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5791), + [2125] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(5701), [sym_comment] = ACTIONS(56), }, - [2631] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5793), + [2126] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(5703), [sym_comment] = ACTIONS(56), }, - [2632] = { - [anon_sym_RBRACE] = ACTIONS(5793), + [2127] = { + [anon_sym_RBRACE] = ACTIONS(5703), [sym_comment] = ACTIONS(56), }, - [2633] = { - [sym_file_descriptor] = ACTIONS(4269), - [sym__concat] = ACTIONS(4269), - [anon_sym_PIPE] = ACTIONS(4271), - [anon_sym_RPAREN] = ACTIONS(4271), - [anon_sym_SEMI_SEMI] = ACTIONS(4271), - [anon_sym_PIPE_AMP] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [anon_sym_LT] = ACTIONS(4271), - [anon_sym_GT] = ACTIONS(4271), - [anon_sym_GT_GT] = ACTIONS(4271), - [anon_sym_AMP_GT] = ACTIONS(4271), - [anon_sym_AMP_GT_GT] = ACTIONS(4271), - [anon_sym_LT_AMP] = ACTIONS(4271), - [anon_sym_GT_AMP] = ACTIONS(4271), - [anon_sym_LT_LT] = ACTIONS(4271), - [anon_sym_LT_LT_DASH] = ACTIONS(4271), - [anon_sym_LT_LT_LT] = ACTIONS(4271), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_LF] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4271), + [2128] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2773), + [anon_sym_RBRACE] = ACTIONS(5705), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2634] = { - [sym_file_descriptor] = ACTIONS(4273), - [sym__concat] = ACTIONS(4273), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [anon_sym_SEMI_SEMI] = ACTIONS(4275), - [anon_sym_PIPE_AMP] = ACTIONS(4275), - [anon_sym_AMP_AMP] = ACTIONS(4275), - [anon_sym_PIPE_PIPE] = ACTIONS(4275), - [anon_sym_LT] = ACTIONS(4275), - [anon_sym_GT] = ACTIONS(4275), - [anon_sym_GT_GT] = ACTIONS(4275), - [anon_sym_AMP_GT] = ACTIONS(4275), - [anon_sym_AMP_GT_GT] = ACTIONS(4275), - [anon_sym_LT_AMP] = ACTIONS(4275), - [anon_sym_GT_AMP] = ACTIONS(4275), - [anon_sym_LT_LT] = ACTIONS(4275), - [anon_sym_LT_LT_DASH] = ACTIONS(4275), - [anon_sym_LT_LT_LT] = ACTIONS(4275), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_LF] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4275), + [2129] = { + [sym_file_descriptor] = ACTIONS(4809), + [sym__concat] = ACTIONS(4809), + [anon_sym_PIPE] = ACTIONS(4811), + [anon_sym_RPAREN] = ACTIONS(4811), + [anon_sym_SEMI_SEMI] = ACTIONS(4811), + [anon_sym_PIPE_AMP] = ACTIONS(4811), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_EQ_TILDE] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4811), + [anon_sym_GT] = ACTIONS(4811), + [anon_sym_GT_GT] = ACTIONS(4811), + [anon_sym_AMP_GT] = ACTIONS(4811), + [anon_sym_AMP_GT_GT] = ACTIONS(4811), + [anon_sym_LT_AMP] = ACTIONS(4811), + [anon_sym_GT_AMP] = ACTIONS(4811), + [anon_sym_LT_LT] = ACTIONS(4811), + [anon_sym_LT_LT_DASH] = ACTIONS(4811), + [anon_sym_LT_LT_LT] = ACTIONS(4811), + [sym__special_characters] = ACTIONS(4811), + [anon_sym_DQUOTE] = ACTIONS(4811), + [anon_sym_DOLLAR] = ACTIONS(4811), + [sym_raw_string] = ACTIONS(4811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4811), + [anon_sym_BQUOTE] = ACTIONS(4811), + [anon_sym_LT_LPAREN] = ACTIONS(4811), + [anon_sym_GT_LPAREN] = ACTIONS(4811), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4811), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym_LF] = ACTIONS(4811), + [anon_sym_AMP] = ACTIONS(4811), }, - [2635] = { - [sym__concat] = ACTIONS(4214), - [anon_sym_RBRACE] = ACTIONS(4214), + [2130] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2775), + [anon_sym_RBRACE] = ACTIONS(5707), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2131] = { + [sym_file_descriptor] = ACTIONS(4815), + [sym__concat] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(4817), + [anon_sym_RPAREN] = ACTIONS(4817), + [anon_sym_SEMI_SEMI] = ACTIONS(4817), + [anon_sym_PIPE_AMP] = ACTIONS(4817), + [anon_sym_AMP_AMP] = ACTIONS(4817), + [anon_sym_PIPE_PIPE] = ACTIONS(4817), + [anon_sym_EQ_TILDE] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4817), + [anon_sym_GT] = ACTIONS(4817), + [anon_sym_GT_GT] = ACTIONS(4817), + [anon_sym_AMP_GT] = ACTIONS(4817), + [anon_sym_AMP_GT_GT] = ACTIONS(4817), + [anon_sym_LT_AMP] = ACTIONS(4817), + [anon_sym_GT_AMP] = ACTIONS(4817), + [anon_sym_LT_LT] = ACTIONS(4817), + [anon_sym_LT_LT_DASH] = ACTIONS(4817), + [anon_sym_LT_LT_LT] = ACTIONS(4817), + [sym__special_characters] = ACTIONS(4817), + [anon_sym_DQUOTE] = ACTIONS(4817), + [anon_sym_DOLLAR] = ACTIONS(4817), + [sym_raw_string] = ACTIONS(4817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4817), + [anon_sym_BQUOTE] = ACTIONS(4817), + [anon_sym_LT_LPAREN] = ACTIONS(4817), + [anon_sym_GT_LPAREN] = ACTIONS(4817), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4817), + [anon_sym_SEMI] = ACTIONS(4817), + [anon_sym_LF] = ACTIONS(4817), + [anon_sym_AMP] = ACTIONS(4817), + }, + [2132] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2777), + [anon_sym_RBRACE] = ACTIONS(5709), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2133] = { + [sym_file_descriptor] = ACTIONS(4821), + [sym__concat] = ACTIONS(4821), + [anon_sym_PIPE] = ACTIONS(4823), + [anon_sym_RPAREN] = ACTIONS(4823), + [anon_sym_SEMI_SEMI] = ACTIONS(4823), + [anon_sym_PIPE_AMP] = ACTIONS(4823), + [anon_sym_AMP_AMP] = ACTIONS(4823), + [anon_sym_PIPE_PIPE] = ACTIONS(4823), + [anon_sym_EQ_TILDE] = ACTIONS(4823), + [anon_sym_LT] = ACTIONS(4823), + [anon_sym_GT] = ACTIONS(4823), + [anon_sym_GT_GT] = ACTIONS(4823), + [anon_sym_AMP_GT] = ACTIONS(4823), + [anon_sym_AMP_GT_GT] = ACTIONS(4823), + [anon_sym_LT_AMP] = ACTIONS(4823), + [anon_sym_GT_AMP] = ACTIONS(4823), + [anon_sym_LT_LT] = ACTIONS(4823), + [anon_sym_LT_LT_DASH] = ACTIONS(4823), + [anon_sym_LT_LT_LT] = ACTIONS(4823), + [sym__special_characters] = ACTIONS(4823), + [anon_sym_DQUOTE] = ACTIONS(4823), + [anon_sym_DOLLAR] = ACTIONS(4823), + [sym_raw_string] = ACTIONS(4823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4823), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4823), + [anon_sym_BQUOTE] = ACTIONS(4823), + [anon_sym_LT_LPAREN] = ACTIONS(4823), + [anon_sym_GT_LPAREN] = ACTIONS(4823), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4823), + [anon_sym_SEMI] = ACTIONS(4823), + [anon_sym_LF] = ACTIONS(4823), + [anon_sym_AMP] = ACTIONS(4823), + }, + [2134] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5711), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2135] = { + [sym_file_descriptor] = ACTIONS(4827), + [sym__concat] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_RPAREN] = ACTIONS(4829), + [anon_sym_SEMI_SEMI] = ACTIONS(4829), + [anon_sym_PIPE_AMP] = ACTIONS(4829), + [anon_sym_AMP_AMP] = ACTIONS(4829), + [anon_sym_PIPE_PIPE] = ACTIONS(4829), + [anon_sym_EQ_TILDE] = ACTIONS(4829), + [anon_sym_LT] = ACTIONS(4829), + [anon_sym_GT] = ACTIONS(4829), + [anon_sym_GT_GT] = ACTIONS(4829), + [anon_sym_AMP_GT] = ACTIONS(4829), + [anon_sym_AMP_GT_GT] = ACTIONS(4829), + [anon_sym_LT_AMP] = ACTIONS(4829), + [anon_sym_GT_AMP] = ACTIONS(4829), + [anon_sym_LT_LT] = ACTIONS(4829), + [anon_sym_LT_LT_DASH] = ACTIONS(4829), + [anon_sym_LT_LT_LT] = ACTIONS(4829), + [sym__special_characters] = ACTIONS(4829), + [anon_sym_DQUOTE] = ACTIONS(4829), + [anon_sym_DOLLAR] = ACTIONS(4829), + [sym_raw_string] = ACTIONS(4829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4829), + [anon_sym_BQUOTE] = ACTIONS(4829), + [anon_sym_LT_LPAREN] = ACTIONS(4829), + [anon_sym_GT_LPAREN] = ACTIONS(4829), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4829), + [anon_sym_SEMI] = ACTIONS(4829), + [anon_sym_LF] = ACTIONS(4829), + [anon_sym_AMP] = ACTIONS(4829), + }, + [2136] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5713), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2137] = { + [sym_file_descriptor] = ACTIONS(1858), + [sym__concat] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [anon_sym_PIPE_AMP] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1860), + [anon_sym_PIPE_PIPE] = ACTIONS(1860), + [anon_sym_LT] = ACTIONS(1860), + [anon_sym_GT] = ACTIONS(1860), + [anon_sym_GT_GT] = ACTIONS(1860), + [anon_sym_AMP_GT] = ACTIONS(1860), + [anon_sym_AMP_GT_GT] = ACTIONS(1860), + [anon_sym_LT_AMP] = ACTIONS(1860), + [anon_sym_GT_AMP] = ACTIONS(1860), + [anon_sym_LT_LT] = ACTIONS(1860), + [anon_sym_LT_LT_DASH] = ACTIONS(1860), + [anon_sym_LT_LT_LT] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + }, + [2138] = { + [aux_sym_concatenation_repeat1] = STATE(2138), + [sym_file_descriptor] = ACTIONS(1858), + [sym__concat] = ACTIONS(5715), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [anon_sym_PIPE_AMP] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1860), + [anon_sym_PIPE_PIPE] = ACTIONS(1860), + [anon_sym_LT] = ACTIONS(1860), + [anon_sym_GT] = ACTIONS(1860), + [anon_sym_GT_GT] = ACTIONS(1860), + [anon_sym_AMP_GT] = ACTIONS(1860), + [anon_sym_AMP_GT_GT] = ACTIONS(1860), + [anon_sym_LT_AMP] = ACTIONS(1860), + [anon_sym_GT_AMP] = ACTIONS(1860), + [anon_sym_LT_LT] = ACTIONS(1860), + [anon_sym_LT_LT_DASH] = ACTIONS(1860), + [anon_sym_LT_LT_LT] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + }, + [2139] = { + [sym_file_descriptor] = ACTIONS(1895), + [sym__concat] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_RPAREN] = ACTIONS(1897), + [anon_sym_SEMI_SEMI] = ACTIONS(1897), + [anon_sym_PIPE_AMP] = ACTIONS(1897), + [anon_sym_AMP_AMP] = ACTIONS(1897), + [anon_sym_PIPE_PIPE] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1897), + [anon_sym_GT] = ACTIONS(1897), + [anon_sym_GT_GT] = ACTIONS(1897), + [anon_sym_AMP_GT] = ACTIONS(1897), + [anon_sym_AMP_GT_GT] = ACTIONS(1897), + [anon_sym_LT_AMP] = ACTIONS(1897), + [anon_sym_GT_AMP] = ACTIONS(1897), + [anon_sym_LT_LT] = ACTIONS(1897), + [anon_sym_LT_LT_DASH] = ACTIONS(1897), + [anon_sym_LT_LT_LT] = ACTIONS(1897), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_LF] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), + }, + [2140] = { + [sym_concatenation] = STATE(2783), + [sym_string] = STATE(2782), + [sym_simple_expansion] = STATE(2782), + [sym_string_expansion] = STATE(2782), + [sym_expansion] = STATE(2782), + [sym_command_substitution] = STATE(2782), + [sym_process_substitution] = STATE(2782), + [anon_sym_RBRACE] = ACTIONS(5718), + [sym__special_characters] = ACTIONS(5720), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(5722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5724), + }, + [2141] = { + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1942), + [anon_sym_PIPE_AMP] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1942), + [anon_sym_PIPE_PIPE] = ACTIONS(1942), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_GT] = ACTIONS(1942), + [anon_sym_GT_GT] = ACTIONS(1942), + [anon_sym_AMP_GT] = ACTIONS(1942), + [anon_sym_AMP_GT_GT] = ACTIONS(1942), + [anon_sym_LT_AMP] = ACTIONS(1942), + [anon_sym_GT_AMP] = ACTIONS(1942), + [anon_sym_LT_LT] = ACTIONS(1942), + [anon_sym_LT_LT_DASH] = ACTIONS(1942), + [anon_sym_LT_LT_LT] = ACTIONS(1942), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + }, + [2142] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5726), + }, + [2143] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5728), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2144] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(5730), [sym_comment] = ACTIONS(56), }, - [2636] = { - [sym__concat] = ACTIONS(4220), - [anon_sym_RBRACE] = ACTIONS(4220), + [2145] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2789), + [anon_sym_RBRACE] = ACTIONS(5732), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5734), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2146] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2792), + [anon_sym_RBRACE] = ACTIONS(5736), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5738), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2147] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2794), + [anon_sym_RBRACE] = ACTIONS(5718), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5740), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2148] = { + [sym_file_descriptor] = ACTIONS(1992), + [sym__concat] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(1994), + [anon_sym_RPAREN] = ACTIONS(1994), + [anon_sym_SEMI_SEMI] = ACTIONS(1994), + [anon_sym_PIPE_AMP] = ACTIONS(1994), + [anon_sym_AMP_AMP] = ACTIONS(1994), + [anon_sym_PIPE_PIPE] = ACTIONS(1994), + [anon_sym_LT] = ACTIONS(1994), + [anon_sym_GT] = ACTIONS(1994), + [anon_sym_GT_GT] = ACTIONS(1994), + [anon_sym_AMP_GT] = ACTIONS(1994), + [anon_sym_AMP_GT_GT] = ACTIONS(1994), + [anon_sym_LT_AMP] = ACTIONS(1994), + [anon_sym_GT_AMP] = ACTIONS(1994), + [anon_sym_LT_LT] = ACTIONS(1994), + [anon_sym_LT_LT_DASH] = ACTIONS(1994), + [anon_sym_LT_LT_LT] = ACTIONS(1994), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_LF] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + }, + [2149] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5742), + }, + [2150] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5744), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2151] = { + [sym_file_descriptor] = ACTIONS(2000), + [sym__concat] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_RPAREN] = ACTIONS(2002), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [anon_sym_PIPE_AMP] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_PIPE_PIPE] = ACTIONS(2002), + [anon_sym_LT] = ACTIONS(2002), + [anon_sym_GT] = ACTIONS(2002), + [anon_sym_GT_GT] = ACTIONS(2002), + [anon_sym_AMP_GT] = ACTIONS(2002), + [anon_sym_AMP_GT_GT] = ACTIONS(2002), + [anon_sym_LT_AMP] = ACTIONS(2002), + [anon_sym_GT_AMP] = ACTIONS(2002), + [anon_sym_LT_LT] = ACTIONS(2002), + [anon_sym_LT_LT_DASH] = ACTIONS(2002), + [anon_sym_LT_LT_LT] = ACTIONS(2002), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2002), + }, + [2152] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5746), + }, + [2153] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5718), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2154] = { + [sym_file_descriptor] = ACTIONS(2156), + [sym__concat] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_RPAREN] = ACTIONS(2158), + [anon_sym_SEMI_SEMI] = ACTIONS(2158), + [anon_sym_PIPE_AMP] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_PIPE_PIPE] = ACTIONS(2158), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_GT] = ACTIONS(2158), + [anon_sym_GT_GT] = ACTIONS(2158), + [anon_sym_AMP_GT] = ACTIONS(2158), + [anon_sym_AMP_GT_GT] = ACTIONS(2158), + [anon_sym_LT_AMP] = ACTIONS(2158), + [anon_sym_GT_AMP] = ACTIONS(2158), + [anon_sym_LT_LT] = ACTIONS(2158), + [anon_sym_LT_LT_DASH] = ACTIONS(2158), + [anon_sym_LT_LT_LT] = ACTIONS(2158), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym_LF] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2158), + }, + [2155] = { + [sym_file_descriptor] = ACTIONS(2358), + [sym__concat] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_RPAREN] = ACTIONS(2360), + [anon_sym_SEMI_SEMI] = ACTIONS(2360), + [anon_sym_PIPE_AMP] = ACTIONS(2360), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_AMP_GT] = ACTIONS(2360), + [anon_sym_AMP_GT_GT] = ACTIONS(2360), + [anon_sym_LT_AMP] = ACTIONS(2360), + [anon_sym_GT_AMP] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(2360), + [anon_sym_LT_LT_DASH] = ACTIONS(2360), + [anon_sym_LT_LT_LT] = ACTIONS(2360), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + }, + [2156] = { + [sym__concat] = ACTIONS(4728), + [anon_sym_EQ_TILDE] = ACTIONS(5748), + [anon_sym_RBRACK] = ACTIONS(4728), + [sym__special_characters] = ACTIONS(4730), + [anon_sym_DQUOTE] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(5748), + [sym_raw_string] = ACTIONS(4728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LT_LPAREN] = ACTIONS(4728), + [anon_sym_GT_LPAREN] = ACTIONS(4728), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4730), + }, + [2157] = { + [sym__concat] = ACTIONS(4734), + [anon_sym_EQ_TILDE] = ACTIONS(5750), + [anon_sym_RBRACK] = ACTIONS(4734), + [sym__special_characters] = ACTIONS(4736), + [anon_sym_DQUOTE] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(5750), + [sym_raw_string] = ACTIONS(4734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4734), + [anon_sym_BQUOTE] = ACTIONS(4734), + [anon_sym_LT_LPAREN] = ACTIONS(4734), + [anon_sym_GT_LPAREN] = ACTIONS(4734), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4736), + }, + [2158] = { + [sym__concat] = ACTIONS(4797), + [anon_sym_EQ_TILDE] = ACTIONS(5752), + [anon_sym_RBRACK] = ACTIONS(4797), + [sym__special_characters] = ACTIONS(4799), + [anon_sym_DQUOTE] = ACTIONS(4797), + [anon_sym_DOLLAR] = ACTIONS(5752), + [sym_raw_string] = ACTIONS(4797), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4797), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4797), + [anon_sym_BQUOTE] = ACTIONS(4797), + [anon_sym_LT_LPAREN] = ACTIONS(4797), + [anon_sym_GT_LPAREN] = ACTIONS(4797), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4799), + }, + [2159] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5754), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2160] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(5756), [sym_comment] = ACTIONS(56), }, - [2637] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5795), + [2161] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(5758), [sym_comment] = ACTIONS(56), }, - [2638] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5797), + [2162] = { + [anon_sym_RBRACE] = ACTIONS(5758), [sym_comment] = ACTIONS(56), }, - [2639] = { - [anon_sym_RBRACE] = ACTIONS(5797), + [2163] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2802), + [anon_sym_RBRACE] = ACTIONS(5760), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2164] = { + [sym__concat] = ACTIONS(4809), + [anon_sym_EQ_TILDE] = ACTIONS(5762), + [anon_sym_RBRACK] = ACTIONS(4809), + [sym__special_characters] = ACTIONS(4811), + [anon_sym_DQUOTE] = ACTIONS(4809), + [anon_sym_DOLLAR] = ACTIONS(5762), + [sym_raw_string] = ACTIONS(4809), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4809), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4809), + [anon_sym_BQUOTE] = ACTIONS(4809), + [anon_sym_LT_LPAREN] = ACTIONS(4809), + [anon_sym_GT_LPAREN] = ACTIONS(4809), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4811), + }, + [2165] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2804), + [anon_sym_RBRACE] = ACTIONS(5764), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2166] = { + [sym__concat] = ACTIONS(4815), + [anon_sym_EQ_TILDE] = ACTIONS(5766), + [anon_sym_RBRACK] = ACTIONS(4815), + [sym__special_characters] = ACTIONS(4817), + [anon_sym_DQUOTE] = ACTIONS(4815), + [anon_sym_DOLLAR] = ACTIONS(5766), + [sym_raw_string] = ACTIONS(4815), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4815), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4815), + [anon_sym_BQUOTE] = ACTIONS(4815), + [anon_sym_LT_LPAREN] = ACTIONS(4815), + [anon_sym_GT_LPAREN] = ACTIONS(4815), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4817), + }, + [2167] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2806), + [anon_sym_RBRACE] = ACTIONS(5768), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2168] = { + [sym__concat] = ACTIONS(4821), + [anon_sym_EQ_TILDE] = ACTIONS(5770), + [anon_sym_RBRACK] = ACTIONS(4821), + [sym__special_characters] = ACTIONS(4823), + [anon_sym_DQUOTE] = ACTIONS(4821), + [anon_sym_DOLLAR] = ACTIONS(5770), + [sym_raw_string] = ACTIONS(4821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4821), + [anon_sym_BQUOTE] = ACTIONS(4821), + [anon_sym_LT_LPAREN] = ACTIONS(4821), + [anon_sym_GT_LPAREN] = ACTIONS(4821), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4823), + }, + [2169] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5772), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2170] = { + [sym__concat] = ACTIONS(4827), + [anon_sym_EQ_TILDE] = ACTIONS(5774), + [anon_sym_RBRACK] = ACTIONS(4827), + [sym__special_characters] = ACTIONS(4829), + [anon_sym_DQUOTE] = ACTIONS(4827), + [anon_sym_DOLLAR] = ACTIONS(5774), + [sym_raw_string] = ACTIONS(4827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4827), + [anon_sym_BQUOTE] = ACTIONS(4827), + [anon_sym_LT_LPAREN] = ACTIONS(4827), + [anon_sym_GT_LPAREN] = ACTIONS(4827), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4829), + }, + [2171] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5776), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2172] = { + [sym__concat] = ACTIONS(4728), + [anon_sym_EQ_TILDE] = ACTIONS(5748), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4728), + [sym__special_characters] = ACTIONS(4730), + [anon_sym_DQUOTE] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(5748), + [sym_raw_string] = ACTIONS(4728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LT_LPAREN] = ACTIONS(4728), + [anon_sym_GT_LPAREN] = ACTIONS(4728), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4730), + }, + [2173] = { + [sym__concat] = ACTIONS(4734), + [anon_sym_EQ_TILDE] = ACTIONS(5750), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4734), + [sym__special_characters] = ACTIONS(4736), + [anon_sym_DQUOTE] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(5750), + [sym_raw_string] = ACTIONS(4734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4734), + [anon_sym_BQUOTE] = ACTIONS(4734), + [anon_sym_LT_LPAREN] = ACTIONS(4734), + [anon_sym_GT_LPAREN] = ACTIONS(4734), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4736), + }, + [2174] = { + [sym__concat] = ACTIONS(4797), + [anon_sym_EQ_TILDE] = ACTIONS(5752), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4797), + [sym__special_characters] = ACTIONS(4799), + [anon_sym_DQUOTE] = ACTIONS(4797), + [anon_sym_DOLLAR] = ACTIONS(5752), + [sym_raw_string] = ACTIONS(4797), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4797), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4797), + [anon_sym_BQUOTE] = ACTIONS(4797), + [anon_sym_LT_LPAREN] = ACTIONS(4797), + [anon_sym_GT_LPAREN] = ACTIONS(4797), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4799), + }, + [2175] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5778), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2176] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(5780), [sym_comment] = ACTIONS(56), }, - [2640] = { - [sym__concat] = ACTIONS(4269), - [anon_sym_RBRACE] = ACTIONS(4269), + [2177] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(5782), [sym_comment] = ACTIONS(56), }, - [2641] = { - [sym__concat] = ACTIONS(4273), - [anon_sym_RBRACE] = ACTIONS(4273), + [2178] = { + [anon_sym_RBRACE] = ACTIONS(5782), [sym_comment] = ACTIONS(56), }, - [2642] = { - [sym__concat] = ACTIONS(5021), - [anon_sym_RBRACE] = ACTIONS(5021), - [anon_sym_EQ] = ACTIONS(5490), - [sym__special_characters] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR] = ACTIONS(5490), - [sym_raw_string] = ACTIONS(5021), - [anon_sym_POUND] = ACTIONS(5021), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5021), - [anon_sym_COLON] = ACTIONS(5490), - [anon_sym_COLON_QMARK] = ACTIONS(5490), - [anon_sym_COLON_DASH] = ACTIONS(5490), - [anon_sym_PERCENT] = ACTIONS(5490), - [anon_sym_SLASH] = ACTIONS(5490), - [anon_sym_DASH] = ACTIONS(5490), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5021), - [anon_sym_LT_LPAREN] = ACTIONS(5021), - [anon_sym_GT_LPAREN] = ACTIONS(5021), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(5023), + [2179] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2813), + [anon_sym_RBRACE] = ACTIONS(5784), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2643] = { - [sym__concat] = ACTIONS(5025), - [anon_sym_RBRACE] = ACTIONS(5025), - [anon_sym_EQ] = ACTIONS(5492), - [sym__special_characters] = ACTIONS(5027), - [anon_sym_DQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR] = ACTIONS(5492), - [sym_raw_string] = ACTIONS(5025), - [anon_sym_POUND] = ACTIONS(5025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5025), - [anon_sym_COLON] = ACTIONS(5492), - [anon_sym_COLON_QMARK] = ACTIONS(5492), - [anon_sym_COLON_DASH] = ACTIONS(5492), - [anon_sym_PERCENT] = ACTIONS(5492), - [anon_sym_SLASH] = ACTIONS(5492), - [anon_sym_DASH] = ACTIONS(5492), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5025), - [anon_sym_LT_LPAREN] = ACTIONS(5025), - [anon_sym_GT_LPAREN] = ACTIONS(5025), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(5027), - }, - [2644] = { - [sym_file_descriptor] = ACTIONS(4214), - [sym__concat] = ACTIONS(4214), - [sym_variable_name] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4942), - [anon_sym_RPAREN] = ACTIONS(4214), - [anon_sym_PIPE_AMP] = ACTIONS(4214), - [anon_sym_AMP_AMP] = ACTIONS(4214), - [anon_sym_PIPE_PIPE] = ACTIONS(4214), - [anon_sym_LT] = ACTIONS(4942), - [anon_sym_GT] = ACTIONS(4942), - [anon_sym_GT_GT] = ACTIONS(4214), - [anon_sym_AMP_GT] = ACTIONS(4942), - [anon_sym_AMP_GT_GT] = ACTIONS(4214), - [anon_sym_LT_AMP] = ACTIONS(4214), - [anon_sym_GT_AMP] = ACTIONS(4214), - [sym__special_characters] = ACTIONS(4942), - [anon_sym_DQUOTE] = ACTIONS(4214), - [anon_sym_DOLLAR] = ACTIONS(4942), - [sym_raw_string] = ACTIONS(4214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4214), - [anon_sym_BQUOTE] = ACTIONS(4214), - [anon_sym_LT_LPAREN] = ACTIONS(4214), - [anon_sym_GT_LPAREN] = ACTIONS(4214), + [2180] = { + [sym__concat] = ACTIONS(4809), + [anon_sym_EQ_TILDE] = ACTIONS(5762), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4809), + [sym__special_characters] = ACTIONS(4811), + [anon_sym_DQUOTE] = ACTIONS(4809), + [anon_sym_DOLLAR] = ACTIONS(5762), + [sym_raw_string] = ACTIONS(4809), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4809), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4809), + [anon_sym_BQUOTE] = ACTIONS(4809), + [anon_sym_LT_LPAREN] = ACTIONS(4809), + [anon_sym_GT_LPAREN] = ACTIONS(4809), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4942), + [sym_word] = ACTIONS(4811), }, - [2645] = { - [sym_file_descriptor] = ACTIONS(4220), - [sym__concat] = ACTIONS(4220), - [sym_variable_name] = ACTIONS(4220), - [anon_sym_PIPE] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4220), - [anon_sym_PIPE_AMP] = ACTIONS(4220), - [anon_sym_AMP_AMP] = ACTIONS(4220), - [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_LT] = ACTIONS(4944), - [anon_sym_GT] = ACTIONS(4944), - [anon_sym_GT_GT] = ACTIONS(4220), - [anon_sym_AMP_GT] = ACTIONS(4944), - [anon_sym_AMP_GT_GT] = ACTIONS(4220), - [anon_sym_LT_AMP] = ACTIONS(4220), - [anon_sym_GT_AMP] = ACTIONS(4220), - [sym__special_characters] = ACTIONS(4944), - [anon_sym_DQUOTE] = ACTIONS(4220), - [anon_sym_DOLLAR] = ACTIONS(4944), - [sym_raw_string] = ACTIONS(4220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4220), - [anon_sym_BQUOTE] = ACTIONS(4220), - [anon_sym_LT_LPAREN] = ACTIONS(4220), - [anon_sym_GT_LPAREN] = ACTIONS(4220), + [2181] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2815), + [anon_sym_RBRACE] = ACTIONS(5786), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2182] = { + [sym__concat] = ACTIONS(4815), + [anon_sym_EQ_TILDE] = ACTIONS(5766), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4815), + [sym__special_characters] = ACTIONS(4817), + [anon_sym_DQUOTE] = ACTIONS(4815), + [anon_sym_DOLLAR] = ACTIONS(5766), + [sym_raw_string] = ACTIONS(4815), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4815), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4815), + [anon_sym_BQUOTE] = ACTIONS(4815), + [anon_sym_LT_LPAREN] = ACTIONS(4815), + [anon_sym_GT_LPAREN] = ACTIONS(4815), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4944), + [sym_word] = ACTIONS(4817), }, - [2646] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5799), + [2183] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2817), + [anon_sym_RBRACE] = ACTIONS(5788), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2184] = { + [sym__concat] = ACTIONS(4821), + [anon_sym_EQ_TILDE] = ACTIONS(5770), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4821), + [sym__special_characters] = ACTIONS(4823), + [anon_sym_DQUOTE] = ACTIONS(4821), + [anon_sym_DOLLAR] = ACTIONS(5770), + [sym_raw_string] = ACTIONS(4821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4821), + [anon_sym_BQUOTE] = ACTIONS(4821), + [anon_sym_LT_LPAREN] = ACTIONS(4821), + [anon_sym_GT_LPAREN] = ACTIONS(4821), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4823), + }, + [2185] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5790), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2186] = { + [sym__concat] = ACTIONS(4827), + [anon_sym_EQ_TILDE] = ACTIONS(5774), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4827), + [sym__special_characters] = ACTIONS(4829), + [anon_sym_DQUOTE] = ACTIONS(4827), + [anon_sym_DOLLAR] = ACTIONS(5774), + [sym_raw_string] = ACTIONS(4827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4827), + [anon_sym_BQUOTE] = ACTIONS(4827), + [anon_sym_LT_LPAREN] = ACTIONS(4827), + [anon_sym_GT_LPAREN] = ACTIONS(4827), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4829), + }, + [2187] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5792), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2188] = { + [sym_variable_name] = ACTIONS(4111), + [anon_sym_PIPE] = ACTIONS(4113), + [anon_sym_RPAREN] = ACTIONS(4113), + [anon_sym_SEMI_SEMI] = ACTIONS(4113), + [anon_sym_PIPE_AMP] = ACTIONS(4113), + [anon_sym_AMP_AMP] = ACTIONS(4113), + [anon_sym_PIPE_PIPE] = ACTIONS(4113), + [sym__special_characters] = ACTIONS(4113), + [anon_sym_DQUOTE] = ACTIONS(4113), + [anon_sym_DOLLAR] = ACTIONS(4113), + [sym_raw_string] = ACTIONS(4113), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4113), + [anon_sym_BQUOTE] = ACTIONS(4113), + [anon_sym_LT_LPAREN] = ACTIONS(4113), + [anon_sym_GT_LPAREN] = ACTIONS(4113), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4113), + [sym_word] = ACTIONS(4113), + [anon_sym_SEMI] = ACTIONS(4113), + [anon_sym_LF] = ACTIONS(4113), + [anon_sym_AMP] = ACTIONS(4113), + }, + [2189] = { + [sym__concat] = ACTIONS(4728), + [sym_variable_name] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4730), + [anon_sym_SEMI_SEMI] = ACTIONS(4730), + [anon_sym_PIPE_AMP] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [sym__special_characters] = ACTIONS(4730), + [anon_sym_DQUOTE] = ACTIONS(4730), + [anon_sym_DOLLAR] = ACTIONS(4730), + [sym_raw_string] = ACTIONS(4730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), + [anon_sym_BQUOTE] = ACTIONS(4730), + [anon_sym_LT_LPAREN] = ACTIONS(4730), + [anon_sym_GT_LPAREN] = ACTIONS(4730), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4730), + [sym_word] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_LF] = ACTIONS(4730), + [anon_sym_AMP] = ACTIONS(4730), + }, + [2190] = { + [sym__concat] = ACTIONS(4734), + [sym_variable_name] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(4736), + [anon_sym_SEMI_SEMI] = ACTIONS(4736), + [anon_sym_PIPE_AMP] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [sym__special_characters] = ACTIONS(4736), + [anon_sym_DQUOTE] = ACTIONS(4736), + [anon_sym_DOLLAR] = ACTIONS(4736), + [sym_raw_string] = ACTIONS(4736), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), + [anon_sym_BQUOTE] = ACTIONS(4736), + [anon_sym_LT_LPAREN] = ACTIONS(4736), + [anon_sym_GT_LPAREN] = ACTIONS(4736), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4736), + [sym_word] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_LF] = ACTIONS(4736), + [anon_sym_AMP] = ACTIONS(4736), + }, + [2191] = { + [sym__concat] = ACTIONS(4797), + [sym_variable_name] = ACTIONS(4797), + [anon_sym_PIPE] = ACTIONS(4799), + [anon_sym_SEMI_SEMI] = ACTIONS(4799), + [anon_sym_PIPE_AMP] = ACTIONS(4799), + [anon_sym_AMP_AMP] = ACTIONS(4799), + [anon_sym_PIPE_PIPE] = ACTIONS(4799), + [sym__special_characters] = ACTIONS(4799), + [anon_sym_DQUOTE] = ACTIONS(4799), + [anon_sym_DOLLAR] = ACTIONS(4799), + [sym_raw_string] = ACTIONS(4799), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4799), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4799), + [anon_sym_BQUOTE] = ACTIONS(4799), + [anon_sym_LT_LPAREN] = ACTIONS(4799), + [anon_sym_GT_LPAREN] = ACTIONS(4799), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4799), + [sym_word] = ACTIONS(4799), + [anon_sym_SEMI] = ACTIONS(4799), + [anon_sym_LF] = ACTIONS(4799), + [anon_sym_AMP] = ACTIONS(4799), + }, + [2192] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5794), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2193] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(5796), [sym_comment] = ACTIONS(56), }, - [2647] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5801), + [2194] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(5798), [sym_comment] = ACTIONS(56), }, - [2648] = { - [anon_sym_RBRACE] = ACTIONS(5801), + [2195] = { + [anon_sym_RBRACE] = ACTIONS(5798), [sym_comment] = ACTIONS(56), }, - [2649] = { - [sym_file_descriptor] = ACTIONS(4269), - [sym__concat] = ACTIONS(4269), - [sym_variable_name] = ACTIONS(4269), - [anon_sym_PIPE] = ACTIONS(4950), - [anon_sym_RPAREN] = ACTIONS(4269), - [anon_sym_PIPE_AMP] = ACTIONS(4269), - [anon_sym_AMP_AMP] = ACTIONS(4269), - [anon_sym_PIPE_PIPE] = ACTIONS(4269), - [anon_sym_LT] = ACTIONS(4950), - [anon_sym_GT] = ACTIONS(4950), - [anon_sym_GT_GT] = ACTIONS(4269), - [anon_sym_AMP_GT] = ACTIONS(4950), - [anon_sym_AMP_GT_GT] = ACTIONS(4269), - [anon_sym_LT_AMP] = ACTIONS(4269), - [anon_sym_GT_AMP] = ACTIONS(4269), - [sym__special_characters] = ACTIONS(4950), - [anon_sym_DQUOTE] = ACTIONS(4269), - [anon_sym_DOLLAR] = ACTIONS(4950), - [sym_raw_string] = ACTIONS(4269), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4269), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4269), - [anon_sym_BQUOTE] = ACTIONS(4269), - [anon_sym_LT_LPAREN] = ACTIONS(4269), - [anon_sym_GT_LPAREN] = ACTIONS(4269), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4950), + [2196] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2824), + [anon_sym_RBRACE] = ACTIONS(5800), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2650] = { - [sym_file_descriptor] = ACTIONS(4273), - [sym__concat] = ACTIONS(4273), - [sym_variable_name] = ACTIONS(4273), - [anon_sym_PIPE] = ACTIONS(4952), - [anon_sym_RPAREN] = ACTIONS(4273), - [anon_sym_PIPE_AMP] = ACTIONS(4273), - [anon_sym_AMP_AMP] = ACTIONS(4273), - [anon_sym_PIPE_PIPE] = ACTIONS(4273), - [anon_sym_LT] = ACTIONS(4952), - [anon_sym_GT] = ACTIONS(4952), - [anon_sym_GT_GT] = ACTIONS(4273), - [anon_sym_AMP_GT] = ACTIONS(4952), - [anon_sym_AMP_GT_GT] = ACTIONS(4273), - [anon_sym_LT_AMP] = ACTIONS(4273), - [anon_sym_GT_AMP] = ACTIONS(4273), - [sym__special_characters] = ACTIONS(4952), - [anon_sym_DQUOTE] = ACTIONS(4273), - [anon_sym_DOLLAR] = ACTIONS(4952), - [sym_raw_string] = ACTIONS(4273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4273), - [anon_sym_BQUOTE] = ACTIONS(4273), - [anon_sym_LT_LPAREN] = ACTIONS(4273), - [anon_sym_GT_LPAREN] = ACTIONS(4273), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4952), + [2197] = { + [sym__concat] = ACTIONS(4809), + [sym_variable_name] = ACTIONS(4809), + [anon_sym_PIPE] = ACTIONS(4811), + [anon_sym_SEMI_SEMI] = ACTIONS(4811), + [anon_sym_PIPE_AMP] = ACTIONS(4811), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [sym__special_characters] = ACTIONS(4811), + [anon_sym_DQUOTE] = ACTIONS(4811), + [anon_sym_DOLLAR] = ACTIONS(4811), + [sym_raw_string] = ACTIONS(4811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4811), + [anon_sym_BQUOTE] = ACTIONS(4811), + [anon_sym_LT_LPAREN] = ACTIONS(4811), + [anon_sym_GT_LPAREN] = ACTIONS(4811), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4811), + [sym_word] = ACTIONS(4811), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym_LF] = ACTIONS(4811), + [anon_sym_AMP] = ACTIONS(4811), }, - [2651] = { - [anon_sym_PIPE] = ACTIONS(4309), - [anon_sym_RPAREN] = ACTIONS(2472), - [anon_sym_PIPE_AMP] = ACTIONS(2472), - [anon_sym_AMP_AMP] = ACTIONS(2472), - [anon_sym_PIPE_PIPE] = ACTIONS(2472), - [anon_sym_BQUOTE] = ACTIONS(2472), + [2198] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2826), + [anon_sym_RBRACE] = ACTIONS(5802), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2199] = { + [sym__concat] = ACTIONS(4815), + [sym_variable_name] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(4817), + [anon_sym_SEMI_SEMI] = ACTIONS(4817), + [anon_sym_PIPE_AMP] = ACTIONS(4817), + [anon_sym_AMP_AMP] = ACTIONS(4817), + [anon_sym_PIPE_PIPE] = ACTIONS(4817), + [sym__special_characters] = ACTIONS(4817), + [anon_sym_DQUOTE] = ACTIONS(4817), + [anon_sym_DOLLAR] = ACTIONS(4817), + [sym_raw_string] = ACTIONS(4817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4817), + [anon_sym_BQUOTE] = ACTIONS(4817), + [anon_sym_LT_LPAREN] = ACTIONS(4817), + [anon_sym_GT_LPAREN] = ACTIONS(4817), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4817), + [sym_word] = ACTIONS(4817), + [anon_sym_SEMI] = ACTIONS(4817), + [anon_sym_LF] = ACTIONS(4817), + [anon_sym_AMP] = ACTIONS(4817), + }, + [2200] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2828), + [anon_sym_RBRACE] = ACTIONS(5804), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2201] = { + [sym__concat] = ACTIONS(4821), + [sym_variable_name] = ACTIONS(4821), + [anon_sym_PIPE] = ACTIONS(4823), + [anon_sym_SEMI_SEMI] = ACTIONS(4823), + [anon_sym_PIPE_AMP] = ACTIONS(4823), + [anon_sym_AMP_AMP] = ACTIONS(4823), + [anon_sym_PIPE_PIPE] = ACTIONS(4823), + [sym__special_characters] = ACTIONS(4823), + [anon_sym_DQUOTE] = ACTIONS(4823), + [anon_sym_DOLLAR] = ACTIONS(4823), + [sym_raw_string] = ACTIONS(4823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4823), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4823), + [anon_sym_BQUOTE] = ACTIONS(4823), + [anon_sym_LT_LPAREN] = ACTIONS(4823), + [anon_sym_GT_LPAREN] = ACTIONS(4823), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4823), + [sym_word] = ACTIONS(4823), + [anon_sym_SEMI] = ACTIONS(4823), + [anon_sym_LF] = ACTIONS(4823), + [anon_sym_AMP] = ACTIONS(4823), + }, + [2202] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5806), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2203] = { + [sym__concat] = ACTIONS(4827), + [sym_variable_name] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_SEMI_SEMI] = ACTIONS(4829), + [anon_sym_PIPE_AMP] = ACTIONS(4829), + [anon_sym_AMP_AMP] = ACTIONS(4829), + [anon_sym_PIPE_PIPE] = ACTIONS(4829), + [sym__special_characters] = ACTIONS(4829), + [anon_sym_DQUOTE] = ACTIONS(4829), + [anon_sym_DOLLAR] = ACTIONS(4829), + [sym_raw_string] = ACTIONS(4829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4829), + [anon_sym_BQUOTE] = ACTIONS(4829), + [anon_sym_LT_LPAREN] = ACTIONS(4829), + [anon_sym_GT_LPAREN] = ACTIONS(4829), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4829), + [sym_word] = ACTIONS(4829), + [anon_sym_SEMI] = ACTIONS(4829), + [anon_sym_LF] = ACTIONS(4829), + [anon_sym_AMP] = ACTIONS(4829), + }, + [2204] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5808), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2205] = { + [sym__concat] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4730), + [anon_sym_SEMI_SEMI] = ACTIONS(4730), + [anon_sym_PIPE_AMP] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [sym__special_characters] = ACTIONS(4730), + [anon_sym_DQUOTE] = ACTIONS(4730), + [anon_sym_DOLLAR] = ACTIONS(4730), + [sym_raw_string] = ACTIONS(4730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), + [anon_sym_BQUOTE] = ACTIONS(4730), + [anon_sym_LT_LPAREN] = ACTIONS(4730), + [anon_sym_GT_LPAREN] = ACTIONS(4730), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4730), + [sym_word] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_LF] = ACTIONS(4730), + [anon_sym_AMP] = ACTIONS(4730), + }, + [2206] = { + [sym__concat] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(4736), + [anon_sym_SEMI_SEMI] = ACTIONS(4736), + [anon_sym_PIPE_AMP] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [sym__special_characters] = ACTIONS(4736), + [anon_sym_DQUOTE] = ACTIONS(4736), + [anon_sym_DOLLAR] = ACTIONS(4736), + [sym_raw_string] = ACTIONS(4736), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), + [anon_sym_BQUOTE] = ACTIONS(4736), + [anon_sym_LT_LPAREN] = ACTIONS(4736), + [anon_sym_GT_LPAREN] = ACTIONS(4736), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4736), + [sym_word] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_LF] = ACTIONS(4736), + [anon_sym_AMP] = ACTIONS(4736), + }, + [2207] = { + [sym__concat] = ACTIONS(4797), + [anon_sym_PIPE] = ACTIONS(4799), + [anon_sym_SEMI_SEMI] = ACTIONS(4799), + [anon_sym_PIPE_AMP] = ACTIONS(4799), + [anon_sym_AMP_AMP] = ACTIONS(4799), + [anon_sym_PIPE_PIPE] = ACTIONS(4799), + [sym__special_characters] = ACTIONS(4799), + [anon_sym_DQUOTE] = ACTIONS(4799), + [anon_sym_DOLLAR] = ACTIONS(4799), + [sym_raw_string] = ACTIONS(4799), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4799), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4799), + [anon_sym_BQUOTE] = ACTIONS(4799), + [anon_sym_LT_LPAREN] = ACTIONS(4799), + [anon_sym_GT_LPAREN] = ACTIONS(4799), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4799), + [sym_word] = ACTIONS(4799), + [anon_sym_SEMI] = ACTIONS(4799), + [anon_sym_LF] = ACTIONS(4799), + [anon_sym_AMP] = ACTIONS(4799), + }, + [2208] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5810), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2209] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(5812), [sym_comment] = ACTIONS(56), }, - [2652] = { - [sym__terminated_statement] = STATE(673), - [sym_for_statement] = STATE(674), - [sym_while_statement] = STATE(674), - [sym_if_statement] = STATE(674), - [sym_case_statement] = STATE(674), - [sym_function_definition] = STATE(674), - [sym_subshell] = STATE(674), - [sym_pipeline] = STATE(674), - [sym_list] = STATE(674), - [sym_bracket_command] = STATE(674), - [sym_command] = STATE(674), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(675), - [sym_declaration_command] = STATE(674), - [sym_unset_command] = STATE(674), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1241), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(5803), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [2653] = { - [anon_sym_PIPE] = ACTIONS(5805), - [anon_sym_RPAREN] = ACTIONS(5807), - [anon_sym_PIPE_AMP] = ACTIONS(5807), - [anon_sym_AMP_AMP] = ACTIONS(5807), - [anon_sym_PIPE_PIPE] = ACTIONS(5807), - [anon_sym_BQUOTE] = ACTIONS(5807), + [2210] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(5814), [sym_comment] = ACTIONS(56), }, - [2654] = { - [anon_sym_PIPE] = ACTIONS(5809), - [anon_sym_RPAREN] = ACTIONS(5811), - [anon_sym_PIPE_AMP] = ACTIONS(5811), - [anon_sym_AMP_AMP] = ACTIONS(5811), - [anon_sym_PIPE_PIPE] = ACTIONS(5811), - [anon_sym_BQUOTE] = ACTIONS(5811), + [2211] = { + [anon_sym_RBRACE] = ACTIONS(5814), [sym_comment] = ACTIONS(56), }, - [2655] = { - [anon_sym_esac] = ACTIONS(5813), - [sym_comment] = ACTIONS(56), + [2212] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2835), + [anon_sym_RBRACE] = ACTIONS(5816), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2656] = { - [anon_sym_PIPE] = ACTIONS(5815), - [anon_sym_RPAREN] = ACTIONS(5817), - [anon_sym_PIPE_AMP] = ACTIONS(5817), - [anon_sym_AMP_AMP] = ACTIONS(5817), - [anon_sym_PIPE_PIPE] = ACTIONS(5817), - [anon_sym_BQUOTE] = ACTIONS(5817), - [sym_comment] = ACTIONS(56), + [2213] = { + [sym__concat] = ACTIONS(4809), + [anon_sym_PIPE] = ACTIONS(4811), + [anon_sym_SEMI_SEMI] = ACTIONS(4811), + [anon_sym_PIPE_AMP] = ACTIONS(4811), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [sym__special_characters] = ACTIONS(4811), + [anon_sym_DQUOTE] = ACTIONS(4811), + [anon_sym_DOLLAR] = ACTIONS(4811), + [sym_raw_string] = ACTIONS(4811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4811), + [anon_sym_BQUOTE] = ACTIONS(4811), + [anon_sym_LT_LPAREN] = ACTIONS(4811), + [anon_sym_GT_LPAREN] = ACTIONS(4811), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4811), + [sym_word] = ACTIONS(4811), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym_LF] = ACTIONS(4811), + [anon_sym_AMP] = ACTIONS(4811), }, - [2657] = { - [anon_sym_esac] = ACTIONS(5819), - [sym_comment] = ACTIONS(56), + [2214] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2837), + [anon_sym_RBRACE] = ACTIONS(5818), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2658] = { - [sym__concat] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_RPAREN] = ACTIONS(1790), - [anon_sym_PIPE_AMP] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(1790), - [anon_sym_PIPE_PIPE] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), + [2215] = { + [sym__concat] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(4817), + [anon_sym_SEMI_SEMI] = ACTIONS(4817), + [anon_sym_PIPE_AMP] = ACTIONS(4817), + [anon_sym_AMP_AMP] = ACTIONS(4817), + [anon_sym_PIPE_PIPE] = ACTIONS(4817), + [sym__special_characters] = ACTIONS(4817), + [anon_sym_DQUOTE] = ACTIONS(4817), + [anon_sym_DOLLAR] = ACTIONS(4817), + [sym_raw_string] = ACTIONS(4817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4817), + [anon_sym_BQUOTE] = ACTIONS(4817), + [anon_sym_LT_LPAREN] = ACTIONS(4817), + [anon_sym_GT_LPAREN] = ACTIONS(4817), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4817), + [sym_word] = ACTIONS(4817), + [anon_sym_SEMI] = ACTIONS(4817), + [anon_sym_LF] = ACTIONS(4817), + [anon_sym_AMP] = ACTIONS(4817), }, - [2659] = { - [aux_sym_concatenation_repeat1] = STATE(2659), - [sym__concat] = ACTIONS(5821), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_RPAREN] = ACTIONS(1790), - [anon_sym_PIPE_AMP] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(1790), - [anon_sym_PIPE_PIPE] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), + [2216] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2839), + [anon_sym_RBRACE] = ACTIONS(5820), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2660] = { - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(2821), - [anon_sym_RPAREN] = ACTIONS(1821), - [anon_sym_PIPE_AMP] = ACTIONS(1821), - [anon_sym_AMP_AMP] = ACTIONS(1821), - [anon_sym_PIPE_PIPE] = ACTIONS(1821), - [sym_comment] = ACTIONS(56), + [2217] = { + [sym__concat] = ACTIONS(4821), + [anon_sym_PIPE] = ACTIONS(4823), + [anon_sym_SEMI_SEMI] = ACTIONS(4823), + [anon_sym_PIPE_AMP] = ACTIONS(4823), + [anon_sym_AMP_AMP] = ACTIONS(4823), + [anon_sym_PIPE_PIPE] = ACTIONS(4823), + [sym__special_characters] = ACTIONS(4823), + [anon_sym_DQUOTE] = ACTIONS(4823), + [anon_sym_DOLLAR] = ACTIONS(4823), + [sym_raw_string] = ACTIONS(4823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4823), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4823), + [anon_sym_BQUOTE] = ACTIONS(4823), + [anon_sym_LT_LPAREN] = ACTIONS(4823), + [anon_sym_GT_LPAREN] = ACTIONS(4823), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4823), + [sym_word] = ACTIONS(4823), + [anon_sym_SEMI] = ACTIONS(4823), + [anon_sym_LF] = ACTIONS(4823), + [anon_sym_AMP] = ACTIONS(4823), }, - [2661] = { - [sym_concatenation] = STATE(2780), - [sym_string] = STATE(2779), - [sym_simple_expansion] = STATE(2779), - [sym_string_expansion] = STATE(2779), - [sym_expansion] = STATE(2779), - [sym_command_substitution] = STATE(2779), - [sym_process_substitution] = STATE(2779), + [2218] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5822), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2219] = { + [sym__concat] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_SEMI_SEMI] = ACTIONS(4829), + [anon_sym_PIPE_AMP] = ACTIONS(4829), + [anon_sym_AMP_AMP] = ACTIONS(4829), + [anon_sym_PIPE_PIPE] = ACTIONS(4829), + [sym__special_characters] = ACTIONS(4829), + [anon_sym_DQUOTE] = ACTIONS(4829), + [anon_sym_DOLLAR] = ACTIONS(4829), + [sym_raw_string] = ACTIONS(4829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4829), + [anon_sym_BQUOTE] = ACTIONS(4829), + [anon_sym_LT_LPAREN] = ACTIONS(4829), + [anon_sym_GT_LPAREN] = ACTIONS(4829), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4829), + [sym_word] = ACTIONS(4829), + [anon_sym_SEMI] = ACTIONS(4829), + [anon_sym_LF] = ACTIONS(4829), + [anon_sym_AMP] = ACTIONS(4829), + }, + [2220] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), [anon_sym_RBRACE] = ACTIONS(5824), - [sym__special_characters] = ACTIONS(5826), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5830), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2662] = { - [sym__concat] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_PIPE_AMP] = ACTIONS(1866), - [anon_sym_AMP_AMP] = ACTIONS(1866), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), + [2221] = { + [sym_file_descriptor] = ACTIONS(4728), + [sym__concat] = ACTIONS(4728), + [sym_variable_name] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(5748), + [anon_sym_GT] = ACTIONS(5748), + [anon_sym_GT_GT] = ACTIONS(4728), + [anon_sym_AMP_GT] = ACTIONS(5748), + [anon_sym_AMP_GT_GT] = ACTIONS(4728), + [anon_sym_LT_AMP] = ACTIONS(4728), + [anon_sym_GT_AMP] = ACTIONS(4728), + [sym__special_characters] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(5748), + [sym_raw_string] = ACTIONS(4728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LT_LPAREN] = ACTIONS(4728), + [anon_sym_GT_LPAREN] = ACTIONS(4728), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5748), + }, + [2222] = { + [sym_file_descriptor] = ACTIONS(4734), + [sym__concat] = ACTIONS(4734), + [sym_variable_name] = ACTIONS(4734), + [anon_sym_LT] = ACTIONS(5750), + [anon_sym_GT] = ACTIONS(5750), + [anon_sym_GT_GT] = ACTIONS(4734), + [anon_sym_AMP_GT] = ACTIONS(5750), + [anon_sym_AMP_GT_GT] = ACTIONS(4734), + [anon_sym_LT_AMP] = ACTIONS(4734), + [anon_sym_GT_AMP] = ACTIONS(4734), + [sym__special_characters] = ACTIONS(5750), + [anon_sym_DQUOTE] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(5750), + [sym_raw_string] = ACTIONS(4734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4734), + [anon_sym_BQUOTE] = ACTIONS(4734), + [anon_sym_LT_LPAREN] = ACTIONS(4734), + [anon_sym_GT_LPAREN] = ACTIONS(4734), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5750), + }, + [2223] = { + [sym_file_descriptor] = ACTIONS(4797), + [sym__concat] = ACTIONS(4797), + [sym_variable_name] = ACTIONS(4797), + [anon_sym_LT] = ACTIONS(5752), + [anon_sym_GT] = ACTIONS(5752), + [anon_sym_GT_GT] = ACTIONS(4797), + [anon_sym_AMP_GT] = ACTIONS(5752), + [anon_sym_AMP_GT_GT] = ACTIONS(4797), + [anon_sym_LT_AMP] = ACTIONS(4797), + [anon_sym_GT_AMP] = ACTIONS(4797), + [sym__special_characters] = ACTIONS(5752), + [anon_sym_DQUOTE] = ACTIONS(4797), + [anon_sym_DOLLAR] = ACTIONS(5752), + [sym_raw_string] = ACTIONS(4797), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4797), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4797), + [anon_sym_BQUOTE] = ACTIONS(4797), + [anon_sym_LT_LPAREN] = ACTIONS(4797), + [anon_sym_GT_LPAREN] = ACTIONS(4797), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5752), + }, + [2224] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5826), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2225] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(5828), [sym_comment] = ACTIONS(56), }, - [2663] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), + [2226] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(5830), + [sym_comment] = ACTIONS(56), + }, + [2227] = { + [anon_sym_RBRACE] = ACTIONS(5830), + [sym_comment] = ACTIONS(56), + }, + [2228] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2846), [anon_sym_RBRACE] = ACTIONS(5832), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2664] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(5834), + [2229] = { + [sym_file_descriptor] = ACTIONS(4809), + [sym__concat] = ACTIONS(4809), + [sym_variable_name] = ACTIONS(4809), + [anon_sym_LT] = ACTIONS(5762), + [anon_sym_GT] = ACTIONS(5762), + [anon_sym_GT_GT] = ACTIONS(4809), + [anon_sym_AMP_GT] = ACTIONS(5762), + [anon_sym_AMP_GT_GT] = ACTIONS(4809), + [anon_sym_LT_AMP] = ACTIONS(4809), + [anon_sym_GT_AMP] = ACTIONS(4809), + [sym__special_characters] = ACTIONS(5762), + [anon_sym_DQUOTE] = ACTIONS(4809), + [anon_sym_DOLLAR] = ACTIONS(5762), + [sym_raw_string] = ACTIONS(4809), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4809), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4809), + [anon_sym_BQUOTE] = ACTIONS(4809), + [anon_sym_LT_LPAREN] = ACTIONS(4809), + [anon_sym_GT_LPAREN] = ACTIONS(4809), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5762), }, - [2665] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2784), + [2230] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2848), + [anon_sym_RBRACE] = ACTIONS(5834), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2231] = { + [sym_file_descriptor] = ACTIONS(4815), + [sym__concat] = ACTIONS(4815), + [sym_variable_name] = ACTIONS(4815), + [anon_sym_LT] = ACTIONS(5766), + [anon_sym_GT] = ACTIONS(5766), + [anon_sym_GT_GT] = ACTIONS(4815), + [anon_sym_AMP_GT] = ACTIONS(5766), + [anon_sym_AMP_GT_GT] = ACTIONS(4815), + [anon_sym_LT_AMP] = ACTIONS(4815), + [anon_sym_GT_AMP] = ACTIONS(4815), + [sym__special_characters] = ACTIONS(5766), + [anon_sym_DQUOTE] = ACTIONS(4815), + [anon_sym_DOLLAR] = ACTIONS(5766), + [sym_raw_string] = ACTIONS(4815), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4815), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4815), + [anon_sym_BQUOTE] = ACTIONS(4815), + [anon_sym_LT_LPAREN] = ACTIONS(4815), + [anon_sym_GT_LPAREN] = ACTIONS(4815), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5766), + }, + [2232] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2850), [anon_sym_RBRACE] = ACTIONS(5836), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2666] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2786), + [2233] = { + [sym_file_descriptor] = ACTIONS(4821), + [sym__concat] = ACTIONS(4821), + [sym_variable_name] = ACTIONS(4821), + [anon_sym_LT] = ACTIONS(5770), + [anon_sym_GT] = ACTIONS(5770), + [anon_sym_GT_GT] = ACTIONS(4821), + [anon_sym_AMP_GT] = ACTIONS(5770), + [anon_sym_AMP_GT_GT] = ACTIONS(4821), + [anon_sym_LT_AMP] = ACTIONS(4821), + [anon_sym_GT_AMP] = ACTIONS(4821), + [sym__special_characters] = ACTIONS(5770), + [anon_sym_DQUOTE] = ACTIONS(4821), + [anon_sym_DOLLAR] = ACTIONS(5770), + [sym_raw_string] = ACTIONS(4821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4821), + [anon_sym_BQUOTE] = ACTIONS(4821), + [anon_sym_LT_LPAREN] = ACTIONS(4821), + [anon_sym_GT_LPAREN] = ACTIONS(4821), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5770), + }, + [2234] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), [anon_sym_RBRACE] = ACTIONS(5838), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2667] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2787), - [anon_sym_RBRACE] = ACTIONS(5824), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2668] = { - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(2841), - [anon_sym_RPAREN] = ACTIONS(1910), - [anon_sym_PIPE_AMP] = ACTIONS(1910), - [anon_sym_AMP_AMP] = ACTIONS(1910), - [anon_sym_PIPE_PIPE] = ACTIONS(1910), + [2235] = { + [sym_file_descriptor] = ACTIONS(4827), + [sym__concat] = ACTIONS(4827), + [sym_variable_name] = ACTIONS(4827), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(5774), + [anon_sym_GT_GT] = ACTIONS(4827), + [anon_sym_AMP_GT] = ACTIONS(5774), + [anon_sym_AMP_GT_GT] = ACTIONS(4827), + [anon_sym_LT_AMP] = ACTIONS(4827), + [anon_sym_GT_AMP] = ACTIONS(4827), + [sym__special_characters] = ACTIONS(5774), + [anon_sym_DQUOTE] = ACTIONS(4827), + [anon_sym_DOLLAR] = ACTIONS(5774), + [sym_raw_string] = ACTIONS(4827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4827), + [anon_sym_BQUOTE] = ACTIONS(4827), + [anon_sym_LT_LPAREN] = ACTIONS(4827), + [anon_sym_GT_LPAREN] = ACTIONS(4827), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5774), }, - [2669] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), + [2236] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), [anon_sym_RBRACE] = ACTIONS(5840), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2670] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(2845), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [sym_comment] = ACTIONS(56), + [2237] = { + [sym__concat] = ACTIONS(4728), + [anon_sym_DQUOTE] = ACTIONS(4730), + [anon_sym_DOLLAR] = ACTIONS(4730), + [sym__string_content] = ACTIONS(5748), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), + [anon_sym_BQUOTE] = ACTIONS(4730), + [sym_comment] = ACTIONS(182), }, - [2671] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5824), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [2238] = { + [sym__concat] = ACTIONS(4734), + [anon_sym_DQUOTE] = ACTIONS(4736), + [anon_sym_DOLLAR] = ACTIONS(4736), + [sym__string_content] = ACTIONS(5750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), + [anon_sym_BQUOTE] = ACTIONS(4736), + [sym_comment] = ACTIONS(182), }, - [2672] = { - [sym__concat] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2847), - [anon_sym_RPAREN] = ACTIONS(2064), - [anon_sym_PIPE_AMP] = ACTIONS(2064), - [anon_sym_AMP_AMP] = ACTIONS(2064), - [anon_sym_PIPE_PIPE] = ACTIONS(2064), - [sym_comment] = ACTIONS(56), + [2239] = { + [sym__concat] = ACTIONS(4797), + [anon_sym_DQUOTE] = ACTIONS(4799), + [anon_sym_DOLLAR] = ACTIONS(4799), + [sym__string_content] = ACTIONS(5752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4799), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4799), + [anon_sym_BQUOTE] = ACTIONS(4799), + [sym_comment] = ACTIONS(182), }, - [2673] = { - [sym__concat] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_RPAREN] = ACTIONS(2228), - [anon_sym_PIPE_AMP] = ACTIONS(2228), - [anon_sym_AMP_AMP] = ACTIONS(2228), - [anon_sym_PIPE_PIPE] = ACTIONS(2228), - [sym_comment] = ACTIONS(56), - }, - [2674] = { - [sym__concat] = ACTIONS(5021), - [sym_variable_name] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5490), - [anon_sym_RPAREN] = ACTIONS(5021), - [anon_sym_PIPE_AMP] = ACTIONS(5021), - [anon_sym_AMP_AMP] = ACTIONS(5021), - [anon_sym_PIPE_PIPE] = ACTIONS(5021), - [sym__special_characters] = ACTIONS(5490), - [anon_sym_DQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR] = ACTIONS(5490), - [sym_raw_string] = ACTIONS(5021), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5021), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5021), - [anon_sym_LT_LPAREN] = ACTIONS(5021), - [anon_sym_GT_LPAREN] = ACTIONS(5021), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5490), - [sym_word] = ACTIONS(5023), - }, - [2675] = { - [sym__concat] = ACTIONS(5025), - [sym_variable_name] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5492), - [anon_sym_RPAREN] = ACTIONS(5025), - [anon_sym_PIPE_AMP] = ACTIONS(5025), - [anon_sym_AMP_AMP] = ACTIONS(5025), - [anon_sym_PIPE_PIPE] = ACTIONS(5025), - [sym__special_characters] = ACTIONS(5492), - [anon_sym_DQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR] = ACTIONS(5492), - [sym_raw_string] = ACTIONS(5025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5025), - [anon_sym_LT_LPAREN] = ACTIONS(5025), - [anon_sym_GT_LPAREN] = ACTIONS(5025), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5492), - [sym_word] = ACTIONS(5027), - }, - [2676] = { - [sym__concat] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5490), - [anon_sym_RPAREN] = ACTIONS(5021), - [anon_sym_PIPE_AMP] = ACTIONS(5021), - [anon_sym_AMP_AMP] = ACTIONS(5021), - [anon_sym_PIPE_PIPE] = ACTIONS(5021), - [sym__special_characters] = ACTIONS(5490), - [anon_sym_DQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR] = ACTIONS(5490), - [sym_raw_string] = ACTIONS(5021), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5021), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5021), - [anon_sym_LT_LPAREN] = ACTIONS(5021), - [anon_sym_GT_LPAREN] = ACTIONS(5021), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5490), - [sym_word] = ACTIONS(5023), - }, - [2677] = { - [sym__concat] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5492), - [anon_sym_RPAREN] = ACTIONS(5025), - [anon_sym_PIPE_AMP] = ACTIONS(5025), - [anon_sym_AMP_AMP] = ACTIONS(5025), - [anon_sym_PIPE_PIPE] = ACTIONS(5025), - [sym__special_characters] = ACTIONS(5492), - [anon_sym_DQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR] = ACTIONS(5492), - [sym_raw_string] = ACTIONS(5025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5025), - [anon_sym_LT_LPAREN] = ACTIONS(5025), - [anon_sym_GT_LPAREN] = ACTIONS(5025), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5492), - [sym_word] = ACTIONS(5027), - }, - [2678] = { - [sym_file_descriptor] = ACTIONS(4214), - [sym__concat] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4942), - [anon_sym_RPAREN] = ACTIONS(4214), - [anon_sym_PIPE_AMP] = ACTIONS(4214), - [anon_sym_AMP_AMP] = ACTIONS(4214), - [anon_sym_PIPE_PIPE] = ACTIONS(4214), - [anon_sym_LT] = ACTIONS(4942), - [anon_sym_GT] = ACTIONS(4942), - [anon_sym_GT_GT] = ACTIONS(4214), - [anon_sym_AMP_GT] = ACTIONS(4942), - [anon_sym_AMP_GT_GT] = ACTIONS(4214), - [anon_sym_LT_AMP] = ACTIONS(4214), - [anon_sym_GT_AMP] = ACTIONS(4214), - [anon_sym_LT_LT] = ACTIONS(4942), - [anon_sym_LT_LT_DASH] = ACTIONS(4214), - [anon_sym_LT_LT_LT] = ACTIONS(4214), - [sym_comment] = ACTIONS(56), - }, - [2679] = { - [sym_file_descriptor] = ACTIONS(4220), - [sym__concat] = ACTIONS(4220), - [anon_sym_PIPE] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4220), - [anon_sym_PIPE_AMP] = ACTIONS(4220), - [anon_sym_AMP_AMP] = ACTIONS(4220), - [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_LT] = ACTIONS(4944), - [anon_sym_GT] = ACTIONS(4944), - [anon_sym_GT_GT] = ACTIONS(4220), - [anon_sym_AMP_GT] = ACTIONS(4944), - [anon_sym_AMP_GT_GT] = ACTIONS(4220), - [anon_sym_LT_AMP] = ACTIONS(4220), - [anon_sym_GT_AMP] = ACTIONS(4220), - [anon_sym_LT_LT] = ACTIONS(4944), - [anon_sym_LT_LT_DASH] = ACTIONS(4220), - [anon_sym_LT_LT_LT] = ACTIONS(4220), - [sym_comment] = ACTIONS(56), - }, - [2680] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), + [2240] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), [anon_sym_RBRACE] = ACTIONS(5842), - [sym_comment] = ACTIONS(56), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2681] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), + [2241] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), [anon_sym_RBRACE] = ACTIONS(5844), [sym_comment] = ACTIONS(56), }, - [2682] = { - [anon_sym_RBRACE] = ACTIONS(5844), - [sym_comment] = ACTIONS(56), - }, - [2683] = { - [sym_file_descriptor] = ACTIONS(4269), - [sym__concat] = ACTIONS(4269), - [anon_sym_PIPE] = ACTIONS(4950), - [anon_sym_RPAREN] = ACTIONS(4269), - [anon_sym_PIPE_AMP] = ACTIONS(4269), - [anon_sym_AMP_AMP] = ACTIONS(4269), - [anon_sym_PIPE_PIPE] = ACTIONS(4269), - [anon_sym_LT] = ACTIONS(4950), - [anon_sym_GT] = ACTIONS(4950), - [anon_sym_GT_GT] = ACTIONS(4269), - [anon_sym_AMP_GT] = ACTIONS(4950), - [anon_sym_AMP_GT_GT] = ACTIONS(4269), - [anon_sym_LT_AMP] = ACTIONS(4269), - [anon_sym_GT_AMP] = ACTIONS(4269), - [anon_sym_LT_LT] = ACTIONS(4950), - [anon_sym_LT_LT_DASH] = ACTIONS(4269), - [anon_sym_LT_LT_LT] = ACTIONS(4269), - [sym_comment] = ACTIONS(56), - }, - [2684] = { - [sym_file_descriptor] = ACTIONS(4273), - [sym__concat] = ACTIONS(4273), - [anon_sym_PIPE] = ACTIONS(4952), - [anon_sym_RPAREN] = ACTIONS(4273), - [anon_sym_PIPE_AMP] = ACTIONS(4273), - [anon_sym_AMP_AMP] = ACTIONS(4273), - [anon_sym_PIPE_PIPE] = ACTIONS(4273), - [anon_sym_LT] = ACTIONS(4952), - [anon_sym_GT] = ACTIONS(4952), - [anon_sym_GT_GT] = ACTIONS(4273), - [anon_sym_AMP_GT] = ACTIONS(4952), - [anon_sym_AMP_GT_GT] = ACTIONS(4273), - [anon_sym_LT_AMP] = ACTIONS(4273), - [anon_sym_GT_AMP] = ACTIONS(4273), - [anon_sym_LT_LT] = ACTIONS(4952), - [anon_sym_LT_LT_DASH] = ACTIONS(4273), - [anon_sym_LT_LT_LT] = ACTIONS(4273), - [sym_comment] = ACTIONS(56), - }, - [2685] = { - [sym_file_descriptor] = ACTIONS(4214), - [sym__concat] = ACTIONS(4214), - [sym_variable_name] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4942), - [anon_sym_PIPE_AMP] = ACTIONS(4214), - [anon_sym_AMP_AMP] = ACTIONS(4214), - [anon_sym_PIPE_PIPE] = ACTIONS(4214), - [anon_sym_LT] = ACTIONS(4942), - [anon_sym_GT] = ACTIONS(4942), - [anon_sym_GT_GT] = ACTIONS(4214), - [anon_sym_AMP_GT] = ACTIONS(4942), - [anon_sym_AMP_GT_GT] = ACTIONS(4214), - [anon_sym_LT_AMP] = ACTIONS(4214), - [anon_sym_GT_AMP] = ACTIONS(4214), - [sym__special_characters] = ACTIONS(4942), - [anon_sym_DQUOTE] = ACTIONS(4214), - [anon_sym_DOLLAR] = ACTIONS(4942), - [sym_raw_string] = ACTIONS(4214), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4214), - [anon_sym_BQUOTE] = ACTIONS(4214), - [anon_sym_LT_LPAREN] = ACTIONS(4214), - [anon_sym_GT_LPAREN] = ACTIONS(4214), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4942), - }, - [2686] = { - [sym_file_descriptor] = ACTIONS(4220), - [sym__concat] = ACTIONS(4220), - [sym_variable_name] = ACTIONS(4220), - [anon_sym_PIPE] = ACTIONS(4944), - [anon_sym_PIPE_AMP] = ACTIONS(4220), - [anon_sym_AMP_AMP] = ACTIONS(4220), - [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_LT] = ACTIONS(4944), - [anon_sym_GT] = ACTIONS(4944), - [anon_sym_GT_GT] = ACTIONS(4220), - [anon_sym_AMP_GT] = ACTIONS(4944), - [anon_sym_AMP_GT_GT] = ACTIONS(4220), - [anon_sym_LT_AMP] = ACTIONS(4220), - [anon_sym_GT_AMP] = ACTIONS(4220), - [sym__special_characters] = ACTIONS(4944), - [anon_sym_DQUOTE] = ACTIONS(4220), - [anon_sym_DOLLAR] = ACTIONS(4944), - [sym_raw_string] = ACTIONS(4220), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4220), - [anon_sym_BQUOTE] = ACTIONS(4220), - [anon_sym_LT_LPAREN] = ACTIONS(4220), - [anon_sym_GT_LPAREN] = ACTIONS(4220), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4944), - }, - [2687] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), + [2242] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), [anon_sym_RBRACE] = ACTIONS(5846), [sym_comment] = ACTIONS(56), }, - [2688] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), + [2243] = { + [anon_sym_RBRACE] = ACTIONS(5846), + [sym_comment] = ACTIONS(56), + }, + [2244] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2857), [anon_sym_RBRACE] = ACTIONS(5848), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2245] = { + [sym__concat] = ACTIONS(4809), + [anon_sym_DQUOTE] = ACTIONS(4811), + [anon_sym_DOLLAR] = ACTIONS(4811), + [sym__string_content] = ACTIONS(5762), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4811), + [anon_sym_BQUOTE] = ACTIONS(4811), + [sym_comment] = ACTIONS(182), + }, + [2246] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2859), + [anon_sym_RBRACE] = ACTIONS(5850), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2247] = { + [sym__concat] = ACTIONS(4815), + [anon_sym_DQUOTE] = ACTIONS(4817), + [anon_sym_DOLLAR] = ACTIONS(4817), + [sym__string_content] = ACTIONS(5766), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4817), + [anon_sym_BQUOTE] = ACTIONS(4817), + [sym_comment] = ACTIONS(182), + }, + [2248] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2861), + [anon_sym_RBRACE] = ACTIONS(5852), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2249] = { + [sym__concat] = ACTIONS(4821), + [anon_sym_DQUOTE] = ACTIONS(4823), + [anon_sym_DOLLAR] = ACTIONS(4823), + [sym__string_content] = ACTIONS(5770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4823), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4823), + [anon_sym_BQUOTE] = ACTIONS(4823), + [sym_comment] = ACTIONS(182), + }, + [2250] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5854), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2251] = { + [sym__concat] = ACTIONS(4827), + [anon_sym_DQUOTE] = ACTIONS(4829), + [anon_sym_DOLLAR] = ACTIONS(4829), + [sym__string_content] = ACTIONS(5774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4829), + [anon_sym_BQUOTE] = ACTIONS(4829), + [sym_comment] = ACTIONS(182), + }, + [2252] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5856), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2253] = { + [sym__concat] = ACTIONS(5858), + [anon_sym_RBRACE] = ACTIONS(4040), + [anon_sym_EQ] = ACTIONS(5860), + [sym__special_characters] = ACTIONS(5862), + [anon_sym_DQUOTE] = ACTIONS(4040), + [anon_sym_DOLLAR] = ACTIONS(5860), + [sym_raw_string] = ACTIONS(4040), + [anon_sym_POUND] = ACTIONS(4040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4040), + [aux_sym_SLASH] = ACTIONS(4040), + [anon_sym_COLON] = ACTIONS(5860), + [anon_sym_COLON_QMARK] = ACTIONS(5860), + [anon_sym_COLON_DASH] = ACTIONS(5860), + [anon_sym_PERCENT] = ACTIONS(5860), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4040), + [anon_sym_BQUOTE] = ACTIONS(4040), + [anon_sym_LT_LPAREN] = ACTIONS(4040), + [anon_sym_GT_LPAREN] = ACTIONS(4040), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5862), + }, + [2254] = { + [anon_sym_RBRACE] = ACTIONS(4040), + [anon_sym_EQ] = ACTIONS(5860), + [sym__special_characters] = ACTIONS(5862), + [anon_sym_DQUOTE] = ACTIONS(4040), + [anon_sym_DOLLAR] = ACTIONS(5860), + [sym_raw_string] = ACTIONS(4040), + [anon_sym_POUND] = ACTIONS(4040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4040), + [aux_sym_SLASH] = ACTIONS(4040), + [anon_sym_COLON] = ACTIONS(5860), + [anon_sym_COLON_QMARK] = ACTIONS(5860), + [anon_sym_COLON_DASH] = ACTIONS(5860), + [anon_sym_PERCENT] = ACTIONS(5860), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4040), + [anon_sym_BQUOTE] = ACTIONS(4040), + [anon_sym_LT_LPAREN] = ACTIONS(4040), + [anon_sym_GT_LPAREN] = ACTIONS(4040), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5862), + }, + [2255] = { + [sym__concat] = ACTIONS(5864), + [anon_sym_RBRACE] = ACTIONS(4047), + [anon_sym_EQ] = ACTIONS(5866), + [sym__special_characters] = ACTIONS(5868), + [anon_sym_DQUOTE] = ACTIONS(4047), + [anon_sym_DOLLAR] = ACTIONS(5866), + [sym_raw_string] = ACTIONS(4047), + [anon_sym_POUND] = ACTIONS(4047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4047), + [aux_sym_SLASH] = ACTIONS(4047), + [anon_sym_COLON] = ACTIONS(5866), + [anon_sym_COLON_QMARK] = ACTIONS(5866), + [anon_sym_COLON_DASH] = ACTIONS(5866), + [anon_sym_PERCENT] = ACTIONS(5866), + [anon_sym_DASH] = ACTIONS(5866), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4047), + [anon_sym_BQUOTE] = ACTIONS(4047), + [anon_sym_LT_LPAREN] = ACTIONS(4047), + [anon_sym_GT_LPAREN] = ACTIONS(4047), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5868), + }, + [2256] = { + [anon_sym_RBRACE] = ACTIONS(4047), + [anon_sym_EQ] = ACTIONS(5866), + [sym__special_characters] = ACTIONS(5868), + [anon_sym_DQUOTE] = ACTIONS(4047), + [anon_sym_DOLLAR] = ACTIONS(5866), + [sym_raw_string] = ACTIONS(4047), + [anon_sym_POUND] = ACTIONS(4047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4047), + [aux_sym_SLASH] = ACTIONS(4047), + [anon_sym_COLON] = ACTIONS(5866), + [anon_sym_COLON_QMARK] = ACTIONS(5866), + [anon_sym_COLON_DASH] = ACTIONS(5866), + [anon_sym_PERCENT] = ACTIONS(5866), + [anon_sym_DASH] = ACTIONS(5866), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4047), + [anon_sym_BQUOTE] = ACTIONS(4047), + [anon_sym_LT_LPAREN] = ACTIONS(4047), + [anon_sym_GT_LPAREN] = ACTIONS(4047), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5868), + }, + [2257] = { + [sym__concat] = ACTIONS(1858), + [anon_sym_RBRACE] = ACTIONS(1858), [sym_comment] = ACTIONS(56), }, - [2689] = { - [anon_sym_RBRACE] = ACTIONS(5848), + [2258] = { + [aux_sym_concatenation_repeat1] = STATE(2258), + [sym__concat] = ACTIONS(5870), + [anon_sym_RBRACE] = ACTIONS(1858), [sym_comment] = ACTIONS(56), }, - [2690] = { - [sym_file_descriptor] = ACTIONS(4269), - [sym__concat] = ACTIONS(4269), - [sym_variable_name] = ACTIONS(4269), - [anon_sym_PIPE] = ACTIONS(4950), - [anon_sym_PIPE_AMP] = ACTIONS(4269), - [anon_sym_AMP_AMP] = ACTIONS(4269), - [anon_sym_PIPE_PIPE] = ACTIONS(4269), - [anon_sym_LT] = ACTIONS(4950), - [anon_sym_GT] = ACTIONS(4950), - [anon_sym_GT_GT] = ACTIONS(4269), - [anon_sym_AMP_GT] = ACTIONS(4950), - [anon_sym_AMP_GT_GT] = ACTIONS(4269), - [anon_sym_LT_AMP] = ACTIONS(4269), - [anon_sym_GT_AMP] = ACTIONS(4269), - [sym__special_characters] = ACTIONS(4950), - [anon_sym_DQUOTE] = ACTIONS(4269), - [anon_sym_DOLLAR] = ACTIONS(4950), - [sym_raw_string] = ACTIONS(4269), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4269), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4269), - [anon_sym_BQUOTE] = ACTIONS(4269), - [anon_sym_LT_LPAREN] = ACTIONS(4269), - [anon_sym_GT_LPAREN] = ACTIONS(4269), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4950), - }, - [2691] = { - [sym_file_descriptor] = ACTIONS(4273), - [sym__concat] = ACTIONS(4273), - [sym_variable_name] = ACTIONS(4273), - [anon_sym_PIPE] = ACTIONS(4952), - [anon_sym_PIPE_AMP] = ACTIONS(4273), - [anon_sym_AMP_AMP] = ACTIONS(4273), - [anon_sym_PIPE_PIPE] = ACTIONS(4273), - [anon_sym_LT] = ACTIONS(4952), - [anon_sym_GT] = ACTIONS(4952), - [anon_sym_GT_GT] = ACTIONS(4273), - [anon_sym_AMP_GT] = ACTIONS(4952), - [anon_sym_AMP_GT_GT] = ACTIONS(4273), - [anon_sym_LT_AMP] = ACTIONS(4273), - [anon_sym_GT_AMP] = ACTIONS(4273), - [sym__special_characters] = ACTIONS(4952), - [anon_sym_DQUOTE] = ACTIONS(4273), - [anon_sym_DOLLAR] = ACTIONS(4952), - [sym_raw_string] = ACTIONS(4273), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4273), - [anon_sym_BQUOTE] = ACTIONS(4273), - [anon_sym_LT_LPAREN] = ACTIONS(4273), - [anon_sym_GT_LPAREN] = ACTIONS(4273), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4952), - }, - [2692] = { - [sym__concat] = ACTIONS(1790), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_PIPE_AMP] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(1790), - [anon_sym_PIPE_PIPE] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), + [2259] = { + [sym__concat] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1895), [sym_comment] = ACTIONS(56), }, - [2693] = { - [aux_sym_concatenation_repeat1] = STATE(2693), - [sym__concat] = ACTIONS(5850), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_PIPE_AMP] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(1790), - [anon_sym_PIPE_PIPE] = ACTIONS(1790), - [anon_sym_BQUOTE] = ACTIONS(1790), - [sym_comment] = ACTIONS(56), - }, - [2694] = { - [sym__concat] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(2821), - [anon_sym_PIPE_AMP] = ACTIONS(1821), - [anon_sym_AMP_AMP] = ACTIONS(1821), - [anon_sym_PIPE_PIPE] = ACTIONS(1821), - [anon_sym_BQUOTE] = ACTIONS(1821), - [sym_comment] = ACTIONS(56), - }, - [2695] = { - [sym_concatenation] = STATE(2796), - [sym_string] = STATE(2795), - [sym_simple_expansion] = STATE(2795), - [sym_string_expansion] = STATE(2795), - [sym_expansion] = STATE(2795), - [sym_command_substitution] = STATE(2795), - [sym_process_substitution] = STATE(2795), - [anon_sym_RBRACE] = ACTIONS(5853), - [sym__special_characters] = ACTIONS(5855), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5857), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5859), - }, - [2696] = { - [sym__concat] = ACTIONS(1866), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_PIPE_AMP] = ACTIONS(1866), - [anon_sym_AMP_AMP] = ACTIONS(1866), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_BQUOTE] = ACTIONS(1866), - [sym_comment] = ACTIONS(56), - }, - [2697] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5861), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2698] = { - [anon_sym_LBRACK] = ACTIONS(808), - [anon_sym_EQ] = ACTIONS(5863), - [sym_comment] = ACTIONS(56), - }, - [2699] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2800), - [anon_sym_RBRACE] = ACTIONS(5865), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2700] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2802), - [anon_sym_RBRACE] = ACTIONS(5867), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2701] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(2803), - [anon_sym_RBRACE] = ACTIONS(5853), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2702] = { - [sym__concat] = ACTIONS(1910), - [anon_sym_PIPE] = ACTIONS(2841), - [anon_sym_PIPE_AMP] = ACTIONS(1910), - [anon_sym_AMP_AMP] = ACTIONS(1910), - [anon_sym_PIPE_PIPE] = ACTIONS(1910), - [anon_sym_BQUOTE] = ACTIONS(1910), - [sym_comment] = ACTIONS(56), - }, - [2703] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5869), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2704] = { - [sym__concat] = ACTIONS(1916), - [anon_sym_PIPE] = ACTIONS(2845), - [anon_sym_PIPE_AMP] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [anon_sym_BQUOTE] = ACTIONS(1916), - [sym_comment] = ACTIONS(56), - }, - [2705] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5853), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), - }, - [2706] = { - [sym__concat] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2847), - [anon_sym_PIPE_AMP] = ACTIONS(2064), - [anon_sym_AMP_AMP] = ACTIONS(2064), - [anon_sym_PIPE_PIPE] = ACTIONS(2064), - [anon_sym_BQUOTE] = ACTIONS(2064), - [sym_comment] = ACTIONS(56), - }, - [2707] = { - [sym__concat] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2849), - [anon_sym_PIPE_AMP] = ACTIONS(2228), - [anon_sym_AMP_AMP] = ACTIONS(2228), - [anon_sym_PIPE_PIPE] = ACTIONS(2228), - [anon_sym_BQUOTE] = ACTIONS(2228), - [sym_comment] = ACTIONS(56), - }, - [2708] = { - [sym__concat] = ACTIONS(5021), - [sym_variable_name] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5490), - [anon_sym_PIPE_AMP] = ACTIONS(5021), - [anon_sym_AMP_AMP] = ACTIONS(5021), - [anon_sym_PIPE_PIPE] = ACTIONS(5021), - [sym__special_characters] = ACTIONS(5490), - [anon_sym_DQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR] = ACTIONS(5490), - [sym_raw_string] = ACTIONS(5021), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5021), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5021), - [anon_sym_LT_LPAREN] = ACTIONS(5021), - [anon_sym_GT_LPAREN] = ACTIONS(5021), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5490), - [sym_word] = ACTIONS(5023), - }, - [2709] = { - [sym__concat] = ACTIONS(5025), - [sym_variable_name] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5492), - [anon_sym_PIPE_AMP] = ACTIONS(5025), - [anon_sym_AMP_AMP] = ACTIONS(5025), - [anon_sym_PIPE_PIPE] = ACTIONS(5025), - [sym__special_characters] = ACTIONS(5492), - [anon_sym_DQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR] = ACTIONS(5492), - [sym_raw_string] = ACTIONS(5025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5025), - [anon_sym_LT_LPAREN] = ACTIONS(5025), - [anon_sym_GT_LPAREN] = ACTIONS(5025), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5492), - [sym_word] = ACTIONS(5027), - }, - [2710] = { - [sym__concat] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5490), - [anon_sym_PIPE_AMP] = ACTIONS(5021), - [anon_sym_AMP_AMP] = ACTIONS(5021), - [anon_sym_PIPE_PIPE] = ACTIONS(5021), - [sym__special_characters] = ACTIONS(5490), - [anon_sym_DQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR] = ACTIONS(5490), - [sym_raw_string] = ACTIONS(5021), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5021), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5021), - [anon_sym_LT_LPAREN] = ACTIONS(5021), - [anon_sym_GT_LPAREN] = ACTIONS(5021), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5490), - [sym_word] = ACTIONS(5023), - }, - [2711] = { - [sym__concat] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5492), - [anon_sym_PIPE_AMP] = ACTIONS(5025), - [anon_sym_AMP_AMP] = ACTIONS(5025), - [anon_sym_PIPE_PIPE] = ACTIONS(5025), - [sym__special_characters] = ACTIONS(5492), - [anon_sym_DQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR] = ACTIONS(5492), - [sym_raw_string] = ACTIONS(5025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5025), - [anon_sym_LT_LPAREN] = ACTIONS(5025), - [anon_sym_GT_LPAREN] = ACTIONS(5025), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5492), - [sym_word] = ACTIONS(5027), - }, - [2712] = { - [sym_file_descriptor] = ACTIONS(4214), - [sym__concat] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4942), - [anon_sym_PIPE_AMP] = ACTIONS(4214), - [anon_sym_AMP_AMP] = ACTIONS(4214), - [anon_sym_PIPE_PIPE] = ACTIONS(4214), - [anon_sym_LT] = ACTIONS(4942), - [anon_sym_GT] = ACTIONS(4942), - [anon_sym_GT_GT] = ACTIONS(4214), - [anon_sym_AMP_GT] = ACTIONS(4942), - [anon_sym_AMP_GT_GT] = ACTIONS(4214), - [anon_sym_LT_AMP] = ACTIONS(4214), - [anon_sym_GT_AMP] = ACTIONS(4214), - [anon_sym_LT_LT] = ACTIONS(4942), - [anon_sym_LT_LT_DASH] = ACTIONS(4214), - [anon_sym_LT_LT_LT] = ACTIONS(4214), - [anon_sym_BQUOTE] = ACTIONS(4214), - [sym_comment] = ACTIONS(56), - }, - [2713] = { - [sym_file_descriptor] = ACTIONS(4220), - [sym__concat] = ACTIONS(4220), - [anon_sym_PIPE] = ACTIONS(4944), - [anon_sym_PIPE_AMP] = ACTIONS(4220), - [anon_sym_AMP_AMP] = ACTIONS(4220), - [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_LT] = ACTIONS(4944), - [anon_sym_GT] = ACTIONS(4944), - [anon_sym_GT_GT] = ACTIONS(4220), - [anon_sym_AMP_GT] = ACTIONS(4944), - [anon_sym_AMP_GT_GT] = ACTIONS(4220), - [anon_sym_LT_AMP] = ACTIONS(4220), - [anon_sym_GT_AMP] = ACTIONS(4220), - [anon_sym_LT_LT] = ACTIONS(4944), - [anon_sym_LT_LT_DASH] = ACTIONS(4220), - [anon_sym_LT_LT_LT] = ACTIONS(4220), - [anon_sym_BQUOTE] = ACTIONS(4220), - [sym_comment] = ACTIONS(56), - }, - [2714] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5871), - [sym_comment] = ACTIONS(56), - }, - [2715] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), + [2260] = { + [sym_concatenation] = STATE(2869), + [sym_string] = STATE(2868), + [sym_simple_expansion] = STATE(2868), + [sym_string_expansion] = STATE(2868), + [sym_expansion] = STATE(2868), + [sym_command_substitution] = STATE(2868), + [sym_process_substitution] = STATE(2868), [anon_sym_RBRACE] = ACTIONS(5873), + [sym__special_characters] = ACTIONS(5875), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(5877), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5879), + }, + [2261] = { + [sym__concat] = ACTIONS(1940), + [anon_sym_RBRACE] = ACTIONS(1940), [sym_comment] = ACTIONS(56), }, - [2716] = { + [2262] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5881), + }, + [2263] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5883), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2264] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(5885), + [sym_comment] = ACTIONS(56), + }, + [2265] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2875), + [anon_sym_RBRACE] = ACTIONS(5887), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5889), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2266] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2878), + [anon_sym_RBRACE] = ACTIONS(5891), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5893), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2267] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2880), [anon_sym_RBRACE] = ACTIONS(5873), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5895), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2268] = { + [sym__concat] = ACTIONS(1992), + [anon_sym_RBRACE] = ACTIONS(1992), [sym_comment] = ACTIONS(56), }, - [2717] = { - [sym_file_descriptor] = ACTIONS(4269), - [sym__concat] = ACTIONS(4269), - [anon_sym_PIPE] = ACTIONS(4950), - [anon_sym_PIPE_AMP] = ACTIONS(4269), - [anon_sym_AMP_AMP] = ACTIONS(4269), - [anon_sym_PIPE_PIPE] = ACTIONS(4269), - [anon_sym_LT] = ACTIONS(4950), - [anon_sym_GT] = ACTIONS(4950), - [anon_sym_GT_GT] = ACTIONS(4269), - [anon_sym_AMP_GT] = ACTIONS(4950), - [anon_sym_AMP_GT_GT] = ACTIONS(4269), - [anon_sym_LT_AMP] = ACTIONS(4269), - [anon_sym_GT_AMP] = ACTIONS(4269), - [anon_sym_LT_LT] = ACTIONS(4950), - [anon_sym_LT_LT_DASH] = ACTIONS(4269), - [anon_sym_LT_LT_LT] = ACTIONS(4269), - [anon_sym_BQUOTE] = ACTIONS(4269), + [2269] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5897), + }, + [2270] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5899), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2271] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_RBRACE] = ACTIONS(2000), [sym_comment] = ACTIONS(56), }, - [2718] = { - [sym_file_descriptor] = ACTIONS(4273), - [sym__concat] = ACTIONS(4273), - [anon_sym_PIPE] = ACTIONS(4952), - [anon_sym_PIPE_AMP] = ACTIONS(4273), - [anon_sym_AMP_AMP] = ACTIONS(4273), - [anon_sym_PIPE_PIPE] = ACTIONS(4273), - [anon_sym_LT] = ACTIONS(4952), - [anon_sym_GT] = ACTIONS(4952), - [anon_sym_GT_GT] = ACTIONS(4273), - [anon_sym_AMP_GT] = ACTIONS(4952), - [anon_sym_AMP_GT_GT] = ACTIONS(4273), - [anon_sym_LT_AMP] = ACTIONS(4273), - [anon_sym_GT_AMP] = ACTIONS(4273), - [anon_sym_LT_LT] = ACTIONS(4952), - [anon_sym_LT_LT_DASH] = ACTIONS(4273), - [anon_sym_LT_LT_LT] = ACTIONS(4273), - [anon_sym_BQUOTE] = ACTIONS(4273), + [2272] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5901), + }, + [2273] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5873), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2274] = { + [sym__concat] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), [sym_comment] = ACTIONS(56), }, - [2719] = { - [sym_file_descriptor] = ACTIONS(5021), - [sym__concat] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_SEMI_SEMI] = ACTIONS(5023), - [anon_sym_PIPE_AMP] = ACTIONS(5023), - [anon_sym_AMP_AMP] = ACTIONS(5023), - [anon_sym_PIPE_PIPE] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5023), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_GT_GT] = ACTIONS(5023), - [anon_sym_AMP_GT] = ACTIONS(5023), - [anon_sym_AMP_GT_GT] = ACTIONS(5023), - [anon_sym_LT_AMP] = ACTIONS(5023), - [anon_sym_GT_AMP] = ACTIONS(5023), - [anon_sym_LT_LT] = ACTIONS(5023), - [anon_sym_LT_LT_DASH] = ACTIONS(5023), - [anon_sym_LT_LT_LT] = ACTIONS(5023), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_LF] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(5023), - }, - [2720] = { - [sym_file_descriptor] = ACTIONS(5025), - [sym__concat] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_SEMI_SEMI] = ACTIONS(5027), - [anon_sym_PIPE_AMP] = ACTIONS(5027), - [anon_sym_AMP_AMP] = ACTIONS(5027), - [anon_sym_PIPE_PIPE] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5027), - [anon_sym_GT] = ACTIONS(5027), - [anon_sym_GT_GT] = ACTIONS(5027), - [anon_sym_AMP_GT] = ACTIONS(5027), - [anon_sym_AMP_GT_GT] = ACTIONS(5027), - [anon_sym_LT_AMP] = ACTIONS(5027), - [anon_sym_GT_AMP] = ACTIONS(5027), - [anon_sym_LT_LT] = ACTIONS(5027), - [anon_sym_LT_LT_DASH] = ACTIONS(5027), - [anon_sym_LT_LT_LT] = ACTIONS(5027), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_LF] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(5027), - }, - [2721] = { - [sym__heredoc_middle] = ACTIONS(4214), - [sym__heredoc_end] = ACTIONS(4214), - [anon_sym_DOLLAR] = ACTIONS(4942), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4214), + [2275] = { + [sym__concat] = ACTIONS(2358), + [anon_sym_RBRACE] = ACTIONS(2358), [sym_comment] = ACTIONS(56), }, - [2722] = { - [sym__heredoc_middle] = ACTIONS(4220), - [sym__heredoc_end] = ACTIONS(4220), - [anon_sym_DOLLAR] = ACTIONS(4944), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4220), - [sym_comment] = ACTIONS(56), + [2276] = { + [sym__concat] = ACTIONS(3235), + [anon_sym_RBRACE] = ACTIONS(3235), + [anon_sym_EQ] = ACTIONS(4540), + [sym__special_characters] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_DOLLAR] = ACTIONS(4540), + [sym_raw_string] = ACTIONS(3235), + [anon_sym_POUND] = ACTIONS(3235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3235), + [anon_sym_COLON] = ACTIONS(4540), + [anon_sym_COLON_QMARK] = ACTIONS(4540), + [anon_sym_COLON_DASH] = ACTIONS(4540), + [anon_sym_PERCENT] = ACTIONS(4540), + [anon_sym_DASH] = ACTIONS(4540), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3235), + [anon_sym_BQUOTE] = ACTIONS(3235), + [anon_sym_LT_LPAREN] = ACTIONS(3235), + [anon_sym_GT_LPAREN] = ACTIONS(3235), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3237), }, - [2723] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5875), - [sym_comment] = ACTIONS(56), - }, - [2724] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5877), - [sym_comment] = ACTIONS(56), - }, - [2725] = { - [anon_sym_RBRACE] = ACTIONS(5877), - [sym_comment] = ACTIONS(56), - }, - [2726] = { - [sym__heredoc_middle] = ACTIONS(4269), - [sym__heredoc_end] = ACTIONS(4269), - [anon_sym_DOLLAR] = ACTIONS(4950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4269), - [sym_comment] = ACTIONS(56), - }, - [2727] = { - [sym__heredoc_middle] = ACTIONS(4273), - [sym__heredoc_end] = ACTIONS(4273), - [anon_sym_DOLLAR] = ACTIONS(4952), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4273), - [sym_comment] = ACTIONS(56), - }, - [2728] = { - [sym__concat] = ACTIONS(5021), - [anon_sym_RPAREN] = ACTIONS(5021), - [sym__special_characters] = ACTIONS(5490), - [anon_sym_DQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR] = ACTIONS(5490), - [sym_raw_string] = ACTIONS(5021), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5021), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5021), - [anon_sym_LT_LPAREN] = ACTIONS(5021), - [anon_sym_GT_LPAREN] = ACTIONS(5021), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5490), - }, - [2729] = { - [sym__concat] = ACTIONS(5025), - [anon_sym_RPAREN] = ACTIONS(5025), - [sym__special_characters] = ACTIONS(5492), - [anon_sym_DQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR] = ACTIONS(5492), - [sym_raw_string] = ACTIONS(5025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5025), - [anon_sym_LT_LPAREN] = ACTIONS(5025), - [anon_sym_GT_LPAREN] = ACTIONS(5025), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5492), - }, - [2730] = { - [sym__concat] = ACTIONS(5021), - [anon_sym_SEMI_SEMI] = ACTIONS(5023), - [sym__special_characters] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5023), - [sym_raw_string] = ACTIONS(5023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5023), - [anon_sym_BQUOTE] = ACTIONS(5023), - [anon_sym_LT_LPAREN] = ACTIONS(5023), - [anon_sym_GT_LPAREN] = ACTIONS(5023), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(5023), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_LF] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(5023), - }, - [2731] = { - [sym__concat] = ACTIONS(5025), - [anon_sym_SEMI_SEMI] = ACTIONS(5027), - [sym__special_characters] = ACTIONS(5027), - [anon_sym_DQUOTE] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5027), - [sym_raw_string] = ACTIONS(5027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5027), - [anon_sym_BQUOTE] = ACTIONS(5027), - [anon_sym_LT_LPAREN] = ACTIONS(5027), - [anon_sym_GT_LPAREN] = ACTIONS(5027), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(5027), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_LF] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(5027), - }, - [2732] = { - [anon_sym_esac] = ACTIONS(5879), - [sym__special_characters] = ACTIONS(5881), - [anon_sym_DQUOTE] = ACTIONS(5883), - [anon_sym_DOLLAR] = ACTIONS(5881), - [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(56), - [sym_word] = ACTIONS(5885), - }, - [2733] = { - [anon_sym_esac] = ACTIONS(5887), - [sym__special_characters] = ACTIONS(5889), - [anon_sym_DQUOTE] = ACTIONS(5891), - [anon_sym_DOLLAR] = ACTIONS(5889), - [sym_raw_string] = ACTIONS(5891), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5891), - [anon_sym_BQUOTE] = ACTIONS(5891), - [anon_sym_LT_LPAREN] = ACTIONS(5891), - [anon_sym_GT_LPAREN] = ACTIONS(5891), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5893), - }, - [2734] = { - [sym__concat] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4214), - [anon_sym_RPAREN] = ACTIONS(4214), - [sym_comment] = ACTIONS(56), - }, - [2735] = { - [sym__concat] = ACTIONS(4220), - [anon_sym_PIPE] = ACTIONS(4220), - [anon_sym_RPAREN] = ACTIONS(4220), - [sym_comment] = ACTIONS(56), - }, - [2736] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5895), - [sym_comment] = ACTIONS(56), - }, - [2737] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5897), - [sym_comment] = ACTIONS(56), - }, - [2738] = { - [anon_sym_RBRACE] = ACTIONS(5897), - [sym_comment] = ACTIONS(56), - }, - [2739] = { - [sym__concat] = ACTIONS(4269), - [anon_sym_PIPE] = ACTIONS(4269), - [anon_sym_RPAREN] = ACTIONS(4269), - [sym_comment] = ACTIONS(56), - }, - [2740] = { - [sym__concat] = ACTIONS(4273), - [anon_sym_PIPE] = ACTIONS(4273), - [anon_sym_RPAREN] = ACTIONS(4273), - [sym_comment] = ACTIONS(56), - }, - [2741] = { - [sym__special_characters] = ACTIONS(5351), - [anon_sym_DQUOTE] = ACTIONS(5353), - [anon_sym_DOLLAR] = ACTIONS(5351), - [sym_raw_string] = ACTIONS(5353), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5353), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5353), - [anon_sym_BQUOTE] = ACTIONS(5353), - [anon_sym_LT_LPAREN] = ACTIONS(5353), - [anon_sym_GT_LPAREN] = ACTIONS(5353), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5351), - }, - [2742] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_bracket_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(2812), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(5899), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [2743] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_bracket_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(2813), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(5899), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [2744] = { - [sym__special_characters] = ACTIONS(5369), - [anon_sym_DQUOTE] = ACTIONS(5371), - [anon_sym_DOLLAR] = ACTIONS(5369), - [sym_raw_string] = ACTIONS(5371), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5371), - [anon_sym_BQUOTE] = ACTIONS(5371), - [anon_sym_LT_LPAREN] = ACTIONS(5371), - [anon_sym_GT_LPAREN] = ACTIONS(5371), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5369), - }, - [2745] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_bracket_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(2812), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(5901), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [2746] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_bracket_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(2815), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(5901), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [2747] = { - [sym__concat] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_SEMI_SEMI] = ACTIONS(4216), - [anon_sym_PIPE_AMP] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4216), - [anon_sym_PIPE_PIPE] = ACTIONS(4216), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4216), - [anon_sym_LF] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - }, - [2748] = { - [sym__concat] = ACTIONS(4220), - [anon_sym_PIPE] = ACTIONS(4222), - [anon_sym_SEMI_SEMI] = ACTIONS(4222), - [anon_sym_PIPE_AMP] = ACTIONS(4222), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_LF] = ACTIONS(4222), - [anon_sym_AMP] = ACTIONS(4222), - }, - [2749] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), + [2277] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), [anon_sym_RBRACE] = ACTIONS(5903), [sym_comment] = ACTIONS(56), }, - [2750] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), + [2278] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), [anon_sym_RBRACE] = ACTIONS(5905), [sym_comment] = ACTIONS(56), }, + [2279] = { + [anon_sym_RBRACE] = ACTIONS(5905), + [sym_comment] = ACTIONS(56), + }, + [2280] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2887), + [anon_sym_RBRACE] = ACTIONS(5907), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2281] = { + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(3297), + [anon_sym_EQ] = ACTIONS(4548), + [sym__special_characters] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(4548), + [sym_raw_string] = ACTIONS(3297), + [anon_sym_POUND] = ACTIONS(3297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3297), + [anon_sym_COLON] = ACTIONS(4548), + [anon_sym_COLON_QMARK] = ACTIONS(4548), + [anon_sym_COLON_DASH] = ACTIONS(4548), + [anon_sym_PERCENT] = ACTIONS(4548), + [anon_sym_DASH] = ACTIONS(4548), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3297), + [anon_sym_BQUOTE] = ACTIONS(3297), + [anon_sym_LT_LPAREN] = ACTIONS(3297), + [anon_sym_GT_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3299), + }, + [2282] = { + [sym_concatenation] = STATE(2890), + [sym_string] = STATE(2889), + [sym_simple_expansion] = STATE(2889), + [sym_string_expansion] = STATE(2889), + [sym_expansion] = STATE(2889), + [sym_command_substitution] = STATE(2889), + [sym_process_substitution] = STATE(2889), + [anon_sym_RBRACE] = ACTIONS(5905), + [sym__special_characters] = ACTIONS(5909), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(5911), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5913), + }, + [2283] = { + [sym__concat] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_EQ] = ACTIONS(4556), + [sym__special_characters] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(4556), + [sym_raw_string] = ACTIONS(3342), + [anon_sym_POUND] = ACTIONS(3342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3342), + [anon_sym_COLON] = ACTIONS(4556), + [anon_sym_COLON_QMARK] = ACTIONS(4556), + [anon_sym_COLON_DASH] = ACTIONS(4556), + [anon_sym_PERCENT] = ACTIONS(4556), + [anon_sym_DASH] = ACTIONS(4556), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3342), + [anon_sym_BQUOTE] = ACTIONS(3342), + [anon_sym_LT_LPAREN] = ACTIONS(3342), + [anon_sym_GT_LPAREN] = ACTIONS(3342), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3344), + }, + [2284] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5915), + }, + [2285] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5917), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2286] = { + [sym__concat] = ACTIONS(3350), + [anon_sym_RBRACE] = ACTIONS(3350), + [anon_sym_EQ] = ACTIONS(4562), + [sym__special_characters] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_DOLLAR] = ACTIONS(4562), + [sym_raw_string] = ACTIONS(3350), + [anon_sym_POUND] = ACTIONS(3350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3350), + [anon_sym_COLON] = ACTIONS(4562), + [anon_sym_COLON_QMARK] = ACTIONS(4562), + [anon_sym_COLON_DASH] = ACTIONS(4562), + [anon_sym_PERCENT] = ACTIONS(4562), + [anon_sym_DASH] = ACTIONS(4562), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3350), + [anon_sym_BQUOTE] = ACTIONS(3350), + [anon_sym_LT_LPAREN] = ACTIONS(3350), + [anon_sym_GT_LPAREN] = ACTIONS(3350), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3352), + }, + [2287] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5919), + }, + [2288] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5921), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2289] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5923), + }, + [2290] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5905), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2291] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2897), + [anon_sym_RBRACE] = ACTIONS(5925), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2292] = { + [sym__concat] = ACTIONS(3362), + [anon_sym_RBRACE] = ACTIONS(3362), + [anon_sym_EQ] = ACTIONS(4572), + [sym__special_characters] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3362), + [anon_sym_DOLLAR] = ACTIONS(4572), + [sym_raw_string] = ACTIONS(3362), + [anon_sym_POUND] = ACTIONS(3362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3362), + [anon_sym_COLON] = ACTIONS(4572), + [anon_sym_COLON_QMARK] = ACTIONS(4572), + [anon_sym_COLON_DASH] = ACTIONS(4572), + [anon_sym_PERCENT] = ACTIONS(4572), + [anon_sym_DASH] = ACTIONS(4572), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3362), + [anon_sym_BQUOTE] = ACTIONS(3362), + [anon_sym_LT_LPAREN] = ACTIONS(3362), + [anon_sym_GT_LPAREN] = ACTIONS(3362), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3364), + }, + [2293] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2899), + [anon_sym_RBRACE] = ACTIONS(5927), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2294] = { + [sym_file_descriptor] = ACTIONS(5929), + [sym__concat] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(5931), + [anon_sym_SEMI_SEMI] = ACTIONS(5931), + [anon_sym_PIPE_AMP] = ACTIONS(5931), + [anon_sym_AMP_AMP] = ACTIONS(5931), + [anon_sym_PIPE_PIPE] = ACTIONS(5931), + [anon_sym_EQ_TILDE] = ACTIONS(5931), + [anon_sym_LT] = ACTIONS(5931), + [anon_sym_GT] = ACTIONS(5931), + [anon_sym_GT_GT] = ACTIONS(5931), + [anon_sym_AMP_GT] = ACTIONS(5931), + [anon_sym_AMP_GT_GT] = ACTIONS(5931), + [anon_sym_LT_AMP] = ACTIONS(5931), + [anon_sym_GT_AMP] = ACTIONS(5931), + [anon_sym_LT_LT] = ACTIONS(5931), + [anon_sym_LT_LT_DASH] = ACTIONS(5931), + [anon_sym_LT_LT_LT] = ACTIONS(5931), + [sym__special_characters] = ACTIONS(5931), + [anon_sym_DQUOTE] = ACTIONS(5931), + [anon_sym_DOLLAR] = ACTIONS(5931), + [sym_raw_string] = ACTIONS(5931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5931), + [anon_sym_BQUOTE] = ACTIONS(5931), + [anon_sym_LT_LPAREN] = ACTIONS(5931), + [anon_sym_GT_LPAREN] = ACTIONS(5931), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5931), + [anon_sym_SEMI] = ACTIONS(5931), + [anon_sym_LF] = ACTIONS(5931), + [anon_sym_AMP] = ACTIONS(5931), + }, + [2295] = { + [sym_file_descriptor] = ACTIONS(5933), + [sym__concat] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(5935), + [anon_sym_SEMI_SEMI] = ACTIONS(5935), + [anon_sym_PIPE_AMP] = ACTIONS(5935), + [anon_sym_AMP_AMP] = ACTIONS(5935), + [anon_sym_PIPE_PIPE] = ACTIONS(5935), + [anon_sym_EQ_TILDE] = ACTIONS(5935), + [anon_sym_LT] = ACTIONS(5935), + [anon_sym_GT] = ACTIONS(5935), + [anon_sym_GT_GT] = ACTIONS(5935), + [anon_sym_AMP_GT] = ACTIONS(5935), + [anon_sym_AMP_GT_GT] = ACTIONS(5935), + [anon_sym_LT_AMP] = ACTIONS(5935), + [anon_sym_GT_AMP] = ACTIONS(5935), + [anon_sym_LT_LT] = ACTIONS(5935), + [anon_sym_LT_LT_DASH] = ACTIONS(5935), + [anon_sym_LT_LT_LT] = ACTIONS(5935), + [sym__special_characters] = ACTIONS(5935), + [anon_sym_DQUOTE] = ACTIONS(5935), + [anon_sym_DOLLAR] = ACTIONS(5935), + [sym_raw_string] = ACTIONS(5935), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5935), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5935), + [anon_sym_BQUOTE] = ACTIONS(5935), + [anon_sym_LT_LPAREN] = ACTIONS(5935), + [anon_sym_GT_LPAREN] = ACTIONS(5935), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5935), + [anon_sym_SEMI] = ACTIONS(5935), + [anon_sym_LF] = ACTIONS(5935), + [anon_sym_AMP] = ACTIONS(5935), + }, + [2296] = { + [sym_file_descriptor] = ACTIONS(5937), + [sym__concat] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(5939), + [anon_sym_SEMI_SEMI] = ACTIONS(5939), + [anon_sym_PIPE_AMP] = ACTIONS(5939), + [anon_sym_AMP_AMP] = ACTIONS(5939), + [anon_sym_PIPE_PIPE] = ACTIONS(5939), + [anon_sym_EQ_TILDE] = ACTIONS(5939), + [anon_sym_LT] = ACTIONS(5939), + [anon_sym_GT] = ACTIONS(5939), + [anon_sym_GT_GT] = ACTIONS(5939), + [anon_sym_AMP_GT] = ACTIONS(5939), + [anon_sym_AMP_GT_GT] = ACTIONS(5939), + [anon_sym_LT_AMP] = ACTIONS(5939), + [anon_sym_GT_AMP] = ACTIONS(5939), + [anon_sym_LT_LT] = ACTIONS(5939), + [anon_sym_LT_LT_DASH] = ACTIONS(5939), + [anon_sym_LT_LT_LT] = ACTIONS(5939), + [sym__special_characters] = ACTIONS(5939), + [anon_sym_DQUOTE] = ACTIONS(5939), + [anon_sym_DOLLAR] = ACTIONS(5939), + [sym_raw_string] = ACTIONS(5939), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5939), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5939), + [anon_sym_BQUOTE] = ACTIONS(5939), + [anon_sym_LT_LPAREN] = ACTIONS(5939), + [anon_sym_GT_LPAREN] = ACTIONS(5939), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5939), + [anon_sym_SEMI] = ACTIONS(5939), + [anon_sym_LF] = ACTIONS(5939), + [anon_sym_AMP] = ACTIONS(5939), + }, + [2297] = { + [sym_file_descriptor] = ACTIONS(5941), + [sym__concat] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(5943), + [anon_sym_SEMI_SEMI] = ACTIONS(5943), + [anon_sym_PIPE_AMP] = ACTIONS(5943), + [anon_sym_AMP_AMP] = ACTIONS(5943), + [anon_sym_PIPE_PIPE] = ACTIONS(5943), + [anon_sym_EQ_TILDE] = ACTIONS(5943), + [anon_sym_LT] = ACTIONS(5943), + [anon_sym_GT] = ACTIONS(5943), + [anon_sym_GT_GT] = ACTIONS(5943), + [anon_sym_AMP_GT] = ACTIONS(5943), + [anon_sym_AMP_GT_GT] = ACTIONS(5943), + [anon_sym_LT_AMP] = ACTIONS(5943), + [anon_sym_GT_AMP] = ACTIONS(5943), + [anon_sym_LT_LT] = ACTIONS(5943), + [anon_sym_LT_LT_DASH] = ACTIONS(5943), + [anon_sym_LT_LT_LT] = ACTIONS(5943), + [sym__special_characters] = ACTIONS(5943), + [anon_sym_DQUOTE] = ACTIONS(5943), + [anon_sym_DOLLAR] = ACTIONS(5943), + [sym_raw_string] = ACTIONS(5943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5943), + [anon_sym_BQUOTE] = ACTIONS(5943), + [anon_sym_LT_LPAREN] = ACTIONS(5943), + [anon_sym_GT_LPAREN] = ACTIONS(5943), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5943), + [anon_sym_SEMI] = ACTIONS(5943), + [anon_sym_LF] = ACTIONS(5943), + [anon_sym_AMP] = ACTIONS(5943), + }, + [2298] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5945), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2299] = { + [sym_file_descriptor] = ACTIONS(5947), + [sym__concat] = ACTIONS(5947), + [anon_sym_PIPE] = ACTIONS(5949), + [anon_sym_SEMI_SEMI] = ACTIONS(5949), + [anon_sym_PIPE_AMP] = ACTIONS(5949), + [anon_sym_AMP_AMP] = ACTIONS(5949), + [anon_sym_PIPE_PIPE] = ACTIONS(5949), + [anon_sym_EQ_TILDE] = ACTIONS(5949), + [anon_sym_LT] = ACTIONS(5949), + [anon_sym_GT] = ACTIONS(5949), + [anon_sym_GT_GT] = ACTIONS(5949), + [anon_sym_AMP_GT] = ACTIONS(5949), + [anon_sym_AMP_GT_GT] = ACTIONS(5949), + [anon_sym_LT_AMP] = ACTIONS(5949), + [anon_sym_GT_AMP] = ACTIONS(5949), + [anon_sym_LT_LT] = ACTIONS(5949), + [anon_sym_LT_LT_DASH] = ACTIONS(5949), + [anon_sym_LT_LT_LT] = ACTIONS(5949), + [sym__special_characters] = ACTIONS(5949), + [anon_sym_DQUOTE] = ACTIONS(5949), + [anon_sym_DOLLAR] = ACTIONS(5949), + [sym_raw_string] = ACTIONS(5949), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5949), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5949), + [anon_sym_BQUOTE] = ACTIONS(5949), + [anon_sym_LT_LPAREN] = ACTIONS(5949), + [anon_sym_GT_LPAREN] = ACTIONS(5949), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5949), + [anon_sym_SEMI] = ACTIONS(5949), + [anon_sym_LF] = ACTIONS(5949), + [anon_sym_AMP] = ACTIONS(5949), + }, + [2300] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5951), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2301] = { + [sym_file_descriptor] = ACTIONS(5953), + [sym__concat] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(5955), + [anon_sym_SEMI_SEMI] = ACTIONS(5955), + [anon_sym_PIPE_AMP] = ACTIONS(5955), + [anon_sym_AMP_AMP] = ACTIONS(5955), + [anon_sym_PIPE_PIPE] = ACTIONS(5955), + [anon_sym_EQ_TILDE] = ACTIONS(5955), + [anon_sym_LT] = ACTIONS(5955), + [anon_sym_GT] = ACTIONS(5955), + [anon_sym_GT_GT] = ACTIONS(5955), + [anon_sym_AMP_GT] = ACTIONS(5955), + [anon_sym_AMP_GT_GT] = ACTIONS(5955), + [anon_sym_LT_AMP] = ACTIONS(5955), + [anon_sym_GT_AMP] = ACTIONS(5955), + [anon_sym_LT_LT] = ACTIONS(5955), + [anon_sym_LT_LT_DASH] = ACTIONS(5955), + [anon_sym_LT_LT_LT] = ACTIONS(5955), + [sym__special_characters] = ACTIONS(5955), + [anon_sym_DQUOTE] = ACTIONS(5955), + [anon_sym_DOLLAR] = ACTIONS(5955), + [sym_raw_string] = ACTIONS(5955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5955), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5955), + [anon_sym_BQUOTE] = ACTIONS(5955), + [anon_sym_LT_LPAREN] = ACTIONS(5955), + [anon_sym_GT_LPAREN] = ACTIONS(5955), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5955), + [anon_sym_SEMI] = ACTIONS(5955), + [anon_sym_LF] = ACTIONS(5955), + [anon_sym_AMP] = ACTIONS(5955), + }, + [2302] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5957), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2303] = { + [sym_file_descriptor] = ACTIONS(5959), + [sym__concat] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_SEMI_SEMI] = ACTIONS(5961), + [anon_sym_PIPE_AMP] = ACTIONS(5961), + [anon_sym_AMP_AMP] = ACTIONS(5961), + [anon_sym_PIPE_PIPE] = ACTIONS(5961), + [anon_sym_EQ_TILDE] = ACTIONS(5961), + [anon_sym_LT] = ACTIONS(5961), + [anon_sym_GT] = ACTIONS(5961), + [anon_sym_GT_GT] = ACTIONS(5961), + [anon_sym_AMP_GT] = ACTIONS(5961), + [anon_sym_AMP_GT_GT] = ACTIONS(5961), + [anon_sym_LT_AMP] = ACTIONS(5961), + [anon_sym_GT_AMP] = ACTIONS(5961), + [anon_sym_LT_LT] = ACTIONS(5961), + [anon_sym_LT_LT_DASH] = ACTIONS(5961), + [anon_sym_LT_LT_LT] = ACTIONS(5961), + [sym__special_characters] = ACTIONS(5961), + [anon_sym_DQUOTE] = ACTIONS(5961), + [anon_sym_DOLLAR] = ACTIONS(5961), + [sym_raw_string] = ACTIONS(5961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5961), + [anon_sym_BQUOTE] = ACTIONS(5961), + [anon_sym_LT_LPAREN] = ACTIONS(5961), + [anon_sym_GT_LPAREN] = ACTIONS(5961), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5961), + [anon_sym_SEMI] = ACTIONS(5961), + [anon_sym_LF] = ACTIONS(5961), + [anon_sym_AMP] = ACTIONS(5961), + }, + [2304] = { + [sym_file_descriptor] = ACTIONS(5963), + [sym__concat] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(5965), + [anon_sym_SEMI_SEMI] = ACTIONS(5965), + [anon_sym_PIPE_AMP] = ACTIONS(5965), + [anon_sym_AMP_AMP] = ACTIONS(5965), + [anon_sym_PIPE_PIPE] = ACTIONS(5965), + [anon_sym_EQ_TILDE] = ACTIONS(5965), + [anon_sym_LT] = ACTIONS(5965), + [anon_sym_GT] = ACTIONS(5965), + [anon_sym_GT_GT] = ACTIONS(5965), + [anon_sym_AMP_GT] = ACTIONS(5965), + [anon_sym_AMP_GT_GT] = ACTIONS(5965), + [anon_sym_LT_AMP] = ACTIONS(5965), + [anon_sym_GT_AMP] = ACTIONS(5965), + [anon_sym_LT_LT] = ACTIONS(5965), + [anon_sym_LT_LT_DASH] = ACTIONS(5965), + [anon_sym_LT_LT_LT] = ACTIONS(5965), + [sym__special_characters] = ACTIONS(5965), + [anon_sym_DQUOTE] = ACTIONS(5965), + [anon_sym_DOLLAR] = ACTIONS(5965), + [sym_raw_string] = ACTIONS(5965), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5965), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5965), + [anon_sym_BQUOTE] = ACTIONS(5965), + [anon_sym_LT_LPAREN] = ACTIONS(5965), + [anon_sym_GT_LPAREN] = ACTIONS(5965), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5965), + [anon_sym_SEMI] = ACTIONS(5965), + [anon_sym_LF] = ACTIONS(5965), + [anon_sym_AMP] = ACTIONS(5965), + }, + [2305] = { + [sym_file_descriptor] = ACTIONS(4111), + [sym_variable_name] = ACTIONS(4111), + [anon_sym_PIPE] = ACTIONS(5967), + [anon_sym_RPAREN] = ACTIONS(4111), + [anon_sym_PIPE_AMP] = ACTIONS(4111), + [anon_sym_AMP_AMP] = ACTIONS(4111), + [anon_sym_PIPE_PIPE] = ACTIONS(4111), + [anon_sym_LT] = ACTIONS(5967), + [anon_sym_GT] = ACTIONS(5967), + [anon_sym_GT_GT] = ACTIONS(4111), + [anon_sym_AMP_GT] = ACTIONS(5967), + [anon_sym_AMP_GT_GT] = ACTIONS(4111), + [anon_sym_LT_AMP] = ACTIONS(4111), + [anon_sym_GT_AMP] = ACTIONS(4111), + [sym__special_characters] = ACTIONS(5967), + [anon_sym_DQUOTE] = ACTIONS(4111), + [anon_sym_DOLLAR] = ACTIONS(5967), + [sym_raw_string] = ACTIONS(4111), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4111), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4111), + [anon_sym_BQUOTE] = ACTIONS(4111), + [anon_sym_LT_LPAREN] = ACTIONS(4111), + [anon_sym_GT_LPAREN] = ACTIONS(4111), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5967), + }, + [2306] = { + [sym_file_descriptor] = ACTIONS(1858), + [sym__concat] = ACTIONS(1858), + [sym_variable_name] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(1858), + [anon_sym_PIPE_AMP] = ACTIONS(1858), + [anon_sym_AMP_AMP] = ACTIONS(1858), + [anon_sym_PIPE_PIPE] = ACTIONS(1858), + [anon_sym_LT] = ACTIONS(3008), + [anon_sym_GT] = ACTIONS(3008), + [anon_sym_GT_GT] = ACTIONS(1858), + [anon_sym_AMP_GT] = ACTIONS(3008), + [anon_sym_AMP_GT_GT] = ACTIONS(1858), + [anon_sym_LT_AMP] = ACTIONS(1858), + [anon_sym_GT_AMP] = ACTIONS(1858), + [sym__special_characters] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), + [anon_sym_BQUOTE] = ACTIONS(1858), + [anon_sym_LT_LPAREN] = ACTIONS(1858), + [anon_sym_GT_LPAREN] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3008), + }, + [2307] = { + [aux_sym_concatenation_repeat1] = STATE(2307), + [sym_file_descriptor] = ACTIONS(1858), + [sym__concat] = ACTIONS(5969), + [sym_variable_name] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(1858), + [anon_sym_PIPE_AMP] = ACTIONS(1858), + [anon_sym_AMP_AMP] = ACTIONS(1858), + [anon_sym_PIPE_PIPE] = ACTIONS(1858), + [anon_sym_LT] = ACTIONS(3008), + [anon_sym_GT] = ACTIONS(3008), + [anon_sym_GT_GT] = ACTIONS(1858), + [anon_sym_AMP_GT] = ACTIONS(3008), + [anon_sym_AMP_GT_GT] = ACTIONS(1858), + [anon_sym_LT_AMP] = ACTIONS(1858), + [anon_sym_GT_AMP] = ACTIONS(1858), + [sym__special_characters] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), + [anon_sym_BQUOTE] = ACTIONS(1858), + [anon_sym_LT_LPAREN] = ACTIONS(1858), + [anon_sym_GT_LPAREN] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3008), + }, + [2308] = { + [sym_file_descriptor] = ACTIONS(1895), + [sym__concat] = ACTIONS(1895), + [sym_variable_name] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_RPAREN] = ACTIONS(1895), + [anon_sym_PIPE_AMP] = ACTIONS(1895), + [anon_sym_AMP_AMP] = ACTIONS(1895), + [anon_sym_PIPE_PIPE] = ACTIONS(1895), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_GT_GT] = ACTIONS(1895), + [anon_sym_AMP_GT] = ACTIONS(3013), + [anon_sym_AMP_GT_GT] = ACTIONS(1895), + [anon_sym_LT_AMP] = ACTIONS(1895), + [anon_sym_GT_AMP] = ACTIONS(1895), + [sym__special_characters] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(3013), + [sym_raw_string] = ACTIONS(1895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1895), + [anon_sym_BQUOTE] = ACTIONS(1895), + [anon_sym_LT_LPAREN] = ACTIONS(1895), + [anon_sym_GT_LPAREN] = ACTIONS(1895), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3013), + }, + [2309] = { + [sym_concatenation] = STATE(2906), + [sym_string] = STATE(2905), + [sym_simple_expansion] = STATE(2905), + [sym_string_expansion] = STATE(2905), + [sym_expansion] = STATE(2905), + [sym_command_substitution] = STATE(2905), + [sym_process_substitution] = STATE(2905), + [anon_sym_RBRACE] = ACTIONS(5972), + [sym__special_characters] = ACTIONS(5974), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(5976), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5978), + }, + [2310] = { + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(1940), + [sym_variable_name] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(3023), + [anon_sym_RPAREN] = ACTIONS(1940), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_GT] = ACTIONS(3023), + [anon_sym_GT_GT] = ACTIONS(1940), + [anon_sym_AMP_GT] = ACTIONS(3023), + [anon_sym_AMP_GT_GT] = ACTIONS(1940), + [anon_sym_LT_AMP] = ACTIONS(1940), + [anon_sym_GT_AMP] = ACTIONS(1940), + [sym__special_characters] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(3023), + [sym_raw_string] = ACTIONS(1940), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1940), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [anon_sym_LT_LPAREN] = ACTIONS(1940), + [anon_sym_GT_LPAREN] = ACTIONS(1940), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3023), + }, + [2311] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5980), + }, + [2312] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5982), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2313] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(5984), + [sym_comment] = ACTIONS(56), + }, + [2314] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2912), + [anon_sym_RBRACE] = ACTIONS(5986), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5988), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2315] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2915), + [anon_sym_RBRACE] = ACTIONS(5990), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5992), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2316] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2917), + [anon_sym_RBRACE] = ACTIONS(5972), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(5994), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2317] = { + [sym_file_descriptor] = ACTIONS(1992), + [sym__concat] = ACTIONS(1992), + [sym_variable_name] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(3041), + [anon_sym_RPAREN] = ACTIONS(1992), + [anon_sym_PIPE_AMP] = ACTIONS(1992), + [anon_sym_AMP_AMP] = ACTIONS(1992), + [anon_sym_PIPE_PIPE] = ACTIONS(1992), + [anon_sym_LT] = ACTIONS(3041), + [anon_sym_GT] = ACTIONS(3041), + [anon_sym_GT_GT] = ACTIONS(1992), + [anon_sym_AMP_GT] = ACTIONS(3041), + [anon_sym_AMP_GT_GT] = ACTIONS(1992), + [anon_sym_LT_AMP] = ACTIONS(1992), + [anon_sym_GT_AMP] = ACTIONS(1992), + [sym__special_characters] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(1992), + [anon_sym_DOLLAR] = ACTIONS(3041), + [sym_raw_string] = ACTIONS(1992), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1992), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1992), + [anon_sym_BQUOTE] = ACTIONS(1992), + [anon_sym_LT_LPAREN] = ACTIONS(1992), + [anon_sym_GT_LPAREN] = ACTIONS(1992), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3041), + }, + [2318] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5996), + }, + [2319] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5998), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2320] = { + [sym_file_descriptor] = ACTIONS(2000), + [sym__concat] = ACTIONS(2000), + [sym_variable_name] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(3047), + [anon_sym_RPAREN] = ACTIONS(2000), + [anon_sym_PIPE_AMP] = ACTIONS(2000), + [anon_sym_AMP_AMP] = ACTIONS(2000), + [anon_sym_PIPE_PIPE] = ACTIONS(2000), + [anon_sym_LT] = ACTIONS(3047), + [anon_sym_GT] = ACTIONS(3047), + [anon_sym_GT_GT] = ACTIONS(2000), + [anon_sym_AMP_GT] = ACTIONS(3047), + [anon_sym_AMP_GT_GT] = ACTIONS(2000), + [anon_sym_LT_AMP] = ACTIONS(2000), + [anon_sym_GT_AMP] = ACTIONS(2000), + [sym__special_characters] = ACTIONS(3047), + [anon_sym_DQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(3047), + [sym_raw_string] = ACTIONS(2000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2000), + [anon_sym_BQUOTE] = ACTIONS(2000), + [anon_sym_LT_LPAREN] = ACTIONS(2000), + [anon_sym_GT_LPAREN] = ACTIONS(2000), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3047), + }, + [2321] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6000), + }, + [2322] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(5972), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2323] = { + [sym_file_descriptor] = ACTIONS(2156), + [sym__concat] = ACTIONS(2156), + [sym_variable_name] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_RPAREN] = ACTIONS(2156), + [anon_sym_PIPE_AMP] = ACTIONS(2156), + [anon_sym_AMP_AMP] = ACTIONS(2156), + [anon_sym_PIPE_PIPE] = ACTIONS(2156), + [anon_sym_LT] = ACTIONS(3051), + [anon_sym_GT] = ACTIONS(3051), + [anon_sym_GT_GT] = ACTIONS(2156), + [anon_sym_AMP_GT] = ACTIONS(3051), + [anon_sym_AMP_GT_GT] = ACTIONS(2156), + [anon_sym_LT_AMP] = ACTIONS(2156), + [anon_sym_GT_AMP] = ACTIONS(2156), + [sym__special_characters] = ACTIONS(3051), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_DOLLAR] = ACTIONS(3051), + [sym_raw_string] = ACTIONS(2156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2156), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2156), + [anon_sym_LT_LPAREN] = ACTIONS(2156), + [anon_sym_GT_LPAREN] = ACTIONS(2156), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3051), + }, + [2324] = { + [sym_file_descriptor] = ACTIONS(2358), + [sym__concat] = ACTIONS(2358), + [sym_variable_name] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(3053), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_PIPE_AMP] = ACTIONS(2358), + [anon_sym_AMP_AMP] = ACTIONS(2358), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [anon_sym_LT] = ACTIONS(3053), + [anon_sym_GT] = ACTIONS(3053), + [anon_sym_GT_GT] = ACTIONS(2358), + [anon_sym_AMP_GT] = ACTIONS(3053), + [anon_sym_AMP_GT_GT] = ACTIONS(2358), + [anon_sym_LT_AMP] = ACTIONS(2358), + [anon_sym_GT_AMP] = ACTIONS(2358), + [sym__special_characters] = ACTIONS(3053), + [anon_sym_DQUOTE] = ACTIONS(2358), + [anon_sym_DOLLAR] = ACTIONS(3053), + [sym_raw_string] = ACTIONS(2358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2358), + [anon_sym_BQUOTE] = ACTIONS(2358), + [anon_sym_LT_LPAREN] = ACTIONS(2358), + [anon_sym_GT_LPAREN] = ACTIONS(2358), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3053), + }, + [2325] = { + [sym_do_group] = STATE(2922), + [anon_sym_do] = ACTIONS(6002), + [sym_comment] = ACTIONS(56), + }, + [2326] = { + [sym_file_descriptor] = ACTIONS(4237), + [anon_sym_PIPE] = ACTIONS(6004), + [anon_sym_RPAREN] = ACTIONS(4237), + [anon_sym_PIPE_AMP] = ACTIONS(4237), + [anon_sym_AMP_AMP] = ACTIONS(4237), + [anon_sym_PIPE_PIPE] = ACTIONS(4237), + [anon_sym_LT] = ACTIONS(6004), + [anon_sym_GT] = ACTIONS(6004), + [anon_sym_GT_GT] = ACTIONS(4237), + [anon_sym_AMP_GT] = ACTIONS(6004), + [anon_sym_AMP_GT_GT] = ACTIONS(4237), + [anon_sym_LT_AMP] = ACTIONS(4237), + [anon_sym_GT_AMP] = ACTIONS(4237), + [anon_sym_LT_LT] = ACTIONS(6004), + [anon_sym_LT_LT_DASH] = ACTIONS(4237), + [anon_sym_LT_LT_LT] = ACTIONS(4237), + [anon_sym_BQUOTE] = ACTIONS(4237), + [sym_comment] = ACTIONS(56), + }, + [2327] = { + [anon_sym_PIPE] = ACTIONS(6006), + [anon_sym_RPAREN] = ACTIONS(6008), + [anon_sym_PIPE_AMP] = ACTIONS(6008), + [anon_sym_AMP_AMP] = ACTIONS(6008), + [anon_sym_PIPE_PIPE] = ACTIONS(6008), + [anon_sym_BQUOTE] = ACTIONS(6008), + [sym_comment] = ACTIONS(56), + }, + [2328] = { + [anon_sym_fi] = ACTIONS(6010), + [sym_comment] = ACTIONS(56), + }, + [2329] = { + [sym_elif_clause] = STATE(701), + [sym_else_clause] = STATE(2924), + [aux_sym_if_statement_repeat1] = STATE(1322), + [anon_sym_fi] = ACTIONS(6010), + [anon_sym_elif] = ACTIONS(2647), + [anon_sym_else] = ACTIONS(2649), + [sym_comment] = ACTIONS(56), + }, + [2330] = { + [anon_sym_PIPE] = ACTIONS(6012), + [anon_sym_RPAREN] = ACTIONS(6014), + [anon_sym_PIPE_AMP] = ACTIONS(6014), + [anon_sym_AMP_AMP] = ACTIONS(6014), + [anon_sym_PIPE_PIPE] = ACTIONS(6014), + [anon_sym_BQUOTE] = ACTIONS(6014), + [sym_comment] = ACTIONS(56), + }, + [2331] = { + [anon_sym_esac] = ACTIONS(6016), + [sym_comment] = ACTIONS(56), + }, + [2332] = { + [sym_case_item] = STATE(1332), + [sym_last_case_item] = STATE(2926), + [sym_concatenation] = STATE(1334), + [sym_string] = STATE(1327), + [sym_simple_expansion] = STATE(1327), + [sym_string_expansion] = STATE(1327), + [sym_expansion] = STATE(1327), + [sym_command_substitution] = STATE(1327), + [sym_process_substitution] = STATE(1327), + [aux_sym_case_statement_repeat1] = STATE(2011), + [sym__special_characters] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2657), + [sym_raw_string] = ACTIONS(2659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2663), + [anon_sym_BQUOTE] = ACTIONS(2665), + [anon_sym_LT_LPAREN] = ACTIONS(2667), + [anon_sym_GT_LPAREN] = ACTIONS(2667), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4292), + }, + [2333] = { + [sym_case_item] = STATE(1332), + [sym_last_case_item] = STATE(2926), + [sym_concatenation] = STATE(1334), + [sym_string] = STATE(1327), + [sym_simple_expansion] = STATE(1327), + [sym_string_expansion] = STATE(1327), + [sym_expansion] = STATE(1327), + [sym_command_substitution] = STATE(1327), + [sym_process_substitution] = STATE(1327), + [aux_sym_case_statement_repeat1] = STATE(2928), + [anon_sym_esac] = ACTIONS(6018), + [sym__special_characters] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2657), + [sym_raw_string] = ACTIONS(2659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2663), + [anon_sym_BQUOTE] = ACTIONS(2665), + [anon_sym_LT_LPAREN] = ACTIONS(2667), + [anon_sym_GT_LPAREN] = ACTIONS(2667), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2669), + }, + [2334] = { + [anon_sym_PIPE] = ACTIONS(6020), + [anon_sym_RPAREN] = ACTIONS(6022), + [anon_sym_PIPE_AMP] = ACTIONS(6022), + [anon_sym_AMP_AMP] = ACTIONS(6022), + [anon_sym_PIPE_PIPE] = ACTIONS(6022), + [anon_sym_BQUOTE] = ACTIONS(6022), + [sym_comment] = ACTIONS(56), + }, + [2335] = { + [anon_sym_esac] = ACTIONS(6024), + [sym_comment] = ACTIONS(56), + }, + [2336] = { + [sym_case_item] = STATE(1332), + [sym_last_case_item] = STATE(2930), + [sym_concatenation] = STATE(1334), + [sym_string] = STATE(1327), + [sym_simple_expansion] = STATE(1327), + [sym_string_expansion] = STATE(1327), + [sym_expansion] = STATE(1327), + [sym_command_substitution] = STATE(1327), + [sym_process_substitution] = STATE(1327), + [aux_sym_case_statement_repeat1] = STATE(2011), + [sym__special_characters] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2657), + [sym_raw_string] = ACTIONS(2659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2663), + [anon_sym_BQUOTE] = ACTIONS(2665), + [anon_sym_LT_LPAREN] = ACTIONS(2667), + [anon_sym_GT_LPAREN] = ACTIONS(2667), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4292), + }, + [2337] = { + [sym_case_item] = STATE(1332), + [sym_last_case_item] = STATE(2930), + [sym_concatenation] = STATE(1334), + [sym_string] = STATE(1327), + [sym_simple_expansion] = STATE(1327), + [sym_string_expansion] = STATE(1327), + [sym_expansion] = STATE(1327), + [sym_command_substitution] = STATE(1327), + [sym_process_substitution] = STATE(1327), + [aux_sym_case_statement_repeat1] = STATE(2932), + [anon_sym_esac] = ACTIONS(6026), + [sym__special_characters] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2657), + [sym_raw_string] = ACTIONS(2659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2663), + [anon_sym_BQUOTE] = ACTIONS(2665), + [anon_sym_LT_LPAREN] = ACTIONS(2667), + [anon_sym_GT_LPAREN] = ACTIONS(2667), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2669), + }, + [2338] = { + [sym_file_redirect] = STATE(2933), + [sym_file_descriptor] = ACTIONS(3414), + [anon_sym_PIPE] = ACTIONS(6028), + [anon_sym_RPAREN] = ACTIONS(6030), + [anon_sym_PIPE_AMP] = ACTIONS(6030), + [anon_sym_AMP_AMP] = ACTIONS(6030), + [anon_sym_PIPE_PIPE] = ACTIONS(6030), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_GT_GT] = ACTIONS(3422), + [anon_sym_AMP_GT] = ACTIONS(3420), + [anon_sym_AMP_GT_GT] = ACTIONS(3422), + [anon_sym_LT_AMP] = ACTIONS(3422), + [anon_sym_GT_AMP] = ACTIONS(3422), + [sym_comment] = ACTIONS(56), + }, + [2339] = { + [sym_file_descriptor] = ACTIONS(4330), + [anon_sym_PIPE] = ACTIONS(6032), + [anon_sym_RPAREN] = ACTIONS(4330), + [anon_sym_PIPE_AMP] = ACTIONS(4330), + [anon_sym_AMP_AMP] = ACTIONS(4330), + [anon_sym_PIPE_PIPE] = ACTIONS(4330), + [anon_sym_LT] = ACTIONS(6032), + [anon_sym_GT] = ACTIONS(6032), + [anon_sym_GT_GT] = ACTIONS(4330), + [anon_sym_AMP_GT] = ACTIONS(6032), + [anon_sym_AMP_GT_GT] = ACTIONS(4330), + [anon_sym_LT_AMP] = ACTIONS(4330), + [anon_sym_GT_AMP] = ACTIONS(4330), + [anon_sym_BQUOTE] = ACTIONS(4330), + [sym_comment] = ACTIONS(56), + }, + [2340] = { + [sym_concatenation] = STATE(2936), + [sym_string] = STATE(2935), + [sym_simple_expansion] = STATE(2935), + [sym_string_expansion] = STATE(2935), + [sym_expansion] = STATE(2935), + [sym_command_substitution] = STATE(2935), + [sym_process_substitution] = STATE(2935), + [sym__special_characters] = ACTIONS(6034), + [anon_sym_DQUOTE] = ACTIONS(4905), + [anon_sym_DOLLAR] = ACTIONS(4907), + [sym_raw_string] = ACTIONS(6036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4911), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4913), + [anon_sym_BQUOTE] = ACTIONS(4915), + [anon_sym_LT_LPAREN] = ACTIONS(4917), + [anon_sym_GT_LPAREN] = ACTIONS(4917), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6038), + }, + [2341] = { + [aux_sym_concatenation_repeat1] = STATE(2938), + [sym__concat] = ACTIONS(6040), + [anon_sym_PIPE] = ACTIONS(744), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_PIPE_AMP] = ACTIONS(740), + [anon_sym_AMP_AMP] = ACTIONS(740), + [anon_sym_PIPE_PIPE] = ACTIONS(740), + [sym_comment] = ACTIONS(56), + }, + [2342] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(2940), + [anon_sym_DQUOTE] = ACTIONS(6042), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [2343] = { + [sym_string] = STATE(2943), + [anon_sym_DQUOTE] = ACTIONS(4905), + [anon_sym_DOLLAR] = ACTIONS(6044), + [anon_sym_POUND] = ACTIONS(6044), + [anon_sym_DASH] = ACTIONS(6044), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6046), + [anon_sym_STAR] = ACTIONS(6044), + [anon_sym_AT] = ACTIONS(6044), + [anon_sym_QMARK] = ACTIONS(6044), + [anon_sym_0] = ACTIONS(6048), + [anon_sym__] = ACTIONS(6048), + }, + [2344] = { + [aux_sym_concatenation_repeat1] = STATE(2938), + [sym__concat] = ACTIONS(6040), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_RPAREN] = ACTIONS(754), + [anon_sym_PIPE_AMP] = ACTIONS(754), + [anon_sym_AMP_AMP] = ACTIONS(754), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [sym_comment] = ACTIONS(56), + }, + [2345] = { + [sym_subscript] = STATE(2948), + [sym_variable_name] = ACTIONS(6050), + [anon_sym_DOLLAR] = ACTIONS(6052), + [anon_sym_POUND] = ACTIONS(6054), + [anon_sym_DASH] = ACTIONS(6052), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6056), + [anon_sym_STAR] = ACTIONS(6052), + [anon_sym_AT] = ACTIONS(6052), + [anon_sym_QMARK] = ACTIONS(6052), + [anon_sym_0] = ACTIONS(6058), + [anon_sym__] = ACTIONS(6058), + }, + [2346] = { + [sym_for_statement] = STATE(2949), + [sym_while_statement] = STATE(2949), + [sym_if_statement] = STATE(2949), + [sym_case_statement] = STATE(2949), + [sym_function_definition] = STATE(2949), + [sym_subshell] = STATE(2949), + [sym_pipeline] = STATE(2949), + [sym_list] = STATE(2949), + [sym_command] = STATE(2949), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(2949), + [sym_variable_assignment] = STATE(2950), + [sym_declaration_command] = STATE(2949), + [sym_unset_command] = STATE(2949), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [2347] = { + [sym_for_statement] = STATE(2951), + [sym_while_statement] = STATE(2951), + [sym_if_statement] = STATE(2951), + [sym_case_statement] = STATE(2951), + [sym_function_definition] = STATE(2951), + [sym_subshell] = STATE(2951), + [sym_pipeline] = STATE(2951), + [sym_list] = STATE(2951), + [sym_command] = STATE(2951), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(2951), + [sym_variable_assignment] = STATE(2952), + [sym_declaration_command] = STATE(2951), + [sym_unset_command] = STATE(2951), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), + }, + [2348] = { + [sym_for_statement] = STATE(2953), + [sym_while_statement] = STATE(2953), + [sym_if_statement] = STATE(2953), + [sym_case_statement] = STATE(2953), + [sym_function_definition] = STATE(2953), + [sym_subshell] = STATE(2953), + [sym_pipeline] = STATE(2953), + [sym_list] = STATE(2953), + [sym_command] = STATE(2953), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(2953), + [sym_variable_assignment] = STATE(2954), + [sym_declaration_command] = STATE(2953), + [sym_unset_command] = STATE(2953), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [2349] = { + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_RPAREN] = ACTIONS(754), + [anon_sym_PIPE_AMP] = ACTIONS(754), + [anon_sym_AMP_AMP] = ACTIONS(754), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_BQUOTE] = ACTIONS(754), + [sym_comment] = ACTIONS(56), + }, + [2350] = { + [anon_sym_PIPE] = ACTIONS(6060), + [anon_sym_RPAREN] = ACTIONS(6062), + [anon_sym_PIPE_AMP] = ACTIONS(6062), + [anon_sym_AMP_AMP] = ACTIONS(6062), + [anon_sym_PIPE_PIPE] = ACTIONS(6062), + [anon_sym_BQUOTE] = ACTIONS(6062), + [sym_comment] = ACTIONS(56), + }, + [2351] = { + [sym_variable_name] = ACTIONS(2517), + [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_RPAREN] = ACTIONS(2517), + [anon_sym_PIPE_AMP] = ACTIONS(2517), + [anon_sym_AMP_AMP] = ACTIONS(2517), + [anon_sym_PIPE_PIPE] = ACTIONS(2517), + [sym__special_characters] = ACTIONS(4833), + [anon_sym_DQUOTE] = ACTIONS(2517), + [anon_sym_DOLLAR] = ACTIONS(4833), + [sym_raw_string] = ACTIONS(2517), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2517), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2517), + [anon_sym_BQUOTE] = ACTIONS(2517), + [anon_sym_LT_LPAREN] = ACTIONS(2517), + [anon_sym_GT_LPAREN] = ACTIONS(2517), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4833), + [sym_word] = ACTIONS(2519), + }, + [2352] = { + [sym_concatenation] = STATE(660), + [sym_string] = STATE(655), + [sym_simple_expansion] = STATE(655), + [sym_string_expansion] = STATE(655), + [sym_expansion] = STATE(655), + [sym_command_substitution] = STATE(655), + [sym_process_substitution] = STATE(655), + [aux_sym_for_statement_repeat1] = STATE(1269), + [anon_sym_RPAREN] = ACTIONS(6064), + [sym__special_characters] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1263), + [anon_sym_DOLLAR] = ACTIONS(1265), + [sym_raw_string] = ACTIONS(1267), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1269), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1271), + [anon_sym_BQUOTE] = ACTIONS(1273), + [anon_sym_LT_LPAREN] = ACTIONS(1275), + [anon_sym_GT_LPAREN] = ACTIONS(1275), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1277), + }, + [2353] = { + [sym__concat] = ACTIONS(3235), + [sym_variable_name] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(3235), + [anon_sym_PIPE_AMP] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [sym__special_characters] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_DOLLAR] = ACTIONS(4540), + [sym_raw_string] = ACTIONS(3235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3235), + [anon_sym_BQUOTE] = ACTIONS(3235), + [anon_sym_LT_LPAREN] = ACTIONS(3235), + [anon_sym_GT_LPAREN] = ACTIONS(3235), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4540), + [sym_word] = ACTIONS(3237), + }, + [2354] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6066), + [sym_comment] = ACTIONS(56), + }, + [2355] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6068), + [sym_comment] = ACTIONS(56), + }, + [2356] = { + [anon_sym_RBRACE] = ACTIONS(6068), + [sym_comment] = ACTIONS(56), + }, + [2357] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2959), + [anon_sym_RBRACE] = ACTIONS(6070), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2358] = { + [sym__concat] = ACTIONS(3297), + [sym_variable_name] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(3297), + [anon_sym_PIPE_AMP] = ACTIONS(3297), + [anon_sym_AMP_AMP] = ACTIONS(3297), + [anon_sym_PIPE_PIPE] = ACTIONS(3297), + [sym__special_characters] = ACTIONS(4548), + [anon_sym_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(4548), + [sym_raw_string] = ACTIONS(3297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3297), + [anon_sym_BQUOTE] = ACTIONS(3297), + [anon_sym_LT_LPAREN] = ACTIONS(3297), + [anon_sym_GT_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4548), + [sym_word] = ACTIONS(3299), + }, + [2359] = { + [sym_concatenation] = STATE(2962), + [sym_string] = STATE(2961), + [sym_simple_expansion] = STATE(2961), + [sym_string_expansion] = STATE(2961), + [sym_expansion] = STATE(2961), + [sym_command_substitution] = STATE(2961), + [sym_process_substitution] = STATE(2961), + [anon_sym_RBRACE] = ACTIONS(6068), + [sym__special_characters] = ACTIONS(6072), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(6074), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6076), + }, + [2360] = { + [sym__concat] = ACTIONS(3342), + [sym_variable_name] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(3342), + [anon_sym_PIPE_AMP] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [sym__special_characters] = ACTIONS(4556), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(4556), + [sym_raw_string] = ACTIONS(3342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3342), + [anon_sym_BQUOTE] = ACTIONS(3342), + [anon_sym_LT_LPAREN] = ACTIONS(3342), + [anon_sym_GT_LPAREN] = ACTIONS(3342), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4556), + [sym_word] = ACTIONS(3344), + }, + [2361] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6078), + }, + [2362] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6080), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2363] = { + [sym__concat] = ACTIONS(3350), + [sym_variable_name] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(3350), + [anon_sym_PIPE_AMP] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [sym__special_characters] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_DOLLAR] = ACTIONS(4562), + [sym_raw_string] = ACTIONS(3350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3350), + [anon_sym_BQUOTE] = ACTIONS(3350), + [anon_sym_LT_LPAREN] = ACTIONS(3350), + [anon_sym_GT_LPAREN] = ACTIONS(3350), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4562), + [sym_word] = ACTIONS(3352), + }, + [2364] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6082), + }, + [2365] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6084), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2366] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6086), + }, + [2367] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6068), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2368] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2969), + [anon_sym_RBRACE] = ACTIONS(6088), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2369] = { + [sym__concat] = ACTIONS(3362), + [sym_variable_name] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(3362), + [anon_sym_PIPE_AMP] = ACTIONS(3362), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_PIPE_PIPE] = ACTIONS(3362), + [sym__special_characters] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(3362), + [anon_sym_DOLLAR] = ACTIONS(4572), + [sym_raw_string] = ACTIONS(3362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3362), + [anon_sym_BQUOTE] = ACTIONS(3362), + [anon_sym_LT_LPAREN] = ACTIONS(3362), + [anon_sym_GT_LPAREN] = ACTIONS(3362), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4572), + [sym_word] = ACTIONS(3364), + }, + [2370] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2971), + [anon_sym_RBRACE] = ACTIONS(6090), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2371] = { + [sym__concat] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(3235), + [anon_sym_PIPE_AMP] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [sym__special_characters] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_DOLLAR] = ACTIONS(4540), + [sym_raw_string] = ACTIONS(3235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3235), + [anon_sym_BQUOTE] = ACTIONS(3235), + [anon_sym_LT_LPAREN] = ACTIONS(3235), + [anon_sym_GT_LPAREN] = ACTIONS(3235), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4540), + [sym_word] = ACTIONS(3237), + }, + [2372] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6092), + [sym_comment] = ACTIONS(56), + }, + [2373] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6094), + [sym_comment] = ACTIONS(56), + }, + [2374] = { + [anon_sym_RBRACE] = ACTIONS(6094), + [sym_comment] = ACTIONS(56), + }, + [2375] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2975), + [anon_sym_RBRACE] = ACTIONS(6096), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2376] = { + [sym__concat] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(3297), + [anon_sym_PIPE_AMP] = ACTIONS(3297), + [anon_sym_AMP_AMP] = ACTIONS(3297), + [anon_sym_PIPE_PIPE] = ACTIONS(3297), + [sym__special_characters] = ACTIONS(4548), + [anon_sym_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(4548), + [sym_raw_string] = ACTIONS(3297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3297), + [anon_sym_BQUOTE] = ACTIONS(3297), + [anon_sym_LT_LPAREN] = ACTIONS(3297), + [anon_sym_GT_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4548), + [sym_word] = ACTIONS(3299), + }, + [2377] = { + [sym_concatenation] = STATE(2978), + [sym_string] = STATE(2977), + [sym_simple_expansion] = STATE(2977), + [sym_string_expansion] = STATE(2977), + [sym_expansion] = STATE(2977), + [sym_command_substitution] = STATE(2977), + [sym_process_substitution] = STATE(2977), + [anon_sym_RBRACE] = ACTIONS(6094), + [sym__special_characters] = ACTIONS(6098), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(6100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6102), + }, + [2378] = { + [sym__concat] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(3342), + [anon_sym_PIPE_AMP] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [sym__special_characters] = ACTIONS(4556), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(4556), + [sym_raw_string] = ACTIONS(3342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3342), + [anon_sym_BQUOTE] = ACTIONS(3342), + [anon_sym_LT_LPAREN] = ACTIONS(3342), + [anon_sym_GT_LPAREN] = ACTIONS(3342), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4556), + [sym_word] = ACTIONS(3344), + }, + [2379] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6104), + }, + [2380] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6106), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2381] = { + [sym__concat] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(3350), + [anon_sym_PIPE_AMP] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [sym__special_characters] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_DOLLAR] = ACTIONS(4562), + [sym_raw_string] = ACTIONS(3350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3350), + [anon_sym_BQUOTE] = ACTIONS(3350), + [anon_sym_LT_LPAREN] = ACTIONS(3350), + [anon_sym_GT_LPAREN] = ACTIONS(3350), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4562), + [sym_word] = ACTIONS(3352), + }, + [2382] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6108), + }, + [2383] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6110), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2384] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6112), + }, + [2385] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6094), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2386] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2985), + [anon_sym_RBRACE] = ACTIONS(6114), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2387] = { + [sym__concat] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(3362), + [anon_sym_PIPE_AMP] = ACTIONS(3362), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_PIPE_PIPE] = ACTIONS(3362), + [sym__special_characters] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(3362), + [anon_sym_DOLLAR] = ACTIONS(4572), + [sym_raw_string] = ACTIONS(3362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3362), + [anon_sym_BQUOTE] = ACTIONS(3362), + [anon_sym_LT_LPAREN] = ACTIONS(3362), + [anon_sym_GT_LPAREN] = ACTIONS(3362), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4572), + [sym_word] = ACTIONS(3364), + }, + [2388] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2987), + [anon_sym_RBRACE] = ACTIONS(6116), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2389] = { + [sym_file_descriptor] = ACTIONS(4728), + [sym__concat] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(5748), + [anon_sym_RPAREN] = ACTIONS(4728), + [anon_sym_PIPE_AMP] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_EQ_TILDE] = ACTIONS(5748), + [anon_sym_LT] = ACTIONS(5748), + [anon_sym_GT] = ACTIONS(5748), + [anon_sym_GT_GT] = ACTIONS(4728), + [anon_sym_AMP_GT] = ACTIONS(5748), + [anon_sym_AMP_GT_GT] = ACTIONS(4728), + [anon_sym_LT_AMP] = ACTIONS(4728), + [anon_sym_GT_AMP] = ACTIONS(4728), + [anon_sym_LT_LT] = ACTIONS(5748), + [anon_sym_LT_LT_DASH] = ACTIONS(4728), + [anon_sym_LT_LT_LT] = ACTIONS(4728), + [sym__special_characters] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(5748), + [sym_raw_string] = ACTIONS(4728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LT_LPAREN] = ACTIONS(4728), + [anon_sym_GT_LPAREN] = ACTIONS(4728), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4730), + }, + [2390] = { + [sym_file_descriptor] = ACTIONS(4734), + [sym__concat] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(5750), + [anon_sym_RPAREN] = ACTIONS(4734), + [anon_sym_PIPE_AMP] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [anon_sym_EQ_TILDE] = ACTIONS(5750), + [anon_sym_LT] = ACTIONS(5750), + [anon_sym_GT] = ACTIONS(5750), + [anon_sym_GT_GT] = ACTIONS(4734), + [anon_sym_AMP_GT] = ACTIONS(5750), + [anon_sym_AMP_GT_GT] = ACTIONS(4734), + [anon_sym_LT_AMP] = ACTIONS(4734), + [anon_sym_GT_AMP] = ACTIONS(4734), + [anon_sym_LT_LT] = ACTIONS(5750), + [anon_sym_LT_LT_DASH] = ACTIONS(4734), + [anon_sym_LT_LT_LT] = ACTIONS(4734), + [sym__special_characters] = ACTIONS(5750), + [anon_sym_DQUOTE] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(5750), + [sym_raw_string] = ACTIONS(4734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4734), + [anon_sym_BQUOTE] = ACTIONS(4734), + [anon_sym_LT_LPAREN] = ACTIONS(4734), + [anon_sym_GT_LPAREN] = ACTIONS(4734), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4736), + }, + [2391] = { + [sym_file_descriptor] = ACTIONS(4797), + [sym__concat] = ACTIONS(4797), + [anon_sym_PIPE] = ACTIONS(5752), + [anon_sym_RPAREN] = ACTIONS(4797), + [anon_sym_PIPE_AMP] = ACTIONS(4797), + [anon_sym_AMP_AMP] = ACTIONS(4797), + [anon_sym_PIPE_PIPE] = ACTIONS(4797), + [anon_sym_EQ_TILDE] = ACTIONS(5752), + [anon_sym_LT] = ACTIONS(5752), + [anon_sym_GT] = ACTIONS(5752), + [anon_sym_GT_GT] = ACTIONS(4797), + [anon_sym_AMP_GT] = ACTIONS(5752), + [anon_sym_AMP_GT_GT] = ACTIONS(4797), + [anon_sym_LT_AMP] = ACTIONS(4797), + [anon_sym_GT_AMP] = ACTIONS(4797), + [anon_sym_LT_LT] = ACTIONS(5752), + [anon_sym_LT_LT_DASH] = ACTIONS(4797), + [anon_sym_LT_LT_LT] = ACTIONS(4797), + [sym__special_characters] = ACTIONS(5752), + [anon_sym_DQUOTE] = ACTIONS(4797), + [anon_sym_DOLLAR] = ACTIONS(5752), + [sym_raw_string] = ACTIONS(4797), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4797), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4797), + [anon_sym_BQUOTE] = ACTIONS(4797), + [anon_sym_LT_LPAREN] = ACTIONS(4797), + [anon_sym_GT_LPAREN] = ACTIONS(4797), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4799), + }, + [2392] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6118), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2393] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6120), + [sym_comment] = ACTIONS(56), + }, + [2394] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6122), + [sym_comment] = ACTIONS(56), + }, + [2395] = { + [anon_sym_RBRACE] = ACTIONS(6122), + [sym_comment] = ACTIONS(56), + }, + [2396] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2992), + [anon_sym_RBRACE] = ACTIONS(6124), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2397] = { + [sym_file_descriptor] = ACTIONS(4809), + [sym__concat] = ACTIONS(4809), + [anon_sym_PIPE] = ACTIONS(5762), + [anon_sym_RPAREN] = ACTIONS(4809), + [anon_sym_PIPE_AMP] = ACTIONS(4809), + [anon_sym_AMP_AMP] = ACTIONS(4809), + [anon_sym_PIPE_PIPE] = ACTIONS(4809), + [anon_sym_EQ_TILDE] = ACTIONS(5762), + [anon_sym_LT] = ACTIONS(5762), + [anon_sym_GT] = ACTIONS(5762), + [anon_sym_GT_GT] = ACTIONS(4809), + [anon_sym_AMP_GT] = ACTIONS(5762), + [anon_sym_AMP_GT_GT] = ACTIONS(4809), + [anon_sym_LT_AMP] = ACTIONS(4809), + [anon_sym_GT_AMP] = ACTIONS(4809), + [anon_sym_LT_LT] = ACTIONS(5762), + [anon_sym_LT_LT_DASH] = ACTIONS(4809), + [anon_sym_LT_LT_LT] = ACTIONS(4809), + [sym__special_characters] = ACTIONS(5762), + [anon_sym_DQUOTE] = ACTIONS(4809), + [anon_sym_DOLLAR] = ACTIONS(5762), + [sym_raw_string] = ACTIONS(4809), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4809), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4809), + [anon_sym_BQUOTE] = ACTIONS(4809), + [anon_sym_LT_LPAREN] = ACTIONS(4809), + [anon_sym_GT_LPAREN] = ACTIONS(4809), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4811), + }, + [2398] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2994), + [anon_sym_RBRACE] = ACTIONS(6126), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2399] = { + [sym_file_descriptor] = ACTIONS(4815), + [sym__concat] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(5766), + [anon_sym_RPAREN] = ACTIONS(4815), + [anon_sym_PIPE_AMP] = ACTIONS(4815), + [anon_sym_AMP_AMP] = ACTIONS(4815), + [anon_sym_PIPE_PIPE] = ACTIONS(4815), + [anon_sym_EQ_TILDE] = ACTIONS(5766), + [anon_sym_LT] = ACTIONS(5766), + [anon_sym_GT] = ACTIONS(5766), + [anon_sym_GT_GT] = ACTIONS(4815), + [anon_sym_AMP_GT] = ACTIONS(5766), + [anon_sym_AMP_GT_GT] = ACTIONS(4815), + [anon_sym_LT_AMP] = ACTIONS(4815), + [anon_sym_GT_AMP] = ACTIONS(4815), + [anon_sym_LT_LT] = ACTIONS(5766), + [anon_sym_LT_LT_DASH] = ACTIONS(4815), + [anon_sym_LT_LT_LT] = ACTIONS(4815), + [sym__special_characters] = ACTIONS(5766), + [anon_sym_DQUOTE] = ACTIONS(4815), + [anon_sym_DOLLAR] = ACTIONS(5766), + [sym_raw_string] = ACTIONS(4815), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4815), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4815), + [anon_sym_BQUOTE] = ACTIONS(4815), + [anon_sym_LT_LPAREN] = ACTIONS(4815), + [anon_sym_GT_LPAREN] = ACTIONS(4815), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4817), + }, + [2400] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(2996), + [anon_sym_RBRACE] = ACTIONS(6128), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2401] = { + [sym_file_descriptor] = ACTIONS(4821), + [sym__concat] = ACTIONS(4821), + [anon_sym_PIPE] = ACTIONS(5770), + [anon_sym_RPAREN] = ACTIONS(4821), + [anon_sym_PIPE_AMP] = ACTIONS(4821), + [anon_sym_AMP_AMP] = ACTIONS(4821), + [anon_sym_PIPE_PIPE] = ACTIONS(4821), + [anon_sym_EQ_TILDE] = ACTIONS(5770), + [anon_sym_LT] = ACTIONS(5770), + [anon_sym_GT] = ACTIONS(5770), + [anon_sym_GT_GT] = ACTIONS(4821), + [anon_sym_AMP_GT] = ACTIONS(5770), + [anon_sym_AMP_GT_GT] = ACTIONS(4821), + [anon_sym_LT_AMP] = ACTIONS(4821), + [anon_sym_GT_AMP] = ACTIONS(4821), + [anon_sym_LT_LT] = ACTIONS(5770), + [anon_sym_LT_LT_DASH] = ACTIONS(4821), + [anon_sym_LT_LT_LT] = ACTIONS(4821), + [sym__special_characters] = ACTIONS(5770), + [anon_sym_DQUOTE] = ACTIONS(4821), + [anon_sym_DOLLAR] = ACTIONS(5770), + [sym_raw_string] = ACTIONS(4821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4821), + [anon_sym_BQUOTE] = ACTIONS(4821), + [anon_sym_LT_LPAREN] = ACTIONS(4821), + [anon_sym_GT_LPAREN] = ACTIONS(4821), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4823), + }, + [2402] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6130), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2403] = { + [sym_file_descriptor] = ACTIONS(4827), + [sym__concat] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(5774), + [anon_sym_RPAREN] = ACTIONS(4827), + [anon_sym_PIPE_AMP] = ACTIONS(4827), + [anon_sym_AMP_AMP] = ACTIONS(4827), + [anon_sym_PIPE_PIPE] = ACTIONS(4827), + [anon_sym_EQ_TILDE] = ACTIONS(5774), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(5774), + [anon_sym_GT_GT] = ACTIONS(4827), + [anon_sym_AMP_GT] = ACTIONS(5774), + [anon_sym_AMP_GT_GT] = ACTIONS(4827), + [anon_sym_LT_AMP] = ACTIONS(4827), + [anon_sym_GT_AMP] = ACTIONS(4827), + [anon_sym_LT_LT] = ACTIONS(5774), + [anon_sym_LT_LT_DASH] = ACTIONS(4827), + [anon_sym_LT_LT_LT] = ACTIONS(4827), + [sym__special_characters] = ACTIONS(5774), + [anon_sym_DQUOTE] = ACTIONS(4827), + [anon_sym_DOLLAR] = ACTIONS(5774), + [sym_raw_string] = ACTIONS(4827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4827), + [anon_sym_BQUOTE] = ACTIONS(4827), + [anon_sym_LT_LPAREN] = ACTIONS(4827), + [anon_sym_GT_LPAREN] = ACTIONS(4827), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4829), + }, + [2404] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6132), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2405] = { + [anon_sym_PIPE] = ACTIONS(6028), + [anon_sym_RPAREN] = ACTIONS(6030), + [anon_sym_PIPE_AMP] = ACTIONS(6030), + [anon_sym_AMP_AMP] = ACTIONS(6030), + [anon_sym_PIPE_PIPE] = ACTIONS(6030), + [anon_sym_BQUOTE] = ACTIONS(6030), + [sym_comment] = ACTIONS(56), + }, + [2406] = { + [sym_file_descriptor] = ACTIONS(1858), + [sym__concat] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(1858), + [anon_sym_PIPE_AMP] = ACTIONS(1858), + [anon_sym_AMP_AMP] = ACTIONS(1858), + [anon_sym_PIPE_PIPE] = ACTIONS(1858), + [anon_sym_LT] = ACTIONS(3008), + [anon_sym_GT] = ACTIONS(3008), + [anon_sym_GT_GT] = ACTIONS(1858), + [anon_sym_AMP_GT] = ACTIONS(3008), + [anon_sym_AMP_GT_GT] = ACTIONS(1858), + [anon_sym_LT_AMP] = ACTIONS(1858), + [anon_sym_GT_AMP] = ACTIONS(1858), + [anon_sym_LT_LT] = ACTIONS(3008), + [anon_sym_LT_LT_DASH] = ACTIONS(1858), + [anon_sym_LT_LT_LT] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + }, + [2407] = { + [aux_sym_concatenation_repeat1] = STATE(2407), + [sym_file_descriptor] = ACTIONS(1858), + [sym__concat] = ACTIONS(6134), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(1858), + [anon_sym_PIPE_AMP] = ACTIONS(1858), + [anon_sym_AMP_AMP] = ACTIONS(1858), + [anon_sym_PIPE_PIPE] = ACTIONS(1858), + [anon_sym_LT] = ACTIONS(3008), + [anon_sym_GT] = ACTIONS(3008), + [anon_sym_GT_GT] = ACTIONS(1858), + [anon_sym_AMP_GT] = ACTIONS(3008), + [anon_sym_AMP_GT_GT] = ACTIONS(1858), + [anon_sym_LT_AMP] = ACTIONS(1858), + [anon_sym_GT_AMP] = ACTIONS(1858), + [anon_sym_LT_LT] = ACTIONS(3008), + [anon_sym_LT_LT_DASH] = ACTIONS(1858), + [anon_sym_LT_LT_LT] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + }, + [2408] = { + [sym_file_descriptor] = ACTIONS(1895), + [sym__concat] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_RPAREN] = ACTIONS(1895), + [anon_sym_PIPE_AMP] = ACTIONS(1895), + [anon_sym_AMP_AMP] = ACTIONS(1895), + [anon_sym_PIPE_PIPE] = ACTIONS(1895), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_GT_GT] = ACTIONS(1895), + [anon_sym_AMP_GT] = ACTIONS(3013), + [anon_sym_AMP_GT_GT] = ACTIONS(1895), + [anon_sym_LT_AMP] = ACTIONS(1895), + [anon_sym_GT_AMP] = ACTIONS(1895), + [anon_sym_LT_LT] = ACTIONS(3013), + [anon_sym_LT_LT_DASH] = ACTIONS(1895), + [anon_sym_LT_LT_LT] = ACTIONS(1895), + [sym_comment] = ACTIONS(56), + }, + [2409] = { + [sym_concatenation] = STATE(3002), + [sym_string] = STATE(3001), + [sym_simple_expansion] = STATE(3001), + [sym_string_expansion] = STATE(3001), + [sym_expansion] = STATE(3001), + [sym_command_substitution] = STATE(3001), + [sym_process_substitution] = STATE(3001), + [anon_sym_RBRACE] = ACTIONS(6137), + [sym__special_characters] = ACTIONS(6139), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(6141), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6143), + }, + [2410] = { + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(3023), + [anon_sym_RPAREN] = ACTIONS(1940), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_GT] = ACTIONS(3023), + [anon_sym_GT_GT] = ACTIONS(1940), + [anon_sym_AMP_GT] = ACTIONS(3023), + [anon_sym_AMP_GT_GT] = ACTIONS(1940), + [anon_sym_LT_AMP] = ACTIONS(1940), + [anon_sym_GT_AMP] = ACTIONS(1940), + [anon_sym_LT_LT] = ACTIONS(3023), + [anon_sym_LT_LT_DASH] = ACTIONS(1940), + [anon_sym_LT_LT_LT] = ACTIONS(1940), + [sym_comment] = ACTIONS(56), + }, + [2411] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6145), + }, + [2412] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6147), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2413] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(6149), + [sym_comment] = ACTIONS(56), + }, + [2414] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3008), + [anon_sym_RBRACE] = ACTIONS(6151), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(6153), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2415] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3011), + [anon_sym_RBRACE] = ACTIONS(6155), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(6157), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2416] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3013), + [anon_sym_RBRACE] = ACTIONS(6137), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(6159), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2417] = { + [sym_file_descriptor] = ACTIONS(1992), + [sym__concat] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(3041), + [anon_sym_RPAREN] = ACTIONS(1992), + [anon_sym_PIPE_AMP] = ACTIONS(1992), + [anon_sym_AMP_AMP] = ACTIONS(1992), + [anon_sym_PIPE_PIPE] = ACTIONS(1992), + [anon_sym_LT] = ACTIONS(3041), + [anon_sym_GT] = ACTIONS(3041), + [anon_sym_GT_GT] = ACTIONS(1992), + [anon_sym_AMP_GT] = ACTIONS(3041), + [anon_sym_AMP_GT_GT] = ACTIONS(1992), + [anon_sym_LT_AMP] = ACTIONS(1992), + [anon_sym_GT_AMP] = ACTIONS(1992), + [anon_sym_LT_LT] = ACTIONS(3041), + [anon_sym_LT_LT_DASH] = ACTIONS(1992), + [anon_sym_LT_LT_LT] = ACTIONS(1992), + [sym_comment] = ACTIONS(56), + }, + [2418] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6161), + }, + [2419] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6163), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2420] = { + [sym_file_descriptor] = ACTIONS(2000), + [sym__concat] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(3047), + [anon_sym_RPAREN] = ACTIONS(2000), + [anon_sym_PIPE_AMP] = ACTIONS(2000), + [anon_sym_AMP_AMP] = ACTIONS(2000), + [anon_sym_PIPE_PIPE] = ACTIONS(2000), + [anon_sym_LT] = ACTIONS(3047), + [anon_sym_GT] = ACTIONS(3047), + [anon_sym_GT_GT] = ACTIONS(2000), + [anon_sym_AMP_GT] = ACTIONS(3047), + [anon_sym_AMP_GT_GT] = ACTIONS(2000), + [anon_sym_LT_AMP] = ACTIONS(2000), + [anon_sym_GT_AMP] = ACTIONS(2000), + [anon_sym_LT_LT] = ACTIONS(3047), + [anon_sym_LT_LT_DASH] = ACTIONS(2000), + [anon_sym_LT_LT_LT] = ACTIONS(2000), + [sym_comment] = ACTIONS(56), + }, + [2421] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6165), + }, + [2422] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6137), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2423] = { + [sym_file_descriptor] = ACTIONS(2156), + [sym__concat] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_RPAREN] = ACTIONS(2156), + [anon_sym_PIPE_AMP] = ACTIONS(2156), + [anon_sym_AMP_AMP] = ACTIONS(2156), + [anon_sym_PIPE_PIPE] = ACTIONS(2156), + [anon_sym_LT] = ACTIONS(3051), + [anon_sym_GT] = ACTIONS(3051), + [anon_sym_GT_GT] = ACTIONS(2156), + [anon_sym_AMP_GT] = ACTIONS(3051), + [anon_sym_AMP_GT_GT] = ACTIONS(2156), + [anon_sym_LT_AMP] = ACTIONS(2156), + [anon_sym_GT_AMP] = ACTIONS(2156), + [anon_sym_LT_LT] = ACTIONS(3051), + [anon_sym_LT_LT_DASH] = ACTIONS(2156), + [anon_sym_LT_LT_LT] = ACTIONS(2156), + [sym_comment] = ACTIONS(56), + }, + [2424] = { + [sym_file_descriptor] = ACTIONS(2358), + [sym__concat] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(3053), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_PIPE_AMP] = ACTIONS(2358), + [anon_sym_AMP_AMP] = ACTIONS(2358), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [anon_sym_LT] = ACTIONS(3053), + [anon_sym_GT] = ACTIONS(3053), + [anon_sym_GT_GT] = ACTIONS(2358), + [anon_sym_AMP_GT] = ACTIONS(3053), + [anon_sym_AMP_GT_GT] = ACTIONS(2358), + [anon_sym_LT_AMP] = ACTIONS(2358), + [anon_sym_GT_AMP] = ACTIONS(2358), + [anon_sym_LT_LT] = ACTIONS(3053), + [anon_sym_LT_LT_DASH] = ACTIONS(2358), + [anon_sym_LT_LT_LT] = ACTIONS(2358), + [sym_comment] = ACTIONS(56), + }, + [2425] = { + [sym_file_descriptor] = ACTIONS(5302), + [anon_sym_PIPE] = ACTIONS(6167), + [anon_sym_RPAREN] = ACTIONS(5302), + [anon_sym_PIPE_AMP] = ACTIONS(5302), + [anon_sym_AMP_AMP] = ACTIONS(5302), + [anon_sym_PIPE_PIPE] = ACTIONS(5302), + [anon_sym_LT] = ACTIONS(6167), + [anon_sym_GT] = ACTIONS(6167), + [anon_sym_GT_GT] = ACTIONS(5302), + [anon_sym_AMP_GT] = ACTIONS(6167), + [anon_sym_AMP_GT_GT] = ACTIONS(5302), + [anon_sym_LT_AMP] = ACTIONS(5302), + [anon_sym_GT_AMP] = ACTIONS(5302), + [anon_sym_LT_LT] = ACTIONS(6167), + [anon_sym_LT_LT_DASH] = ACTIONS(5302), + [anon_sym_LT_LT_LT] = ACTIONS(5302), + [anon_sym_BQUOTE] = ACTIONS(5302), + [sym_comment] = ACTIONS(56), + }, + [2426] = { + [sym_file_descriptor] = ACTIONS(1858), + [sym__concat] = ACTIONS(1858), + [sym_variable_name] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_PIPE_AMP] = ACTIONS(1858), + [anon_sym_AMP_AMP] = ACTIONS(1858), + [anon_sym_PIPE_PIPE] = ACTIONS(1858), + [anon_sym_LT] = ACTIONS(3008), + [anon_sym_GT] = ACTIONS(3008), + [anon_sym_GT_GT] = ACTIONS(1858), + [anon_sym_AMP_GT] = ACTIONS(3008), + [anon_sym_AMP_GT_GT] = ACTIONS(1858), + [anon_sym_LT_AMP] = ACTIONS(1858), + [anon_sym_GT_AMP] = ACTIONS(1858), + [sym__special_characters] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), + [anon_sym_BQUOTE] = ACTIONS(1858), + [anon_sym_LT_LPAREN] = ACTIONS(1858), + [anon_sym_GT_LPAREN] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3008), + }, + [2427] = { + [aux_sym_concatenation_repeat1] = STATE(2427), + [sym_file_descriptor] = ACTIONS(1858), + [sym__concat] = ACTIONS(6169), + [sym_variable_name] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_PIPE_AMP] = ACTIONS(1858), + [anon_sym_AMP_AMP] = ACTIONS(1858), + [anon_sym_PIPE_PIPE] = ACTIONS(1858), + [anon_sym_LT] = ACTIONS(3008), + [anon_sym_GT] = ACTIONS(3008), + [anon_sym_GT_GT] = ACTIONS(1858), + [anon_sym_AMP_GT] = ACTIONS(3008), + [anon_sym_AMP_GT_GT] = ACTIONS(1858), + [anon_sym_LT_AMP] = ACTIONS(1858), + [anon_sym_GT_AMP] = ACTIONS(1858), + [sym__special_characters] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(1858), + [anon_sym_DOLLAR] = ACTIONS(3008), + [sym_raw_string] = ACTIONS(1858), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1858), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), + [anon_sym_BQUOTE] = ACTIONS(1858), + [anon_sym_LT_LPAREN] = ACTIONS(1858), + [anon_sym_GT_LPAREN] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3008), + }, + [2428] = { + [sym_file_descriptor] = ACTIONS(1895), + [sym__concat] = ACTIONS(1895), + [sym_variable_name] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_PIPE_AMP] = ACTIONS(1895), + [anon_sym_AMP_AMP] = ACTIONS(1895), + [anon_sym_PIPE_PIPE] = ACTIONS(1895), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_GT_GT] = ACTIONS(1895), + [anon_sym_AMP_GT] = ACTIONS(3013), + [anon_sym_AMP_GT_GT] = ACTIONS(1895), + [anon_sym_LT_AMP] = ACTIONS(1895), + [anon_sym_GT_AMP] = ACTIONS(1895), + [sym__special_characters] = ACTIONS(3013), + [anon_sym_DQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(3013), + [sym_raw_string] = ACTIONS(1895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1895), + [anon_sym_BQUOTE] = ACTIONS(1895), + [anon_sym_LT_LPAREN] = ACTIONS(1895), + [anon_sym_GT_LPAREN] = ACTIONS(1895), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3013), + }, + [2429] = { + [sym_concatenation] = STATE(3020), + [sym_string] = STATE(3019), + [sym_simple_expansion] = STATE(3019), + [sym_string_expansion] = STATE(3019), + [sym_expansion] = STATE(3019), + [sym_command_substitution] = STATE(3019), + [sym_process_substitution] = STATE(3019), + [anon_sym_RBRACE] = ACTIONS(6172), + [sym__special_characters] = ACTIONS(6174), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(6176), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6178), + }, + [2430] = { + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(1940), + [sym_variable_name] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(3023), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_GT] = ACTIONS(3023), + [anon_sym_GT_GT] = ACTIONS(1940), + [anon_sym_AMP_GT] = ACTIONS(3023), + [anon_sym_AMP_GT_GT] = ACTIONS(1940), + [anon_sym_LT_AMP] = ACTIONS(1940), + [anon_sym_GT_AMP] = ACTIONS(1940), + [sym__special_characters] = ACTIONS(3023), + [anon_sym_DQUOTE] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(3023), + [sym_raw_string] = ACTIONS(1940), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1940), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [anon_sym_LT_LPAREN] = ACTIONS(1940), + [anon_sym_GT_LPAREN] = ACTIONS(1940), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3023), + }, + [2431] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6180), + }, + [2432] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6182), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2433] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(6184), + [sym_comment] = ACTIONS(56), + }, + [2434] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3026), + [anon_sym_RBRACE] = ACTIONS(6186), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(6188), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2435] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3029), + [anon_sym_RBRACE] = ACTIONS(6190), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(6192), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2436] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3031), + [anon_sym_RBRACE] = ACTIONS(6172), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(6194), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2437] = { + [sym_file_descriptor] = ACTIONS(1992), + [sym__concat] = ACTIONS(1992), + [sym_variable_name] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(3041), + [anon_sym_PIPE_AMP] = ACTIONS(1992), + [anon_sym_AMP_AMP] = ACTIONS(1992), + [anon_sym_PIPE_PIPE] = ACTIONS(1992), + [anon_sym_LT] = ACTIONS(3041), + [anon_sym_GT] = ACTIONS(3041), + [anon_sym_GT_GT] = ACTIONS(1992), + [anon_sym_AMP_GT] = ACTIONS(3041), + [anon_sym_AMP_GT_GT] = ACTIONS(1992), + [anon_sym_LT_AMP] = ACTIONS(1992), + [anon_sym_GT_AMP] = ACTIONS(1992), + [sym__special_characters] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(1992), + [anon_sym_DOLLAR] = ACTIONS(3041), + [sym_raw_string] = ACTIONS(1992), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1992), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1992), + [anon_sym_BQUOTE] = ACTIONS(1992), + [anon_sym_LT_LPAREN] = ACTIONS(1992), + [anon_sym_GT_LPAREN] = ACTIONS(1992), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3041), + }, + [2438] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6196), + }, + [2439] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6198), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2440] = { + [sym_file_descriptor] = ACTIONS(2000), + [sym__concat] = ACTIONS(2000), + [sym_variable_name] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(3047), + [anon_sym_PIPE_AMP] = ACTIONS(2000), + [anon_sym_AMP_AMP] = ACTIONS(2000), + [anon_sym_PIPE_PIPE] = ACTIONS(2000), + [anon_sym_LT] = ACTIONS(3047), + [anon_sym_GT] = ACTIONS(3047), + [anon_sym_GT_GT] = ACTIONS(2000), + [anon_sym_AMP_GT] = ACTIONS(3047), + [anon_sym_AMP_GT_GT] = ACTIONS(2000), + [anon_sym_LT_AMP] = ACTIONS(2000), + [anon_sym_GT_AMP] = ACTIONS(2000), + [sym__special_characters] = ACTIONS(3047), + [anon_sym_DQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(3047), + [sym_raw_string] = ACTIONS(2000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2000), + [anon_sym_BQUOTE] = ACTIONS(2000), + [anon_sym_LT_LPAREN] = ACTIONS(2000), + [anon_sym_GT_LPAREN] = ACTIONS(2000), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3047), + }, + [2441] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6200), + }, + [2442] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6172), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2443] = { + [sym_file_descriptor] = ACTIONS(2156), + [sym__concat] = ACTIONS(2156), + [sym_variable_name] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_PIPE_AMP] = ACTIONS(2156), + [anon_sym_AMP_AMP] = ACTIONS(2156), + [anon_sym_PIPE_PIPE] = ACTIONS(2156), + [anon_sym_LT] = ACTIONS(3051), + [anon_sym_GT] = ACTIONS(3051), + [anon_sym_GT_GT] = ACTIONS(2156), + [anon_sym_AMP_GT] = ACTIONS(3051), + [anon_sym_AMP_GT_GT] = ACTIONS(2156), + [anon_sym_LT_AMP] = ACTIONS(2156), + [anon_sym_GT_AMP] = ACTIONS(2156), + [sym__special_characters] = ACTIONS(3051), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_DOLLAR] = ACTIONS(3051), + [sym_raw_string] = ACTIONS(2156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2156), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2156), + [anon_sym_LT_LPAREN] = ACTIONS(2156), + [anon_sym_GT_LPAREN] = ACTIONS(2156), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3051), + }, + [2444] = { + [sym_file_descriptor] = ACTIONS(2358), + [sym__concat] = ACTIONS(2358), + [sym_variable_name] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(3053), + [anon_sym_PIPE_AMP] = ACTIONS(2358), + [anon_sym_AMP_AMP] = ACTIONS(2358), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [anon_sym_LT] = ACTIONS(3053), + [anon_sym_GT] = ACTIONS(3053), + [anon_sym_GT_GT] = ACTIONS(2358), + [anon_sym_AMP_GT] = ACTIONS(3053), + [anon_sym_AMP_GT_GT] = ACTIONS(2358), + [anon_sym_LT_AMP] = ACTIONS(2358), + [anon_sym_GT_AMP] = ACTIONS(2358), + [sym__special_characters] = ACTIONS(3053), + [anon_sym_DQUOTE] = ACTIONS(2358), + [anon_sym_DOLLAR] = ACTIONS(3053), + [sym_raw_string] = ACTIONS(2358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2358), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2358), + [anon_sym_BQUOTE] = ACTIONS(2358), + [anon_sym_LT_LPAREN] = ACTIONS(2358), + [anon_sym_GT_LPAREN] = ACTIONS(2358), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3053), + }, + [2445] = { + [sym_file_redirect] = STATE(2933), + [sym_file_descriptor] = ACTIONS(3736), + [anon_sym_PIPE] = ACTIONS(6028), + [anon_sym_PIPE_AMP] = ACTIONS(6030), + [anon_sym_AMP_AMP] = ACTIONS(6030), + [anon_sym_PIPE_PIPE] = ACTIONS(6030), + [anon_sym_LT] = ACTIONS(3738), + [anon_sym_GT] = ACTIONS(3738), + [anon_sym_GT_GT] = ACTIONS(3740), + [anon_sym_AMP_GT] = ACTIONS(3738), + [anon_sym_AMP_GT_GT] = ACTIONS(3740), + [anon_sym_LT_AMP] = ACTIONS(3740), + [anon_sym_GT_AMP] = ACTIONS(3740), + [anon_sym_BQUOTE] = ACTIONS(6030), + [sym_comment] = ACTIONS(56), + }, + [2446] = { + [sym_concatenation] = STATE(2936), + [sym_string] = STATE(3036), + [sym_simple_expansion] = STATE(3036), + [sym_string_expansion] = STATE(3036), + [sym_expansion] = STATE(3036), + [sym_command_substitution] = STATE(3036), + [sym_process_substitution] = STATE(3036), + [sym__special_characters] = ACTIONS(6202), + [anon_sym_DQUOTE] = ACTIONS(5107), + [anon_sym_DOLLAR] = ACTIONS(5109), + [sym_raw_string] = ACTIONS(6204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5115), + [anon_sym_BQUOTE] = ACTIONS(5117), + [anon_sym_LT_LPAREN] = ACTIONS(5119), + [anon_sym_GT_LPAREN] = ACTIONS(5119), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6206), + }, + [2447] = { + [aux_sym_concatenation_repeat1] = STATE(3038), + [sym__concat] = ACTIONS(6208), + [anon_sym_PIPE] = ACTIONS(744), + [anon_sym_PIPE_AMP] = ACTIONS(740), + [anon_sym_AMP_AMP] = ACTIONS(740), + [anon_sym_PIPE_PIPE] = ACTIONS(740), + [anon_sym_BQUOTE] = ACTIONS(740), + [sym_comment] = ACTIONS(56), + }, + [2448] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(3040), + [anon_sym_DQUOTE] = ACTIONS(6210), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [2449] = { + [sym_string] = STATE(3043), + [anon_sym_DQUOTE] = ACTIONS(5107), + [anon_sym_DOLLAR] = ACTIONS(6212), + [anon_sym_POUND] = ACTIONS(6212), + [anon_sym_DASH] = ACTIONS(6212), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6214), + [anon_sym_STAR] = ACTIONS(6212), + [anon_sym_AT] = ACTIONS(6212), + [anon_sym_QMARK] = ACTIONS(6212), + [anon_sym_0] = ACTIONS(6216), + [anon_sym__] = ACTIONS(6216), + }, + [2450] = { + [aux_sym_concatenation_repeat1] = STATE(3038), + [sym__concat] = ACTIONS(6208), + [anon_sym_PIPE] = ACTIONS(756), + [anon_sym_PIPE_AMP] = ACTIONS(754), + [anon_sym_AMP_AMP] = ACTIONS(754), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_BQUOTE] = ACTIONS(754), + [sym_comment] = ACTIONS(56), + }, + [2451] = { + [sym_subscript] = STATE(3048), + [sym_variable_name] = ACTIONS(6218), + [anon_sym_DOLLAR] = ACTIONS(6220), + [anon_sym_POUND] = ACTIONS(6222), + [anon_sym_DASH] = ACTIONS(6220), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6224), + [anon_sym_STAR] = ACTIONS(6220), + [anon_sym_AT] = ACTIONS(6220), + [anon_sym_QMARK] = ACTIONS(6220), + [anon_sym_0] = ACTIONS(6226), + [anon_sym__] = ACTIONS(6226), + }, + [2452] = { + [sym_for_statement] = STATE(3049), + [sym_while_statement] = STATE(3049), + [sym_if_statement] = STATE(3049), + [sym_case_statement] = STATE(3049), + [sym_function_definition] = STATE(3049), + [sym_subshell] = STATE(3049), + [sym_pipeline] = STATE(3049), + [sym_list] = STATE(3049), + [sym_command] = STATE(3049), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(3049), + [sym_variable_assignment] = STATE(3050), + [sym_declaration_command] = STATE(3049), + [sym_unset_command] = STATE(3049), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [2453] = { + [sym_for_statement] = STATE(3051), + [sym_while_statement] = STATE(3051), + [sym_if_statement] = STATE(3051), + [sym_case_statement] = STATE(3051), + [sym_function_definition] = STATE(3051), + [sym_subshell] = STATE(3051), + [sym_pipeline] = STATE(3051), + [sym_list] = STATE(3051), + [sym_command] = STATE(3051), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(3051), + [sym_variable_assignment] = STATE(3052), + [sym_declaration_command] = STATE(3051), + [sym_unset_command] = STATE(3051), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(302), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(304), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(306), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(308), + [anon_sym_LBRACK_LBRACK] = ACTIONS(310), + [anon_sym_declare] = ACTIONS(312), + [anon_sym_typeset] = ACTIONS(312), + [anon_sym_export] = ACTIONS(312), + [anon_sym_readonly] = ACTIONS(312), + [anon_sym_local] = ACTIONS(312), + [anon_sym_unset] = ACTIONS(314), + [anon_sym_unsetenv] = ACTIONS(314), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(316), + [anon_sym_DQUOTE] = ACTIONS(318), + [anon_sym_DOLLAR] = ACTIONS(320), + [sym_raw_string] = ACTIONS(322), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(324), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(326), + [anon_sym_BQUOTE] = ACTIONS(328), + [anon_sym_LT_LPAREN] = ACTIONS(330), + [anon_sym_GT_LPAREN] = ACTIONS(330), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(332), + }, + [2454] = { + [sym_for_statement] = STATE(3053), + [sym_while_statement] = STATE(3053), + [sym_if_statement] = STATE(3053), + [sym_case_statement] = STATE(3053), + [sym_function_definition] = STATE(3053), + [sym_subshell] = STATE(3053), + [sym_pipeline] = STATE(3053), + [sym_list] = STATE(3053), + [sym_command] = STATE(3053), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(3053), + [sym_variable_assignment] = STATE(3054), + [sym_declaration_command] = STATE(3053), + [sym_unset_command] = STATE(3053), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(262), + [anon_sym_for] = ACTIONS(264), + [anon_sym_while] = ACTIONS(266), + [anon_sym_if] = ACTIONS(268), + [anon_sym_case] = ACTIONS(270), + [anon_sym_function] = ACTIONS(272), + [anon_sym_LPAREN] = ACTIONS(274), + [anon_sym_LBRACK] = ACTIONS(276), + [anon_sym_LBRACK_LBRACK] = ACTIONS(278), + [anon_sym_declare] = ACTIONS(280), + [anon_sym_typeset] = ACTIONS(280), + [anon_sym_export] = ACTIONS(280), + [anon_sym_readonly] = ACTIONS(280), + [anon_sym_local] = ACTIONS(280), + [anon_sym_unset] = ACTIONS(282), + [anon_sym_unsetenv] = ACTIONS(282), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(284), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(288), + [sym_raw_string] = ACTIONS(290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(294), + [anon_sym_BQUOTE] = ACTIONS(296), + [anon_sym_LT_LPAREN] = ACTIONS(298), + [anon_sym_GT_LPAREN] = ACTIONS(298), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(300), + }, + [2455] = { + [sym__concat] = ACTIONS(3235), + [sym_variable_name] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_PIPE_AMP] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [sym__special_characters] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_DOLLAR] = ACTIONS(4540), + [sym_raw_string] = ACTIONS(3235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3235), + [anon_sym_BQUOTE] = ACTIONS(3235), + [anon_sym_LT_LPAREN] = ACTIONS(3235), + [anon_sym_GT_LPAREN] = ACTIONS(3235), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4540), + [sym_word] = ACTIONS(3237), + }, + [2456] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6228), + [sym_comment] = ACTIONS(56), + }, + [2457] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6230), + [sym_comment] = ACTIONS(56), + }, + [2458] = { + [anon_sym_RBRACE] = ACTIONS(6230), + [sym_comment] = ACTIONS(56), + }, + [2459] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3058), + [anon_sym_RBRACE] = ACTIONS(6232), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2460] = { + [sym__concat] = ACTIONS(3297), + [sym_variable_name] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(4548), + [anon_sym_PIPE_AMP] = ACTIONS(3297), + [anon_sym_AMP_AMP] = ACTIONS(3297), + [anon_sym_PIPE_PIPE] = ACTIONS(3297), + [sym__special_characters] = ACTIONS(4548), + [anon_sym_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(4548), + [sym_raw_string] = ACTIONS(3297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3297), + [anon_sym_BQUOTE] = ACTIONS(3297), + [anon_sym_LT_LPAREN] = ACTIONS(3297), + [anon_sym_GT_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4548), + [sym_word] = ACTIONS(3299), + }, + [2461] = { + [sym_concatenation] = STATE(3061), + [sym_string] = STATE(3060), + [sym_simple_expansion] = STATE(3060), + [sym_string_expansion] = STATE(3060), + [sym_expansion] = STATE(3060), + [sym_command_substitution] = STATE(3060), + [sym_process_substitution] = STATE(3060), + [anon_sym_RBRACE] = ACTIONS(6230), + [sym__special_characters] = ACTIONS(6234), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(6236), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6238), + }, + [2462] = { + [sym__concat] = ACTIONS(3342), + [sym_variable_name] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(4556), + [anon_sym_PIPE_AMP] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [sym__special_characters] = ACTIONS(4556), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(4556), + [sym_raw_string] = ACTIONS(3342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3342), + [anon_sym_BQUOTE] = ACTIONS(3342), + [anon_sym_LT_LPAREN] = ACTIONS(3342), + [anon_sym_GT_LPAREN] = ACTIONS(3342), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4556), + [sym_word] = ACTIONS(3344), + }, + [2463] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6240), + }, + [2464] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6242), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2465] = { + [sym__concat] = ACTIONS(3350), + [sym_variable_name] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_PIPE_AMP] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [sym__special_characters] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_DOLLAR] = ACTIONS(4562), + [sym_raw_string] = ACTIONS(3350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3350), + [anon_sym_BQUOTE] = ACTIONS(3350), + [anon_sym_LT_LPAREN] = ACTIONS(3350), + [anon_sym_GT_LPAREN] = ACTIONS(3350), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4562), + [sym_word] = ACTIONS(3352), + }, + [2466] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6244), + }, + [2467] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6246), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2468] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6248), + }, + [2469] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6230), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2470] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3068), + [anon_sym_RBRACE] = ACTIONS(6250), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2471] = { + [sym__concat] = ACTIONS(3362), + [sym_variable_name] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_PIPE_AMP] = ACTIONS(3362), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_PIPE_PIPE] = ACTIONS(3362), + [sym__special_characters] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(3362), + [anon_sym_DOLLAR] = ACTIONS(4572), + [sym_raw_string] = ACTIONS(3362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3362), + [anon_sym_BQUOTE] = ACTIONS(3362), + [anon_sym_LT_LPAREN] = ACTIONS(3362), + [anon_sym_GT_LPAREN] = ACTIONS(3362), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4572), + [sym_word] = ACTIONS(3364), + }, + [2472] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3070), + [anon_sym_RBRACE] = ACTIONS(6252), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2473] = { + [sym__concat] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_PIPE_AMP] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [sym__special_characters] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_DOLLAR] = ACTIONS(4540), + [sym_raw_string] = ACTIONS(3235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3235), + [anon_sym_BQUOTE] = ACTIONS(3235), + [anon_sym_LT_LPAREN] = ACTIONS(3235), + [anon_sym_GT_LPAREN] = ACTIONS(3235), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4540), + [sym_word] = ACTIONS(3237), + }, + [2474] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6254), + [sym_comment] = ACTIONS(56), + }, + [2475] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6256), + [sym_comment] = ACTIONS(56), + }, + [2476] = { + [anon_sym_RBRACE] = ACTIONS(6256), + [sym_comment] = ACTIONS(56), + }, + [2477] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3074), + [anon_sym_RBRACE] = ACTIONS(6258), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2478] = { + [sym__concat] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(4548), + [anon_sym_PIPE_AMP] = ACTIONS(3297), + [anon_sym_AMP_AMP] = ACTIONS(3297), + [anon_sym_PIPE_PIPE] = ACTIONS(3297), + [sym__special_characters] = ACTIONS(4548), + [anon_sym_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(4548), + [sym_raw_string] = ACTIONS(3297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3297), + [anon_sym_BQUOTE] = ACTIONS(3297), + [anon_sym_LT_LPAREN] = ACTIONS(3297), + [anon_sym_GT_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4548), + [sym_word] = ACTIONS(3299), + }, + [2479] = { + [sym_concatenation] = STATE(3077), + [sym_string] = STATE(3076), + [sym_simple_expansion] = STATE(3076), + [sym_string_expansion] = STATE(3076), + [sym_expansion] = STATE(3076), + [sym_command_substitution] = STATE(3076), + [sym_process_substitution] = STATE(3076), + [anon_sym_RBRACE] = ACTIONS(6256), + [sym__special_characters] = ACTIONS(6260), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(6262), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6264), + }, + [2480] = { + [sym__concat] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(4556), + [anon_sym_PIPE_AMP] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [sym__special_characters] = ACTIONS(4556), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(4556), + [sym_raw_string] = ACTIONS(3342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3342), + [anon_sym_BQUOTE] = ACTIONS(3342), + [anon_sym_LT_LPAREN] = ACTIONS(3342), + [anon_sym_GT_LPAREN] = ACTIONS(3342), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4556), + [sym_word] = ACTIONS(3344), + }, + [2481] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6266), + }, + [2482] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6268), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2483] = { + [sym__concat] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_PIPE_AMP] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [sym__special_characters] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_DOLLAR] = ACTIONS(4562), + [sym_raw_string] = ACTIONS(3350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3350), + [anon_sym_BQUOTE] = ACTIONS(3350), + [anon_sym_LT_LPAREN] = ACTIONS(3350), + [anon_sym_GT_LPAREN] = ACTIONS(3350), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4562), + [sym_word] = ACTIONS(3352), + }, + [2484] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6270), + }, + [2485] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6272), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2486] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6274), + }, + [2487] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6256), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2488] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3084), + [anon_sym_RBRACE] = ACTIONS(6276), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2489] = { + [sym__concat] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_PIPE_AMP] = ACTIONS(3362), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_PIPE_PIPE] = ACTIONS(3362), + [sym__special_characters] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(3362), + [anon_sym_DOLLAR] = ACTIONS(4572), + [sym_raw_string] = ACTIONS(3362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3362), + [anon_sym_BQUOTE] = ACTIONS(3362), + [anon_sym_LT_LPAREN] = ACTIONS(3362), + [anon_sym_GT_LPAREN] = ACTIONS(3362), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4572), + [sym_word] = ACTIONS(3364), + }, + [2490] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3086), + [anon_sym_RBRACE] = ACTIONS(6278), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2491] = { + [sym_file_descriptor] = ACTIONS(4728), + [sym__concat] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(5748), + [anon_sym_PIPE_AMP] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_EQ_TILDE] = ACTIONS(5748), + [anon_sym_LT] = ACTIONS(5748), + [anon_sym_GT] = ACTIONS(5748), + [anon_sym_GT_GT] = ACTIONS(4728), + [anon_sym_AMP_GT] = ACTIONS(5748), + [anon_sym_AMP_GT_GT] = ACTIONS(4728), + [anon_sym_LT_AMP] = ACTIONS(4728), + [anon_sym_GT_AMP] = ACTIONS(4728), + [anon_sym_LT_LT] = ACTIONS(5748), + [anon_sym_LT_LT_DASH] = ACTIONS(4728), + [anon_sym_LT_LT_LT] = ACTIONS(4728), + [sym__special_characters] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(5748), + [sym_raw_string] = ACTIONS(4728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LT_LPAREN] = ACTIONS(4728), + [anon_sym_GT_LPAREN] = ACTIONS(4728), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4730), + }, + [2492] = { + [sym_file_descriptor] = ACTIONS(4734), + [sym__concat] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(5750), + [anon_sym_PIPE_AMP] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [anon_sym_EQ_TILDE] = ACTIONS(5750), + [anon_sym_LT] = ACTIONS(5750), + [anon_sym_GT] = ACTIONS(5750), + [anon_sym_GT_GT] = ACTIONS(4734), + [anon_sym_AMP_GT] = ACTIONS(5750), + [anon_sym_AMP_GT_GT] = ACTIONS(4734), + [anon_sym_LT_AMP] = ACTIONS(4734), + [anon_sym_GT_AMP] = ACTIONS(4734), + [anon_sym_LT_LT] = ACTIONS(5750), + [anon_sym_LT_LT_DASH] = ACTIONS(4734), + [anon_sym_LT_LT_LT] = ACTIONS(4734), + [sym__special_characters] = ACTIONS(5750), + [anon_sym_DQUOTE] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(5750), + [sym_raw_string] = ACTIONS(4734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4734), + [anon_sym_BQUOTE] = ACTIONS(4734), + [anon_sym_LT_LPAREN] = ACTIONS(4734), + [anon_sym_GT_LPAREN] = ACTIONS(4734), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4736), + }, + [2493] = { + [sym_file_descriptor] = ACTIONS(4797), + [sym__concat] = ACTIONS(4797), + [anon_sym_PIPE] = ACTIONS(5752), + [anon_sym_PIPE_AMP] = ACTIONS(4797), + [anon_sym_AMP_AMP] = ACTIONS(4797), + [anon_sym_PIPE_PIPE] = ACTIONS(4797), + [anon_sym_EQ_TILDE] = ACTIONS(5752), + [anon_sym_LT] = ACTIONS(5752), + [anon_sym_GT] = ACTIONS(5752), + [anon_sym_GT_GT] = ACTIONS(4797), + [anon_sym_AMP_GT] = ACTIONS(5752), + [anon_sym_AMP_GT_GT] = ACTIONS(4797), + [anon_sym_LT_AMP] = ACTIONS(4797), + [anon_sym_GT_AMP] = ACTIONS(4797), + [anon_sym_LT_LT] = ACTIONS(5752), + [anon_sym_LT_LT_DASH] = ACTIONS(4797), + [anon_sym_LT_LT_LT] = ACTIONS(4797), + [sym__special_characters] = ACTIONS(5752), + [anon_sym_DQUOTE] = ACTIONS(4797), + [anon_sym_DOLLAR] = ACTIONS(5752), + [sym_raw_string] = ACTIONS(4797), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4797), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4797), + [anon_sym_BQUOTE] = ACTIONS(4797), + [anon_sym_LT_LPAREN] = ACTIONS(4797), + [anon_sym_GT_LPAREN] = ACTIONS(4797), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4799), + }, + [2494] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6280), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2495] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6282), + [sym_comment] = ACTIONS(56), + }, + [2496] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6284), + [sym_comment] = ACTIONS(56), + }, + [2497] = { + [anon_sym_RBRACE] = ACTIONS(6284), + [sym_comment] = ACTIONS(56), + }, + [2498] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3091), + [anon_sym_RBRACE] = ACTIONS(6286), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2499] = { + [sym_file_descriptor] = ACTIONS(4809), + [sym__concat] = ACTIONS(4809), + [anon_sym_PIPE] = ACTIONS(5762), + [anon_sym_PIPE_AMP] = ACTIONS(4809), + [anon_sym_AMP_AMP] = ACTIONS(4809), + [anon_sym_PIPE_PIPE] = ACTIONS(4809), + [anon_sym_EQ_TILDE] = ACTIONS(5762), + [anon_sym_LT] = ACTIONS(5762), + [anon_sym_GT] = ACTIONS(5762), + [anon_sym_GT_GT] = ACTIONS(4809), + [anon_sym_AMP_GT] = ACTIONS(5762), + [anon_sym_AMP_GT_GT] = ACTIONS(4809), + [anon_sym_LT_AMP] = ACTIONS(4809), + [anon_sym_GT_AMP] = ACTIONS(4809), + [anon_sym_LT_LT] = ACTIONS(5762), + [anon_sym_LT_LT_DASH] = ACTIONS(4809), + [anon_sym_LT_LT_LT] = ACTIONS(4809), + [sym__special_characters] = ACTIONS(5762), + [anon_sym_DQUOTE] = ACTIONS(4809), + [anon_sym_DOLLAR] = ACTIONS(5762), + [sym_raw_string] = ACTIONS(4809), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4809), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4809), + [anon_sym_BQUOTE] = ACTIONS(4809), + [anon_sym_LT_LPAREN] = ACTIONS(4809), + [anon_sym_GT_LPAREN] = ACTIONS(4809), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4811), + }, + [2500] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3093), + [anon_sym_RBRACE] = ACTIONS(6288), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2501] = { + [sym_file_descriptor] = ACTIONS(4815), + [sym__concat] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(5766), + [anon_sym_PIPE_AMP] = ACTIONS(4815), + [anon_sym_AMP_AMP] = ACTIONS(4815), + [anon_sym_PIPE_PIPE] = ACTIONS(4815), + [anon_sym_EQ_TILDE] = ACTIONS(5766), + [anon_sym_LT] = ACTIONS(5766), + [anon_sym_GT] = ACTIONS(5766), + [anon_sym_GT_GT] = ACTIONS(4815), + [anon_sym_AMP_GT] = ACTIONS(5766), + [anon_sym_AMP_GT_GT] = ACTIONS(4815), + [anon_sym_LT_AMP] = ACTIONS(4815), + [anon_sym_GT_AMP] = ACTIONS(4815), + [anon_sym_LT_LT] = ACTIONS(5766), + [anon_sym_LT_LT_DASH] = ACTIONS(4815), + [anon_sym_LT_LT_LT] = ACTIONS(4815), + [sym__special_characters] = ACTIONS(5766), + [anon_sym_DQUOTE] = ACTIONS(4815), + [anon_sym_DOLLAR] = ACTIONS(5766), + [sym_raw_string] = ACTIONS(4815), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4815), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4815), + [anon_sym_BQUOTE] = ACTIONS(4815), + [anon_sym_LT_LPAREN] = ACTIONS(4815), + [anon_sym_GT_LPAREN] = ACTIONS(4815), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4817), + }, + [2502] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3095), + [anon_sym_RBRACE] = ACTIONS(6290), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2503] = { + [sym_file_descriptor] = ACTIONS(4821), + [sym__concat] = ACTIONS(4821), + [anon_sym_PIPE] = ACTIONS(5770), + [anon_sym_PIPE_AMP] = ACTIONS(4821), + [anon_sym_AMP_AMP] = ACTIONS(4821), + [anon_sym_PIPE_PIPE] = ACTIONS(4821), + [anon_sym_EQ_TILDE] = ACTIONS(5770), + [anon_sym_LT] = ACTIONS(5770), + [anon_sym_GT] = ACTIONS(5770), + [anon_sym_GT_GT] = ACTIONS(4821), + [anon_sym_AMP_GT] = ACTIONS(5770), + [anon_sym_AMP_GT_GT] = ACTIONS(4821), + [anon_sym_LT_AMP] = ACTIONS(4821), + [anon_sym_GT_AMP] = ACTIONS(4821), + [anon_sym_LT_LT] = ACTIONS(5770), + [anon_sym_LT_LT_DASH] = ACTIONS(4821), + [anon_sym_LT_LT_LT] = ACTIONS(4821), + [sym__special_characters] = ACTIONS(5770), + [anon_sym_DQUOTE] = ACTIONS(4821), + [anon_sym_DOLLAR] = ACTIONS(5770), + [sym_raw_string] = ACTIONS(4821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4821), + [anon_sym_BQUOTE] = ACTIONS(4821), + [anon_sym_LT_LPAREN] = ACTIONS(4821), + [anon_sym_GT_LPAREN] = ACTIONS(4821), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4823), + }, + [2504] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6292), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2505] = { + [sym_file_descriptor] = ACTIONS(4827), + [sym__concat] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(5774), + [anon_sym_PIPE_AMP] = ACTIONS(4827), + [anon_sym_AMP_AMP] = ACTIONS(4827), + [anon_sym_PIPE_PIPE] = ACTIONS(4827), + [anon_sym_EQ_TILDE] = ACTIONS(5774), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(5774), + [anon_sym_GT_GT] = ACTIONS(4827), + [anon_sym_AMP_GT] = ACTIONS(5774), + [anon_sym_AMP_GT_GT] = ACTIONS(4827), + [anon_sym_LT_AMP] = ACTIONS(4827), + [anon_sym_GT_AMP] = ACTIONS(4827), + [anon_sym_LT_LT] = ACTIONS(5774), + [anon_sym_LT_LT_DASH] = ACTIONS(4827), + [anon_sym_LT_LT_LT] = ACTIONS(4827), + [sym__special_characters] = ACTIONS(5774), + [anon_sym_DQUOTE] = ACTIONS(4827), + [anon_sym_DOLLAR] = ACTIONS(5774), + [sym_raw_string] = ACTIONS(4827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4827), + [anon_sym_BQUOTE] = ACTIONS(4827), + [anon_sym_LT_LPAREN] = ACTIONS(4827), + [anon_sym_GT_LPAREN] = ACTIONS(4827), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4829), + }, + [2506] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6294), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2507] = { + [sym_file_descriptor] = ACTIONS(1858), + [sym__concat] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_PIPE_AMP] = ACTIONS(1858), + [anon_sym_AMP_AMP] = ACTIONS(1858), + [anon_sym_PIPE_PIPE] = ACTIONS(1858), + [anon_sym_LT] = ACTIONS(3008), + [anon_sym_GT] = ACTIONS(3008), + [anon_sym_GT_GT] = ACTIONS(1858), + [anon_sym_AMP_GT] = ACTIONS(3008), + [anon_sym_AMP_GT_GT] = ACTIONS(1858), + [anon_sym_LT_AMP] = ACTIONS(1858), + [anon_sym_GT_AMP] = ACTIONS(1858), + [anon_sym_LT_LT] = ACTIONS(3008), + [anon_sym_LT_LT_DASH] = ACTIONS(1858), + [anon_sym_LT_LT_LT] = ACTIONS(1858), + [anon_sym_BQUOTE] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + }, + [2508] = { + [aux_sym_concatenation_repeat1] = STATE(2508), + [sym_file_descriptor] = ACTIONS(1858), + [sym__concat] = ACTIONS(6296), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_PIPE_AMP] = ACTIONS(1858), + [anon_sym_AMP_AMP] = ACTIONS(1858), + [anon_sym_PIPE_PIPE] = ACTIONS(1858), + [anon_sym_LT] = ACTIONS(3008), + [anon_sym_GT] = ACTIONS(3008), + [anon_sym_GT_GT] = ACTIONS(1858), + [anon_sym_AMP_GT] = ACTIONS(3008), + [anon_sym_AMP_GT_GT] = ACTIONS(1858), + [anon_sym_LT_AMP] = ACTIONS(1858), + [anon_sym_GT_AMP] = ACTIONS(1858), + [anon_sym_LT_LT] = ACTIONS(3008), + [anon_sym_LT_LT_DASH] = ACTIONS(1858), + [anon_sym_LT_LT_LT] = ACTIONS(1858), + [anon_sym_BQUOTE] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + }, + [2509] = { + [sym_file_descriptor] = ACTIONS(1895), + [sym__concat] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_PIPE_AMP] = ACTIONS(1895), + [anon_sym_AMP_AMP] = ACTIONS(1895), + [anon_sym_PIPE_PIPE] = ACTIONS(1895), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_GT_GT] = ACTIONS(1895), + [anon_sym_AMP_GT] = ACTIONS(3013), + [anon_sym_AMP_GT_GT] = ACTIONS(1895), + [anon_sym_LT_AMP] = ACTIONS(1895), + [anon_sym_GT_AMP] = ACTIONS(1895), + [anon_sym_LT_LT] = ACTIONS(3013), + [anon_sym_LT_LT_DASH] = ACTIONS(1895), + [anon_sym_LT_LT_LT] = ACTIONS(1895), + [anon_sym_BQUOTE] = ACTIONS(1895), + [sym_comment] = ACTIONS(56), + }, + [2510] = { + [sym_concatenation] = STATE(3101), + [sym_string] = STATE(3100), + [sym_simple_expansion] = STATE(3100), + [sym_string_expansion] = STATE(3100), + [sym_expansion] = STATE(3100), + [sym_command_substitution] = STATE(3100), + [sym_process_substitution] = STATE(3100), + [anon_sym_RBRACE] = ACTIONS(6299), + [sym__special_characters] = ACTIONS(6301), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(6303), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6305), + }, + [2511] = { + [sym_file_descriptor] = ACTIONS(1940), + [sym__concat] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(3023), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(3023), + [anon_sym_GT] = ACTIONS(3023), + [anon_sym_GT_GT] = ACTIONS(1940), + [anon_sym_AMP_GT] = ACTIONS(3023), + [anon_sym_AMP_GT_GT] = ACTIONS(1940), + [anon_sym_LT_AMP] = ACTIONS(1940), + [anon_sym_GT_AMP] = ACTIONS(1940), + [anon_sym_LT_LT] = ACTIONS(3023), + [anon_sym_LT_LT_DASH] = ACTIONS(1940), + [anon_sym_LT_LT_LT] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [sym_comment] = ACTIONS(56), + }, + [2512] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6307), + }, + [2513] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6309), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2514] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(6311), + [sym_comment] = ACTIONS(56), + }, + [2515] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3107), + [anon_sym_RBRACE] = ACTIONS(6313), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(6315), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2516] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3110), + [anon_sym_RBRACE] = ACTIONS(6317), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(6319), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2517] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3112), + [anon_sym_RBRACE] = ACTIONS(6299), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(6321), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2518] = { + [sym_file_descriptor] = ACTIONS(1992), + [sym__concat] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(3041), + [anon_sym_PIPE_AMP] = ACTIONS(1992), + [anon_sym_AMP_AMP] = ACTIONS(1992), + [anon_sym_PIPE_PIPE] = ACTIONS(1992), + [anon_sym_LT] = ACTIONS(3041), + [anon_sym_GT] = ACTIONS(3041), + [anon_sym_GT_GT] = ACTIONS(1992), + [anon_sym_AMP_GT] = ACTIONS(3041), + [anon_sym_AMP_GT_GT] = ACTIONS(1992), + [anon_sym_LT_AMP] = ACTIONS(1992), + [anon_sym_GT_AMP] = ACTIONS(1992), + [anon_sym_LT_LT] = ACTIONS(3041), + [anon_sym_LT_LT_DASH] = ACTIONS(1992), + [anon_sym_LT_LT_LT] = ACTIONS(1992), + [anon_sym_BQUOTE] = ACTIONS(1992), + [sym_comment] = ACTIONS(56), + }, + [2519] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6323), + }, + [2520] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6325), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2521] = { + [sym_file_descriptor] = ACTIONS(2000), + [sym__concat] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(3047), + [anon_sym_PIPE_AMP] = ACTIONS(2000), + [anon_sym_AMP_AMP] = ACTIONS(2000), + [anon_sym_PIPE_PIPE] = ACTIONS(2000), + [anon_sym_LT] = ACTIONS(3047), + [anon_sym_GT] = ACTIONS(3047), + [anon_sym_GT_GT] = ACTIONS(2000), + [anon_sym_AMP_GT] = ACTIONS(3047), + [anon_sym_AMP_GT_GT] = ACTIONS(2000), + [anon_sym_LT_AMP] = ACTIONS(2000), + [anon_sym_GT_AMP] = ACTIONS(2000), + [anon_sym_LT_LT] = ACTIONS(3047), + [anon_sym_LT_LT_DASH] = ACTIONS(2000), + [anon_sym_LT_LT_LT] = ACTIONS(2000), + [anon_sym_BQUOTE] = ACTIONS(2000), + [sym_comment] = ACTIONS(56), + }, + [2522] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6327), + }, + [2523] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6299), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2524] = { + [sym_file_descriptor] = ACTIONS(2156), + [sym__concat] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_PIPE_AMP] = ACTIONS(2156), + [anon_sym_AMP_AMP] = ACTIONS(2156), + [anon_sym_PIPE_PIPE] = ACTIONS(2156), + [anon_sym_LT] = ACTIONS(3051), + [anon_sym_GT] = ACTIONS(3051), + [anon_sym_GT_GT] = ACTIONS(2156), + [anon_sym_AMP_GT] = ACTIONS(3051), + [anon_sym_AMP_GT_GT] = ACTIONS(2156), + [anon_sym_LT_AMP] = ACTIONS(2156), + [anon_sym_GT_AMP] = ACTIONS(2156), + [anon_sym_LT_LT] = ACTIONS(3051), + [anon_sym_LT_LT_DASH] = ACTIONS(2156), + [anon_sym_LT_LT_LT] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2156), + [sym_comment] = ACTIONS(56), + }, + [2525] = { + [sym_file_descriptor] = ACTIONS(2358), + [sym__concat] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(3053), + [anon_sym_PIPE_AMP] = ACTIONS(2358), + [anon_sym_AMP_AMP] = ACTIONS(2358), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [anon_sym_LT] = ACTIONS(3053), + [anon_sym_GT] = ACTIONS(3053), + [anon_sym_GT_GT] = ACTIONS(2358), + [anon_sym_AMP_GT] = ACTIONS(3053), + [anon_sym_AMP_GT_GT] = ACTIONS(2358), + [anon_sym_LT_AMP] = ACTIONS(2358), + [anon_sym_GT_AMP] = ACTIONS(2358), + [anon_sym_LT_LT] = ACTIONS(3053), + [anon_sym_LT_LT_DASH] = ACTIONS(2358), + [anon_sym_LT_LT_LT] = ACTIONS(2358), + [anon_sym_BQUOTE] = ACTIONS(2358), + [sym_comment] = ACTIONS(56), + }, + [2526] = { + [sym_file_descriptor] = ACTIONS(3235), + [sym__concat] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3237), + [anon_sym_SEMI_SEMI] = ACTIONS(3237), + [anon_sym_PIPE_AMP] = ACTIONS(3237), + [anon_sym_AMP_AMP] = ACTIONS(3237), + [anon_sym_PIPE_PIPE] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_GT] = ACTIONS(3237), + [anon_sym_GT_GT] = ACTIONS(3237), + [anon_sym_AMP_GT] = ACTIONS(3237), + [anon_sym_AMP_GT_GT] = ACTIONS(3237), + [anon_sym_LT_AMP] = ACTIONS(3237), + [anon_sym_GT_AMP] = ACTIONS(3237), + [anon_sym_LT_LT] = ACTIONS(3237), + [anon_sym_LT_LT_DASH] = ACTIONS(3237), + [anon_sym_LT_LT_LT] = ACTIONS(3237), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_LF] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), + }, + [2527] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6329), + [sym_comment] = ACTIONS(56), + }, + [2528] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6331), + [sym_comment] = ACTIONS(56), + }, + [2529] = { + [anon_sym_RBRACE] = ACTIONS(6331), + [sym_comment] = ACTIONS(56), + }, + [2530] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3119), + [anon_sym_RBRACE] = ACTIONS(6333), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2531] = { + [sym_file_descriptor] = ACTIONS(3297), + [sym__concat] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_SEMI_SEMI] = ACTIONS(3299), + [anon_sym_PIPE_AMP] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_GT] = ACTIONS(3299), + [anon_sym_GT_GT] = ACTIONS(3299), + [anon_sym_AMP_GT] = ACTIONS(3299), + [anon_sym_AMP_GT_GT] = ACTIONS(3299), + [anon_sym_LT_AMP] = ACTIONS(3299), + [anon_sym_GT_AMP] = ACTIONS(3299), + [anon_sym_LT_LT] = ACTIONS(3299), + [anon_sym_LT_LT_DASH] = ACTIONS(3299), + [anon_sym_LT_LT_LT] = ACTIONS(3299), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_LF] = ACTIONS(3299), + [anon_sym_AMP] = ACTIONS(3299), + }, + [2532] = { + [sym_concatenation] = STATE(3122), + [sym_string] = STATE(3121), + [sym_simple_expansion] = STATE(3121), + [sym_string_expansion] = STATE(3121), + [sym_expansion] = STATE(3121), + [sym_command_substitution] = STATE(3121), + [sym_process_substitution] = STATE(3121), + [anon_sym_RBRACE] = ACTIONS(6331), + [sym__special_characters] = ACTIONS(6335), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(6337), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6339), + }, + [2533] = { + [sym_file_descriptor] = ACTIONS(3342), + [sym__concat] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(3344), + [anon_sym_SEMI_SEMI] = ACTIONS(3344), + [anon_sym_PIPE_AMP] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_GT_GT] = ACTIONS(3344), + [anon_sym_AMP_GT] = ACTIONS(3344), + [anon_sym_AMP_GT_GT] = ACTIONS(3344), + [anon_sym_LT_AMP] = ACTIONS(3344), + [anon_sym_GT_AMP] = ACTIONS(3344), + [anon_sym_LT_LT] = ACTIONS(3344), + [anon_sym_LT_LT_DASH] = ACTIONS(3344), + [anon_sym_LT_LT_LT] = ACTIONS(3344), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_LF] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3344), + }, + [2534] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6341), + }, + [2535] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6343), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2536] = { + [sym_file_descriptor] = ACTIONS(3350), + [sym__concat] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3352), + [anon_sym_SEMI_SEMI] = ACTIONS(3352), + [anon_sym_PIPE_AMP] = ACTIONS(3352), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_PIPE_PIPE] = ACTIONS(3352), + [anon_sym_LT] = ACTIONS(3352), + [anon_sym_GT] = ACTIONS(3352), + [anon_sym_GT_GT] = ACTIONS(3352), + [anon_sym_AMP_GT] = ACTIONS(3352), + [anon_sym_AMP_GT_GT] = ACTIONS(3352), + [anon_sym_LT_AMP] = ACTIONS(3352), + [anon_sym_GT_AMP] = ACTIONS(3352), + [anon_sym_LT_LT] = ACTIONS(3352), + [anon_sym_LT_LT_DASH] = ACTIONS(3352), + [anon_sym_LT_LT_LT] = ACTIONS(3352), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3352), + [anon_sym_LF] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3352), + }, + [2537] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6345), + }, + [2538] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6347), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2539] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6349), + }, + [2540] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6331), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2541] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3129), + [anon_sym_RBRACE] = ACTIONS(6351), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2542] = { + [sym_file_descriptor] = ACTIONS(3362), + [sym__concat] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(3364), + [anon_sym_SEMI_SEMI] = ACTIONS(3364), + [anon_sym_PIPE_AMP] = ACTIONS(3364), + [anon_sym_AMP_AMP] = ACTIONS(3364), + [anon_sym_PIPE_PIPE] = ACTIONS(3364), + [anon_sym_LT] = ACTIONS(3364), + [anon_sym_GT] = ACTIONS(3364), + [anon_sym_GT_GT] = ACTIONS(3364), + [anon_sym_AMP_GT] = ACTIONS(3364), + [anon_sym_AMP_GT_GT] = ACTIONS(3364), + [anon_sym_LT_AMP] = ACTIONS(3364), + [anon_sym_GT_AMP] = ACTIONS(3364), + [anon_sym_LT_LT] = ACTIONS(3364), + [anon_sym_LT_LT_DASH] = ACTIONS(3364), + [anon_sym_LT_LT_LT] = ACTIONS(3364), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_LF] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3364), + }, + [2543] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3131), + [anon_sym_RBRACE] = ACTIONS(6353), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2544] = { + [sym_concatenation] = STATE(3135), + [sym_string] = STATE(3134), + [sym_simple_expansion] = STATE(3134), + [sym_string_expansion] = STATE(3134), + [sym_expansion] = STATE(3134), + [sym_command_substitution] = STATE(3134), + [sym_process_substitution] = STATE(3134), + [anon_sym_RBRACE] = ACTIONS(6355), + [sym__special_characters] = ACTIONS(6357), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(6359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6361), + }, + [2545] = { + [sym__heredoc_middle] = ACTIONS(1940), + [sym__heredoc_end] = ACTIONS(1940), + [anon_sym_DOLLAR] = ACTIONS(3023), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1940), + [sym_comment] = ACTIONS(56), + }, + [2546] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6363), + }, + [2547] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6365), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2548] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(6367), + [sym_comment] = ACTIONS(56), + }, + [2549] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3141), + [anon_sym_RBRACE] = ACTIONS(6369), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(6371), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2550] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3144), + [anon_sym_RBRACE] = ACTIONS(6373), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(6375), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2551] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3146), + [anon_sym_RBRACE] = ACTIONS(6355), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(6377), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2552] = { + [sym__heredoc_middle] = ACTIONS(1992), + [sym__heredoc_end] = ACTIONS(1992), + [anon_sym_DOLLAR] = ACTIONS(3041), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1992), + [sym_comment] = ACTIONS(56), + }, + [2553] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6379), + }, + [2554] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6381), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2555] = { + [sym__heredoc_middle] = ACTIONS(2000), + [sym__heredoc_end] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(3047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2000), + [sym_comment] = ACTIONS(56), + }, + [2556] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6383), + }, + [2557] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6355), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2558] = { + [sym__concat] = ACTIONS(4728), + [anon_sym_RBRACK] = ACTIONS(4728), + [sym_comment] = ACTIONS(56), + }, + [2559] = { + [sym__concat] = ACTIONS(4734), + [anon_sym_RBRACK] = ACTIONS(4734), + [sym_comment] = ACTIONS(56), + }, + [2560] = { + [sym__concat] = ACTIONS(4797), + [anon_sym_RBRACK] = ACTIONS(4797), + [sym_comment] = ACTIONS(56), + }, + [2561] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6385), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2562] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6387), + [sym_comment] = ACTIONS(56), + }, + [2563] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6389), + [sym_comment] = ACTIONS(56), + }, + [2564] = { + [anon_sym_RBRACE] = ACTIONS(6389), + [sym_comment] = ACTIONS(56), + }, + [2565] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3154), + [anon_sym_RBRACE] = ACTIONS(6391), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2566] = { + [sym__concat] = ACTIONS(4809), + [anon_sym_RBRACK] = ACTIONS(4809), + [sym_comment] = ACTIONS(56), + }, + [2567] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3156), + [anon_sym_RBRACE] = ACTIONS(6393), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2568] = { + [sym__concat] = ACTIONS(4815), + [anon_sym_RBRACK] = ACTIONS(4815), + [sym_comment] = ACTIONS(56), + }, + [2569] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3158), + [anon_sym_RBRACE] = ACTIONS(6395), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2570] = { + [sym__concat] = ACTIONS(4821), + [anon_sym_RBRACK] = ACTIONS(4821), + [sym_comment] = ACTIONS(56), + }, + [2571] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6397), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2572] = { + [sym__concat] = ACTIONS(4827), + [anon_sym_RBRACK] = ACTIONS(4827), + [sym_comment] = ACTIONS(56), + }, + [2573] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6399), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2574] = { + [sym__concat] = ACTIONS(3235), + [anon_sym_RPAREN] = ACTIONS(3235), + [sym__special_characters] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_DOLLAR] = ACTIONS(4540), + [sym_raw_string] = ACTIONS(3235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3235), + [anon_sym_BQUOTE] = ACTIONS(3235), + [anon_sym_LT_LPAREN] = ACTIONS(3235), + [anon_sym_GT_LPAREN] = ACTIONS(3235), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4540), + }, + [2575] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6401), + [sym_comment] = ACTIONS(56), + }, + [2576] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6403), + [sym_comment] = ACTIONS(56), + }, + [2577] = { + [anon_sym_RBRACE] = ACTIONS(6403), + [sym_comment] = ACTIONS(56), + }, + [2578] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3164), + [anon_sym_RBRACE] = ACTIONS(6405), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2579] = { + [sym__concat] = ACTIONS(3297), + [anon_sym_RPAREN] = ACTIONS(3297), + [sym__special_characters] = ACTIONS(4548), + [anon_sym_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(4548), + [sym_raw_string] = ACTIONS(3297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3297), + [anon_sym_BQUOTE] = ACTIONS(3297), + [anon_sym_LT_LPAREN] = ACTIONS(3297), + [anon_sym_GT_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4548), + }, + [2580] = { + [sym_concatenation] = STATE(3167), + [sym_string] = STATE(3166), + [sym_simple_expansion] = STATE(3166), + [sym_string_expansion] = STATE(3166), + [sym_expansion] = STATE(3166), + [sym_command_substitution] = STATE(3166), + [sym_process_substitution] = STATE(3166), + [anon_sym_RBRACE] = ACTIONS(6403), + [sym__special_characters] = ACTIONS(6407), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(6409), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6411), + }, + [2581] = { + [sym__concat] = ACTIONS(3342), + [anon_sym_RPAREN] = ACTIONS(3342), + [sym__special_characters] = ACTIONS(4556), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(4556), + [sym_raw_string] = ACTIONS(3342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3342), + [anon_sym_BQUOTE] = ACTIONS(3342), + [anon_sym_LT_LPAREN] = ACTIONS(3342), + [anon_sym_GT_LPAREN] = ACTIONS(3342), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4556), + }, + [2582] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6413), + }, + [2583] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6415), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2584] = { + [sym__concat] = ACTIONS(3350), + [anon_sym_RPAREN] = ACTIONS(3350), + [sym__special_characters] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_DOLLAR] = ACTIONS(4562), + [sym_raw_string] = ACTIONS(3350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3350), + [anon_sym_BQUOTE] = ACTIONS(3350), + [anon_sym_LT_LPAREN] = ACTIONS(3350), + [anon_sym_GT_LPAREN] = ACTIONS(3350), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4562), + }, + [2585] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6417), + }, + [2586] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6419), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2587] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6421), + }, + [2588] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6403), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2589] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3174), + [anon_sym_RBRACE] = ACTIONS(6423), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2590] = { + [sym__concat] = ACTIONS(3362), + [anon_sym_RPAREN] = ACTIONS(3362), + [sym__special_characters] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(3362), + [anon_sym_DOLLAR] = ACTIONS(4572), + [sym_raw_string] = ACTIONS(3362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3362), + [anon_sym_BQUOTE] = ACTIONS(3362), + [anon_sym_LT_LPAREN] = ACTIONS(3362), + [anon_sym_GT_LPAREN] = ACTIONS(3362), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4572), + }, + [2591] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3176), + [anon_sym_RBRACE] = ACTIONS(6425), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2592] = { + [sym_file_descriptor] = ACTIONS(4728), + [sym__concat] = ACTIONS(4728), + [sym_variable_name] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4730), + [anon_sym_SEMI_SEMI] = ACTIONS(4730), + [anon_sym_PIPE_AMP] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_GT] = ACTIONS(4730), + [anon_sym_GT_GT] = ACTIONS(4730), + [anon_sym_AMP_GT] = ACTIONS(4730), + [anon_sym_AMP_GT_GT] = ACTIONS(4730), + [anon_sym_LT_AMP] = ACTIONS(4730), + [anon_sym_GT_AMP] = ACTIONS(4730), + [sym__special_characters] = ACTIONS(4730), + [anon_sym_DQUOTE] = ACTIONS(4730), + [anon_sym_DOLLAR] = ACTIONS(4730), + [sym_raw_string] = ACTIONS(4730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), + [anon_sym_BQUOTE] = ACTIONS(4730), + [anon_sym_LT_LPAREN] = ACTIONS(4730), + [anon_sym_GT_LPAREN] = ACTIONS(4730), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_LF] = ACTIONS(4730), + [anon_sym_AMP] = ACTIONS(4730), + }, + [2593] = { + [sym_file_descriptor] = ACTIONS(4734), + [sym__concat] = ACTIONS(4734), + [sym_variable_name] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(4736), + [anon_sym_SEMI_SEMI] = ACTIONS(4736), + [anon_sym_PIPE_AMP] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_GT_GT] = ACTIONS(4736), + [anon_sym_AMP_GT] = ACTIONS(4736), + [anon_sym_AMP_GT_GT] = ACTIONS(4736), + [anon_sym_LT_AMP] = ACTIONS(4736), + [anon_sym_GT_AMP] = ACTIONS(4736), + [sym__special_characters] = ACTIONS(4736), + [anon_sym_DQUOTE] = ACTIONS(4736), + [anon_sym_DOLLAR] = ACTIONS(4736), + [sym_raw_string] = ACTIONS(4736), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), + [anon_sym_BQUOTE] = ACTIONS(4736), + [anon_sym_LT_LPAREN] = ACTIONS(4736), + [anon_sym_GT_LPAREN] = ACTIONS(4736), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_LF] = ACTIONS(4736), + [anon_sym_AMP] = ACTIONS(4736), + }, + [2594] = { + [sym_file_descriptor] = ACTIONS(4797), + [sym__concat] = ACTIONS(4797), + [sym_variable_name] = ACTIONS(4797), + [anon_sym_PIPE] = ACTIONS(4799), + [anon_sym_SEMI_SEMI] = ACTIONS(4799), + [anon_sym_PIPE_AMP] = ACTIONS(4799), + [anon_sym_AMP_AMP] = ACTIONS(4799), + [anon_sym_PIPE_PIPE] = ACTIONS(4799), + [anon_sym_LT] = ACTIONS(4799), + [anon_sym_GT] = ACTIONS(4799), + [anon_sym_GT_GT] = ACTIONS(4799), + [anon_sym_AMP_GT] = ACTIONS(4799), + [anon_sym_AMP_GT_GT] = ACTIONS(4799), + [anon_sym_LT_AMP] = ACTIONS(4799), + [anon_sym_GT_AMP] = ACTIONS(4799), + [sym__special_characters] = ACTIONS(4799), + [anon_sym_DQUOTE] = ACTIONS(4799), + [anon_sym_DOLLAR] = ACTIONS(4799), + [sym_raw_string] = ACTIONS(4799), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4799), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4799), + [anon_sym_BQUOTE] = ACTIONS(4799), + [anon_sym_LT_LPAREN] = ACTIONS(4799), + [anon_sym_GT_LPAREN] = ACTIONS(4799), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4799), + [anon_sym_SEMI] = ACTIONS(4799), + [anon_sym_LF] = ACTIONS(4799), + [anon_sym_AMP] = ACTIONS(4799), + }, + [2595] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6427), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2596] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6429), + [sym_comment] = ACTIONS(56), + }, + [2597] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6431), + [sym_comment] = ACTIONS(56), + }, + [2598] = { + [anon_sym_RBRACE] = ACTIONS(6431), + [sym_comment] = ACTIONS(56), + }, + [2599] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3181), + [anon_sym_RBRACE] = ACTIONS(6433), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2600] = { + [sym_file_descriptor] = ACTIONS(4809), + [sym__concat] = ACTIONS(4809), + [sym_variable_name] = ACTIONS(4809), + [anon_sym_PIPE] = ACTIONS(4811), + [anon_sym_SEMI_SEMI] = ACTIONS(4811), + [anon_sym_PIPE_AMP] = ACTIONS(4811), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4811), + [anon_sym_GT] = ACTIONS(4811), + [anon_sym_GT_GT] = ACTIONS(4811), + [anon_sym_AMP_GT] = ACTIONS(4811), + [anon_sym_AMP_GT_GT] = ACTIONS(4811), + [anon_sym_LT_AMP] = ACTIONS(4811), + [anon_sym_GT_AMP] = ACTIONS(4811), + [sym__special_characters] = ACTIONS(4811), + [anon_sym_DQUOTE] = ACTIONS(4811), + [anon_sym_DOLLAR] = ACTIONS(4811), + [sym_raw_string] = ACTIONS(4811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4811), + [anon_sym_BQUOTE] = ACTIONS(4811), + [anon_sym_LT_LPAREN] = ACTIONS(4811), + [anon_sym_GT_LPAREN] = ACTIONS(4811), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4811), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym_LF] = ACTIONS(4811), + [anon_sym_AMP] = ACTIONS(4811), + }, + [2601] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3183), + [anon_sym_RBRACE] = ACTIONS(6435), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2602] = { + [sym_file_descriptor] = ACTIONS(4815), + [sym__concat] = ACTIONS(4815), + [sym_variable_name] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(4817), + [anon_sym_SEMI_SEMI] = ACTIONS(4817), + [anon_sym_PIPE_AMP] = ACTIONS(4817), + [anon_sym_AMP_AMP] = ACTIONS(4817), + [anon_sym_PIPE_PIPE] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4817), + [anon_sym_GT] = ACTIONS(4817), + [anon_sym_GT_GT] = ACTIONS(4817), + [anon_sym_AMP_GT] = ACTIONS(4817), + [anon_sym_AMP_GT_GT] = ACTIONS(4817), + [anon_sym_LT_AMP] = ACTIONS(4817), + [anon_sym_GT_AMP] = ACTIONS(4817), + [sym__special_characters] = ACTIONS(4817), + [anon_sym_DQUOTE] = ACTIONS(4817), + [anon_sym_DOLLAR] = ACTIONS(4817), + [sym_raw_string] = ACTIONS(4817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4817), + [anon_sym_BQUOTE] = ACTIONS(4817), + [anon_sym_LT_LPAREN] = ACTIONS(4817), + [anon_sym_GT_LPAREN] = ACTIONS(4817), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4817), + [anon_sym_SEMI] = ACTIONS(4817), + [anon_sym_LF] = ACTIONS(4817), + [anon_sym_AMP] = ACTIONS(4817), + }, + [2603] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3185), + [anon_sym_RBRACE] = ACTIONS(6437), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2604] = { + [sym_file_descriptor] = ACTIONS(4821), + [sym__concat] = ACTIONS(4821), + [sym_variable_name] = ACTIONS(4821), + [anon_sym_PIPE] = ACTIONS(4823), + [anon_sym_SEMI_SEMI] = ACTIONS(4823), + [anon_sym_PIPE_AMP] = ACTIONS(4823), + [anon_sym_AMP_AMP] = ACTIONS(4823), + [anon_sym_PIPE_PIPE] = ACTIONS(4823), + [anon_sym_LT] = ACTIONS(4823), + [anon_sym_GT] = ACTIONS(4823), + [anon_sym_GT_GT] = ACTIONS(4823), + [anon_sym_AMP_GT] = ACTIONS(4823), + [anon_sym_AMP_GT_GT] = ACTIONS(4823), + [anon_sym_LT_AMP] = ACTIONS(4823), + [anon_sym_GT_AMP] = ACTIONS(4823), + [sym__special_characters] = ACTIONS(4823), + [anon_sym_DQUOTE] = ACTIONS(4823), + [anon_sym_DOLLAR] = ACTIONS(4823), + [sym_raw_string] = ACTIONS(4823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4823), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4823), + [anon_sym_BQUOTE] = ACTIONS(4823), + [anon_sym_LT_LPAREN] = ACTIONS(4823), + [anon_sym_GT_LPAREN] = ACTIONS(4823), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4823), + [anon_sym_SEMI] = ACTIONS(4823), + [anon_sym_LF] = ACTIONS(4823), + [anon_sym_AMP] = ACTIONS(4823), + }, + [2605] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6439), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2606] = { + [sym_file_descriptor] = ACTIONS(4827), + [sym__concat] = ACTIONS(4827), + [sym_variable_name] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_SEMI_SEMI] = ACTIONS(4829), + [anon_sym_PIPE_AMP] = ACTIONS(4829), + [anon_sym_AMP_AMP] = ACTIONS(4829), + [anon_sym_PIPE_PIPE] = ACTIONS(4829), + [anon_sym_LT] = ACTIONS(4829), + [anon_sym_GT] = ACTIONS(4829), + [anon_sym_GT_GT] = ACTIONS(4829), + [anon_sym_AMP_GT] = ACTIONS(4829), + [anon_sym_AMP_GT_GT] = ACTIONS(4829), + [anon_sym_LT_AMP] = ACTIONS(4829), + [anon_sym_GT_AMP] = ACTIONS(4829), + [sym__special_characters] = ACTIONS(4829), + [anon_sym_DQUOTE] = ACTIONS(4829), + [anon_sym_DOLLAR] = ACTIONS(4829), + [sym_raw_string] = ACTIONS(4829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4829), + [anon_sym_BQUOTE] = ACTIONS(4829), + [anon_sym_LT_LPAREN] = ACTIONS(4829), + [anon_sym_GT_LPAREN] = ACTIONS(4829), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4829), + [anon_sym_SEMI] = ACTIONS(4829), + [anon_sym_LF] = ACTIONS(4829), + [anon_sym_AMP] = ACTIONS(4829), + }, + [2607] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6441), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2608] = { + [sym__concat] = ACTIONS(3235), + [anon_sym_SEMI_SEMI] = ACTIONS(3237), + [sym__special_characters] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3237), + [anon_sym_DOLLAR] = ACTIONS(3237), + [sym_raw_string] = ACTIONS(3237), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3237), + [anon_sym_BQUOTE] = ACTIONS(3237), + [anon_sym_LT_LPAREN] = ACTIONS(3237), + [anon_sym_GT_LPAREN] = ACTIONS(3237), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_LF] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), + }, + [2609] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6443), + [sym_comment] = ACTIONS(56), + }, + [2610] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6445), + [sym_comment] = ACTIONS(56), + }, + [2611] = { + [anon_sym_RBRACE] = ACTIONS(6445), + [sym_comment] = ACTIONS(56), + }, + [2612] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3191), + [anon_sym_RBRACE] = ACTIONS(6447), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2613] = { + [sym__concat] = ACTIONS(3297), + [anon_sym_SEMI_SEMI] = ACTIONS(3299), + [sym__special_characters] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3299), + [sym_raw_string] = ACTIONS(3299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3299), + [anon_sym_BQUOTE] = ACTIONS(3299), + [anon_sym_LT_LPAREN] = ACTIONS(3299), + [anon_sym_GT_LPAREN] = ACTIONS(3299), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_LF] = ACTIONS(3299), + [anon_sym_AMP] = ACTIONS(3299), + }, + [2614] = { + [sym_concatenation] = STATE(3194), + [sym_string] = STATE(3193), + [sym_simple_expansion] = STATE(3193), + [sym_string_expansion] = STATE(3193), + [sym_expansion] = STATE(3193), + [sym_command_substitution] = STATE(3193), + [sym_process_substitution] = STATE(3193), + [anon_sym_RBRACE] = ACTIONS(6445), + [sym__special_characters] = ACTIONS(6449), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(6451), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6453), + }, + [2615] = { + [sym__concat] = ACTIONS(3342), + [anon_sym_SEMI_SEMI] = ACTIONS(3344), + [sym__special_characters] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_DOLLAR] = ACTIONS(3344), + [sym_raw_string] = ACTIONS(3344), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3344), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3344), + [anon_sym_BQUOTE] = ACTIONS(3344), + [anon_sym_LT_LPAREN] = ACTIONS(3344), + [anon_sym_GT_LPAREN] = ACTIONS(3344), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_LF] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3344), + }, + [2616] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6455), + }, + [2617] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6457), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2618] = { + [sym__concat] = ACTIONS(3350), + [anon_sym_SEMI_SEMI] = ACTIONS(3352), + [sym__special_characters] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [anon_sym_DOLLAR] = ACTIONS(3352), + [sym_raw_string] = ACTIONS(3352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3352), + [anon_sym_BQUOTE] = ACTIONS(3352), + [anon_sym_LT_LPAREN] = ACTIONS(3352), + [anon_sym_GT_LPAREN] = ACTIONS(3352), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3352), + [anon_sym_LF] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3352), + }, + [2619] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6459), + }, + [2620] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6461), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2621] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6463), + }, + [2622] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6445), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2623] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3201), + [anon_sym_RBRACE] = ACTIONS(6465), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2624] = { + [sym__concat] = ACTIONS(3362), + [anon_sym_SEMI_SEMI] = ACTIONS(3364), + [sym__special_characters] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [anon_sym_DOLLAR] = ACTIONS(3364), + [sym_raw_string] = ACTIONS(3364), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3364), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3364), + [anon_sym_BQUOTE] = ACTIONS(3364), + [anon_sym_LT_LPAREN] = ACTIONS(3364), + [anon_sym_GT_LPAREN] = ACTIONS(3364), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_LF] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3364), + }, + [2625] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3203), + [anon_sym_RBRACE] = ACTIONS(6467), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2626] = { + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_RPAREN] = ACTIONS(2627), + [anon_sym_SEMI_SEMI] = ACTIONS(2627), + [anon_sym_PIPE_AMP] = ACTIONS(2627), + [anon_sym_AMP_AMP] = ACTIONS(2627), + [anon_sym_PIPE_PIPE] = ACTIONS(2627), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2627), + [anon_sym_LF] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2627), + }, + [2627] = { + [sym__terminated_statement] = STATE(691), + [sym_for_statement] = STATE(692), + [sym_while_statement] = STATE(692), + [sym_if_statement] = STATE(692), + [sym_case_statement] = STATE(692), + [sym_function_definition] = STATE(692), + [sym_subshell] = STATE(692), + [sym_pipeline] = STATE(692), + [sym_list] = STATE(692), + [sym_command] = STATE(692), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(692), + [sym_variable_assignment] = STATE(693), + [sym_declaration_command] = STATE(692), + [sym_unset_command] = STATE(692), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1311), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_done] = ACTIONS(6469), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [2628] = { + [sym__terminated_statement] = STATE(699), + [sym_for_statement] = STATE(700), + [sym_while_statement] = STATE(700), + [sym_if_statement] = STATE(700), + [sym_case_statement] = STATE(700), + [sym_function_definition] = STATE(700), + [sym_subshell] = STATE(700), + [sym_pipeline] = STATE(700), + [sym_list] = STATE(700), + [sym_command] = STATE(700), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(700), + [sym_variable_assignment] = STATE(703), + [sym_declaration_command] = STATE(700), + [sym_unset_command] = STATE(700), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1320), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_fi] = ACTIONS(6471), + [anon_sym_elif] = ACTIONS(6471), + [anon_sym_else] = ACTIONS(6471), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [2629] = { + [anon_sym_PIPE] = ACTIONS(6473), + [anon_sym_RPAREN] = ACTIONS(6473), + [anon_sym_SEMI_SEMI] = ACTIONS(6473), + [anon_sym_PIPE_AMP] = ACTIONS(6473), + [anon_sym_AMP_AMP] = ACTIONS(6473), + [anon_sym_PIPE_PIPE] = ACTIONS(6473), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6473), + [anon_sym_LF] = ACTIONS(6473), + [anon_sym_AMP] = ACTIONS(6473), + }, + [2630] = { + [sym__concat] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1858), + [anon_sym_RPAREN] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + }, + [2631] = { + [aux_sym_concatenation_repeat1] = STATE(1990), + [sym__concat] = ACTIONS(4260), + [anon_sym_PIPE] = ACTIONS(6475), + [anon_sym_RPAREN] = ACTIONS(6475), + [sym_comment] = ACTIONS(56), + }, + [2632] = { + [aux_sym_concatenation_repeat1] = STATE(1990), + [sym__concat] = ACTIONS(4260), + [anon_sym_PIPE] = ACTIONS(6477), + [anon_sym_RPAREN] = ACTIONS(6477), + [sym_comment] = ACTIONS(56), + }, + [2633] = { + [anon_sym_PIPE] = ACTIONS(6477), + [anon_sym_RPAREN] = ACTIONS(6477), + [sym_comment] = ACTIONS(56), + }, + [2634] = { + [anon_sym_esac] = ACTIONS(6479), + [sym__special_characters] = ACTIONS(6481), + [anon_sym_DQUOTE] = ACTIONS(6483), + [anon_sym_DOLLAR] = ACTIONS(6481), + [sym_raw_string] = ACTIONS(6483), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6483), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6483), + [anon_sym_BQUOTE] = ACTIONS(6483), + [anon_sym_LT_LPAREN] = ACTIONS(6483), + [anon_sym_GT_LPAREN] = ACTIONS(6483), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6485), + }, + [2635] = { + [sym_file_descriptor] = ACTIONS(338), + [sym_variable_name] = ACTIONS(338), + [anon_sym_for] = ACTIONS(340), + [anon_sym_while] = ACTIONS(340), + [anon_sym_if] = ACTIONS(340), + [anon_sym_case] = ACTIONS(340), + [anon_sym_esac] = ACTIONS(340), + [anon_sym_SEMI_SEMI] = ACTIONS(338), + [anon_sym_function] = ACTIONS(340), + [anon_sym_LPAREN] = ACTIONS(338), + [anon_sym_LBRACK] = ACTIONS(340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(338), + [anon_sym_declare] = ACTIONS(340), + [anon_sym_typeset] = ACTIONS(340), + [anon_sym_export] = ACTIONS(340), + [anon_sym_readonly] = ACTIONS(340), + [anon_sym_local] = ACTIONS(340), + [anon_sym_unset] = ACTIONS(340), + [anon_sym_unsetenv] = ACTIONS(340), + [anon_sym_LT] = ACTIONS(340), + [anon_sym_GT] = ACTIONS(340), + [anon_sym_GT_GT] = ACTIONS(338), + [anon_sym_AMP_GT] = ACTIONS(340), + [anon_sym_AMP_GT_GT] = ACTIONS(338), + [anon_sym_LT_AMP] = ACTIONS(338), + [anon_sym_GT_AMP] = ACTIONS(338), + [sym__special_characters] = ACTIONS(342), + [anon_sym_DQUOTE] = ACTIONS(338), + [anon_sym_DOLLAR] = ACTIONS(340), + [sym_raw_string] = ACTIONS(338), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(338), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(338), + [anon_sym_BQUOTE] = ACTIONS(338), + [anon_sym_LT_LPAREN] = ACTIONS(338), + [anon_sym_GT_LPAREN] = ACTIONS(338), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(342), + }, + [2636] = { + [anon_sym_PIPE] = ACTIONS(344), + [anon_sym_SEMI_SEMI] = ACTIONS(6487), + [anon_sym_PIPE_AMP] = ACTIONS(344), + [anon_sym_AMP_AMP] = ACTIONS(348), + [anon_sym_PIPE_PIPE] = ACTIONS(348), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6487), + [anon_sym_LF] = ACTIONS(6487), + [anon_sym_AMP] = ACTIONS(6487), + }, + [2637] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(344), + [anon_sym_SEMI_SEMI] = ACTIONS(6487), + [anon_sym_PIPE_AMP] = ACTIONS(344), + [anon_sym_AMP_AMP] = ACTIONS(348), + [anon_sym_PIPE_PIPE] = ACTIONS(348), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT] = ACTIONS(380), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(380), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(380), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(380), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(380), + [anon_sym_SEMI] = ACTIONS(6487), + [anon_sym_LF] = ACTIONS(6487), + [anon_sym_AMP] = ACTIONS(6487), + }, + [2638] = { + [sym__terminated_statement] = STATE(2635), + [sym_for_statement] = STATE(2636), + [sym_while_statement] = STATE(2636), + [sym_if_statement] = STATE(2636), + [sym_case_statement] = STATE(2636), + [sym_function_definition] = STATE(2636), + [sym_subshell] = STATE(2636), + [sym_pipeline] = STATE(2636), + [sym_list] = STATE(2636), + [sym_command] = STATE(2636), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(2636), + [sym_variable_assignment] = STATE(2637), + [sym_declaration_command] = STATE(2636), + [sym_unset_command] = STATE(2636), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(3207), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_esac] = ACTIONS(6479), + [anon_sym_SEMI_SEMI] = ACTIONS(6489), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [2639] = { + [sym__terminated_statement] = STATE(2635), + [sym_for_statement] = STATE(2636), + [sym_while_statement] = STATE(2636), + [sym_if_statement] = STATE(2636), + [sym_case_statement] = STATE(2636), + [sym_function_definition] = STATE(2636), + [sym_subshell] = STATE(2636), + [sym_pipeline] = STATE(2636), + [sym_list] = STATE(2636), + [sym_command] = STATE(2636), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(2636), + [sym_variable_assignment] = STATE(2637), + [sym_declaration_command] = STATE(2636), + [sym_unset_command] = STATE(2636), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(3208), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_esac] = ACTIONS(6479), + [anon_sym_SEMI_SEMI] = ACTIONS(6489), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [2640] = { + [aux_sym_case_item_repeat1] = STATE(2640), + [anon_sym_PIPE] = ACTIONS(6491), + [anon_sym_RPAREN] = ACTIONS(6477), + [sym_comment] = ACTIONS(56), + }, + [2641] = { + [aux_sym_concatenation_repeat1] = STATE(2641), + [sym__concat] = ACTIONS(6494), + [anon_sym_PIPE] = ACTIONS(1858), + [anon_sym_RPAREN] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + }, + [2642] = { + [sym__concat] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1895), + [anon_sym_RPAREN] = ACTIONS(1895), + [sym_comment] = ACTIONS(56), + }, + [2643] = { + [anon_sym_esac] = ACTIONS(6497), + [sym__special_characters] = ACTIONS(6499), + [anon_sym_DQUOTE] = ACTIONS(6501), + [anon_sym_DOLLAR] = ACTIONS(6499), + [sym_raw_string] = ACTIONS(6501), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6501), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6501), + [anon_sym_BQUOTE] = ACTIONS(6501), + [anon_sym_LT_LPAREN] = ACTIONS(6501), + [anon_sym_GT_LPAREN] = ACTIONS(6501), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6503), + }, + [2644] = { + [sym__terminated_statement] = STATE(2635), + [sym_for_statement] = STATE(2636), + [sym_while_statement] = STATE(2636), + [sym_if_statement] = STATE(2636), + [sym_case_statement] = STATE(2636), + [sym_function_definition] = STATE(2636), + [sym_subshell] = STATE(2636), + [sym_pipeline] = STATE(2636), + [sym_list] = STATE(2636), + [sym_command] = STATE(2636), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(2636), + [sym_variable_assignment] = STATE(2637), + [sym_declaration_command] = STATE(2636), + [sym_unset_command] = STATE(2636), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(3207), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_esac] = ACTIONS(6497), + [anon_sym_SEMI_SEMI] = ACTIONS(6505), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [2645] = { + [sym__terminated_statement] = STATE(2635), + [sym_for_statement] = STATE(2636), + [sym_while_statement] = STATE(2636), + [sym_if_statement] = STATE(2636), + [sym_case_statement] = STATE(2636), + [sym_function_definition] = STATE(2636), + [sym_subshell] = STATE(2636), + [sym_pipeline] = STATE(2636), + [sym_list] = STATE(2636), + [sym_command] = STATE(2636), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(2636), + [sym_variable_assignment] = STATE(2637), + [sym_declaration_command] = STATE(2636), + [sym_unset_command] = STATE(2636), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(3210), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_esac] = ACTIONS(6497), + [anon_sym_SEMI_SEMI] = ACTIONS(6505), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [2646] = { + [sym_concatenation] = STATE(3214), + [sym_string] = STATE(3213), + [sym_simple_expansion] = STATE(3213), + [sym_string_expansion] = STATE(3213), + [sym_expansion] = STATE(3213), + [sym_command_substitution] = STATE(3213), + [sym_process_substitution] = STATE(3213), + [anon_sym_RBRACE] = ACTIONS(6507), + [sym__special_characters] = ACTIONS(6509), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(6511), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6513), + }, + [2647] = { + [sym__concat] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1940), + [anon_sym_RPAREN] = ACTIONS(1940), + [sym_comment] = ACTIONS(56), + }, + [2648] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6515), + }, + [2649] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6517), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2650] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(6519), + [sym_comment] = ACTIONS(56), + }, + [2651] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3220), + [anon_sym_RBRACE] = ACTIONS(6521), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(6523), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2652] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3223), + [anon_sym_RBRACE] = ACTIONS(6525), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(6527), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2653] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3225), + [anon_sym_RBRACE] = ACTIONS(6507), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(6529), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2654] = { + [sym__concat] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(1992), + [anon_sym_RPAREN] = ACTIONS(1992), + [sym_comment] = ACTIONS(56), + }, + [2655] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6531), + }, + [2656] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6533), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2657] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2000), + [anon_sym_RPAREN] = ACTIONS(2000), + [sym_comment] = ACTIONS(56), + }, + [2658] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6535), + }, + [2659] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6507), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2660] = { + [sym__concat] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2156), + [anon_sym_RPAREN] = ACTIONS(2156), + [sym_comment] = ACTIONS(56), + }, + [2661] = { + [sym__concat] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2358), + [anon_sym_RPAREN] = ACTIONS(2358), + [sym_comment] = ACTIONS(56), + }, + [2662] = { + [anon_sym_PIPE] = ACTIONS(6537), + [anon_sym_RPAREN] = ACTIONS(6537), + [anon_sym_SEMI_SEMI] = ACTIONS(6537), + [anon_sym_PIPE_AMP] = ACTIONS(6537), + [anon_sym_AMP_AMP] = ACTIONS(6537), + [anon_sym_PIPE_PIPE] = ACTIONS(6537), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6537), + [anon_sym_LF] = ACTIONS(6537), + [anon_sym_AMP] = ACTIONS(6537), + }, + [2663] = { + [aux_sym_case_item_repeat1] = STATE(3230), + [aux_sym_concatenation_repeat1] = STATE(1990), + [sym__concat] = ACTIONS(4260), + [anon_sym_PIPE] = ACTIONS(4262), + [anon_sym_RPAREN] = ACTIONS(6539), + [sym_comment] = ACTIONS(56), + }, + [2664] = { + [aux_sym_case_item_repeat1] = STATE(3232), + [aux_sym_concatenation_repeat1] = STATE(1990), + [sym__concat] = ACTIONS(4260), + [anon_sym_PIPE] = ACTIONS(4262), + [anon_sym_RPAREN] = ACTIONS(6541), + [sym_comment] = ACTIONS(56), + }, + [2665] = { + [aux_sym_case_item_repeat1] = STATE(3232), + [anon_sym_PIPE] = ACTIONS(4262), + [anon_sym_RPAREN] = ACTIONS(6541), + [sym_comment] = ACTIONS(56), + }, + [2666] = { + [anon_sym_esac] = ACTIONS(6543), + [sym_comment] = ACTIONS(56), + }, + [2667] = { + [anon_sym_PIPE] = ACTIONS(6545), + [anon_sym_RPAREN] = ACTIONS(6545), + [anon_sym_SEMI_SEMI] = ACTIONS(6545), + [anon_sym_PIPE_AMP] = ACTIONS(6545), + [anon_sym_AMP_AMP] = ACTIONS(6545), + [anon_sym_PIPE_PIPE] = ACTIONS(6545), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6545), + [anon_sym_LF] = ACTIONS(6545), + [anon_sym_AMP] = ACTIONS(6545), + }, + [2668] = { + [anon_sym_esac] = ACTIONS(6547), + [sym_comment] = ACTIONS(56), + }, + [2669] = { + [sym__concat] = ACTIONS(5929), + [anon_sym_in] = ACTIONS(5931), + [anon_sym_SEMI_SEMI] = ACTIONS(5931), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5931), + [anon_sym_LF] = ACTIONS(5931), + [anon_sym_AMP] = ACTIONS(5931), + }, + [2670] = { + [sym__concat] = ACTIONS(5933), + [anon_sym_in] = ACTIONS(5935), + [anon_sym_SEMI_SEMI] = ACTIONS(5935), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5935), + [anon_sym_LF] = ACTIONS(5935), + [anon_sym_AMP] = ACTIONS(5935), + }, + [2671] = { + [sym__concat] = ACTIONS(5937), + [anon_sym_in] = ACTIONS(5939), + [anon_sym_SEMI_SEMI] = ACTIONS(5939), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5939), + [anon_sym_LF] = ACTIONS(5939), + [anon_sym_AMP] = ACTIONS(5939), + }, + [2672] = { + [sym__concat] = ACTIONS(5941), + [anon_sym_in] = ACTIONS(5943), + [anon_sym_SEMI_SEMI] = ACTIONS(5943), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5943), + [anon_sym_LF] = ACTIONS(5943), + [anon_sym_AMP] = ACTIONS(5943), + }, + [2673] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6549), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2674] = { + [sym__concat] = ACTIONS(5947), + [anon_sym_in] = ACTIONS(5949), + [anon_sym_SEMI_SEMI] = ACTIONS(5949), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5949), + [anon_sym_LF] = ACTIONS(5949), + [anon_sym_AMP] = ACTIONS(5949), + }, + [2675] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6551), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2676] = { + [sym__concat] = ACTIONS(5953), + [anon_sym_in] = ACTIONS(5955), + [anon_sym_SEMI_SEMI] = ACTIONS(5955), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5955), + [anon_sym_LF] = ACTIONS(5955), + [anon_sym_AMP] = ACTIONS(5955), + }, + [2677] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6553), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2678] = { + [sym__concat] = ACTIONS(5959), + [anon_sym_in] = ACTIONS(5961), + [anon_sym_SEMI_SEMI] = ACTIONS(5961), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5961), + [anon_sym_LF] = ACTIONS(5961), + [anon_sym_AMP] = ACTIONS(5961), + }, + [2679] = { + [sym__concat] = ACTIONS(5963), + [anon_sym_in] = ACTIONS(5965), + [anon_sym_SEMI_SEMI] = ACTIONS(5965), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5965), + [anon_sym_LF] = ACTIONS(5965), + [anon_sym_AMP] = ACTIONS(5965), + }, + [2680] = { + [sym__concat] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [anon_sym_PIPE_AMP] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1860), + [anon_sym_PIPE_PIPE] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + }, + [2681] = { + [aux_sym_concatenation_repeat1] = STATE(2681), + [sym__concat] = ACTIONS(6555), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [anon_sym_PIPE_AMP] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1860), + [anon_sym_PIPE_PIPE] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + }, + [2682] = { + [sym__concat] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_SEMI_SEMI] = ACTIONS(1897), + [anon_sym_PIPE_AMP] = ACTIONS(1897), + [anon_sym_AMP_AMP] = ACTIONS(1897), + [anon_sym_PIPE_PIPE] = ACTIONS(1897), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_LF] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), + }, + [2683] = { + [sym_concatenation] = STATE(3241), + [sym_string] = STATE(3240), + [sym_simple_expansion] = STATE(3240), + [sym_string_expansion] = STATE(3240), + [sym_expansion] = STATE(3240), + [sym_command_substitution] = STATE(3240), + [sym_process_substitution] = STATE(3240), + [anon_sym_RBRACE] = ACTIONS(6558), + [sym__special_characters] = ACTIONS(6560), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(6562), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6564), + }, + [2684] = { + [sym__concat] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1942), + [anon_sym_PIPE_AMP] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1942), + [anon_sym_PIPE_PIPE] = ACTIONS(1942), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + }, + [2685] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6566), + }, + [2686] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6568), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2687] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(6570), + [sym_comment] = ACTIONS(56), + }, + [2688] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3247), + [anon_sym_RBRACE] = ACTIONS(6572), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(6574), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2689] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3250), + [anon_sym_RBRACE] = ACTIONS(6576), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(6578), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2690] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3252), + [anon_sym_RBRACE] = ACTIONS(6558), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(6580), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2691] = { + [sym__concat] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(1994), + [anon_sym_SEMI_SEMI] = ACTIONS(1994), + [anon_sym_PIPE_AMP] = ACTIONS(1994), + [anon_sym_AMP_AMP] = ACTIONS(1994), + [anon_sym_PIPE_PIPE] = ACTIONS(1994), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_LF] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + }, + [2692] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6582), + }, + [2693] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6584), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2694] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [anon_sym_PIPE_AMP] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_PIPE_PIPE] = ACTIONS(2002), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2002), + }, + [2695] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6586), + }, + [2696] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6558), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2697] = { + [sym__concat] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_SEMI_SEMI] = ACTIONS(2158), + [anon_sym_PIPE_AMP] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_PIPE_PIPE] = ACTIONS(2158), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym_LF] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2158), + }, + [2698] = { + [sym__concat] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_SEMI_SEMI] = ACTIONS(2360), + [anon_sym_PIPE_AMP] = ACTIONS(2360), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + }, + [2699] = { + [sym_file_descriptor] = ACTIONS(3235), + [sym__concat] = ACTIONS(3235), + [sym_variable_name] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3237), + [anon_sym_RPAREN] = ACTIONS(3237), + [anon_sym_SEMI_SEMI] = ACTIONS(3237), + [anon_sym_PIPE_AMP] = ACTIONS(3237), + [anon_sym_AMP_AMP] = ACTIONS(3237), + [anon_sym_PIPE_PIPE] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_GT] = ACTIONS(3237), + [anon_sym_GT_GT] = ACTIONS(3237), + [anon_sym_AMP_GT] = ACTIONS(3237), + [anon_sym_AMP_GT_GT] = ACTIONS(3237), + [anon_sym_LT_AMP] = ACTIONS(3237), + [anon_sym_GT_AMP] = ACTIONS(3237), + [sym__special_characters] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3237), + [anon_sym_DOLLAR] = ACTIONS(3237), + [sym_raw_string] = ACTIONS(3237), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3237), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3237), + [anon_sym_BQUOTE] = ACTIONS(3237), + [anon_sym_LT_LPAREN] = ACTIONS(3237), + [anon_sym_GT_LPAREN] = ACTIONS(3237), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_LF] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), + }, + [2700] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6588), + [sym_comment] = ACTIONS(56), + }, + [2701] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6590), + [sym_comment] = ACTIONS(56), + }, + [2702] = { + [anon_sym_RBRACE] = ACTIONS(6590), + [sym_comment] = ACTIONS(56), + }, + [2703] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3259), + [anon_sym_RBRACE] = ACTIONS(6592), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2704] = { + [sym_file_descriptor] = ACTIONS(3297), + [sym__concat] = ACTIONS(3297), + [sym_variable_name] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_RPAREN] = ACTIONS(3299), + [anon_sym_SEMI_SEMI] = ACTIONS(3299), + [anon_sym_PIPE_AMP] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_GT] = ACTIONS(3299), + [anon_sym_GT_GT] = ACTIONS(3299), + [anon_sym_AMP_GT] = ACTIONS(3299), + [anon_sym_AMP_GT_GT] = ACTIONS(3299), + [anon_sym_LT_AMP] = ACTIONS(3299), + [anon_sym_GT_AMP] = ACTIONS(3299), + [sym__special_characters] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_DOLLAR] = ACTIONS(3299), + [sym_raw_string] = ACTIONS(3299), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3299), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3299), + [anon_sym_BQUOTE] = ACTIONS(3299), + [anon_sym_LT_LPAREN] = ACTIONS(3299), + [anon_sym_GT_LPAREN] = ACTIONS(3299), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_LF] = ACTIONS(3299), + [anon_sym_AMP] = ACTIONS(3299), + }, + [2705] = { + [sym_concatenation] = STATE(3262), + [sym_string] = STATE(3261), + [sym_simple_expansion] = STATE(3261), + [sym_string_expansion] = STATE(3261), + [sym_expansion] = STATE(3261), + [sym_command_substitution] = STATE(3261), + [sym_process_substitution] = STATE(3261), + [anon_sym_RBRACE] = ACTIONS(6590), + [sym__special_characters] = ACTIONS(6594), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(6596), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6598), + }, + [2706] = { + [sym_file_descriptor] = ACTIONS(3342), + [sym__concat] = ACTIONS(3342), + [sym_variable_name] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(3344), + [anon_sym_RPAREN] = ACTIONS(3344), + [anon_sym_SEMI_SEMI] = ACTIONS(3344), + [anon_sym_PIPE_AMP] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_GT_GT] = ACTIONS(3344), + [anon_sym_AMP_GT] = ACTIONS(3344), + [anon_sym_AMP_GT_GT] = ACTIONS(3344), + [anon_sym_LT_AMP] = ACTIONS(3344), + [anon_sym_GT_AMP] = ACTIONS(3344), + [sym__special_characters] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_DOLLAR] = ACTIONS(3344), + [sym_raw_string] = ACTIONS(3344), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3344), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3344), + [anon_sym_BQUOTE] = ACTIONS(3344), + [anon_sym_LT_LPAREN] = ACTIONS(3344), + [anon_sym_GT_LPAREN] = ACTIONS(3344), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_LF] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3344), + }, + [2707] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6600), + }, + [2708] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6602), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2709] = { + [sym_file_descriptor] = ACTIONS(3350), + [sym__concat] = ACTIONS(3350), + [sym_variable_name] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3352), + [anon_sym_RPAREN] = ACTIONS(3352), + [anon_sym_SEMI_SEMI] = ACTIONS(3352), + [anon_sym_PIPE_AMP] = ACTIONS(3352), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_PIPE_PIPE] = ACTIONS(3352), + [anon_sym_LT] = ACTIONS(3352), + [anon_sym_GT] = ACTIONS(3352), + [anon_sym_GT_GT] = ACTIONS(3352), + [anon_sym_AMP_GT] = ACTIONS(3352), + [anon_sym_AMP_GT_GT] = ACTIONS(3352), + [anon_sym_LT_AMP] = ACTIONS(3352), + [anon_sym_GT_AMP] = ACTIONS(3352), + [sym__special_characters] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [anon_sym_DOLLAR] = ACTIONS(3352), + [sym_raw_string] = ACTIONS(3352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3352), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3352), + [anon_sym_BQUOTE] = ACTIONS(3352), + [anon_sym_LT_LPAREN] = ACTIONS(3352), + [anon_sym_GT_LPAREN] = ACTIONS(3352), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3352), + [anon_sym_LF] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3352), + }, + [2710] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6604), + }, + [2711] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6606), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2712] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6608), + }, + [2713] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6590), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2714] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3269), + [anon_sym_RBRACE] = ACTIONS(6610), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2715] = { + [sym_file_descriptor] = ACTIONS(3362), + [sym__concat] = ACTIONS(3362), + [sym_variable_name] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(3364), + [anon_sym_RPAREN] = ACTIONS(3364), + [anon_sym_SEMI_SEMI] = ACTIONS(3364), + [anon_sym_PIPE_AMP] = ACTIONS(3364), + [anon_sym_AMP_AMP] = ACTIONS(3364), + [anon_sym_PIPE_PIPE] = ACTIONS(3364), + [anon_sym_LT] = ACTIONS(3364), + [anon_sym_GT] = ACTIONS(3364), + [anon_sym_GT_GT] = ACTIONS(3364), + [anon_sym_AMP_GT] = ACTIONS(3364), + [anon_sym_AMP_GT_GT] = ACTIONS(3364), + [anon_sym_LT_AMP] = ACTIONS(3364), + [anon_sym_GT_AMP] = ACTIONS(3364), + [sym__special_characters] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [anon_sym_DOLLAR] = ACTIONS(3364), + [sym_raw_string] = ACTIONS(3364), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3364), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3364), + [anon_sym_BQUOTE] = ACTIONS(3364), + [anon_sym_LT_LPAREN] = ACTIONS(3364), + [anon_sym_GT_LPAREN] = ACTIONS(3364), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_LF] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3364), + }, + [2716] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3271), + [anon_sym_RBRACE] = ACTIONS(6612), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2717] = { + [aux_sym_concatenation_repeat1] = STATE(2720), + [sym__concat] = ACTIONS(5627), + [anon_sym_PIPE] = ACTIONS(3974), + [anon_sym_RPAREN] = ACTIONS(3974), + [anon_sym_SEMI_SEMI] = ACTIONS(3974), + [anon_sym_PIPE_AMP] = ACTIONS(3974), + [anon_sym_AMP_AMP] = ACTIONS(3974), + [anon_sym_PIPE_PIPE] = ACTIONS(3974), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3974), + [anon_sym_LF] = ACTIONS(3974), + [anon_sym_AMP] = ACTIONS(3974), + }, + [2718] = { + [aux_sym_concatenation_repeat1] = STATE(2720), + [sym__concat] = ACTIONS(5627), + [anon_sym_PIPE] = ACTIONS(3976), + [anon_sym_RPAREN] = ACTIONS(3976), + [anon_sym_SEMI_SEMI] = ACTIONS(3976), + [anon_sym_PIPE_AMP] = ACTIONS(3976), + [anon_sym_AMP_AMP] = ACTIONS(3976), + [anon_sym_PIPE_PIPE] = ACTIONS(3976), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3976), + [anon_sym_LF] = ACTIONS(3976), + [anon_sym_AMP] = ACTIONS(3976), + }, + [2719] = { + [sym_string] = STATE(3272), + [sym_simple_expansion] = STATE(3272), + [sym_string_expansion] = STATE(3272), + [sym_expansion] = STATE(3272), + [sym_command_substitution] = STATE(3272), + [sym_process_substitution] = STATE(3272), + [sym__special_characters] = ACTIONS(6614), + [anon_sym_DQUOTE] = ACTIONS(4398), + [anon_sym_DOLLAR] = ACTIONS(4400), + [sym_raw_string] = ACTIONS(6616), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4406), + [anon_sym_BQUOTE] = ACTIONS(4408), + [anon_sym_LT_LPAREN] = ACTIONS(4410), + [anon_sym_GT_LPAREN] = ACTIONS(4410), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6614), + }, + [2720] = { + [aux_sym_concatenation_repeat1] = STATE(3273), + [sym__concat] = ACTIONS(5627), + [anon_sym_PIPE] = ACTIONS(774), + [anon_sym_RPAREN] = ACTIONS(774), + [anon_sym_SEMI_SEMI] = ACTIONS(774), + [anon_sym_PIPE_AMP] = ACTIONS(774), + [anon_sym_AMP_AMP] = ACTIONS(774), + [anon_sym_PIPE_PIPE] = ACTIONS(774), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(774), + [anon_sym_LF] = ACTIONS(774), + [anon_sym_AMP] = ACTIONS(774), + }, + [2721] = { + [sym__concat] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(778), + [anon_sym_RPAREN] = ACTIONS(778), + [anon_sym_SEMI_SEMI] = ACTIONS(778), + [anon_sym_PIPE_AMP] = ACTIONS(778), + [anon_sym_AMP_AMP] = ACTIONS(778), + [anon_sym_PIPE_PIPE] = ACTIONS(778), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(778), + [anon_sym_LF] = ACTIONS(778), + [anon_sym_AMP] = ACTIONS(778), + }, + [2722] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(6618), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [2723] = { + [sym__concat] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(810), + [anon_sym_RPAREN] = ACTIONS(810), + [anon_sym_SEMI_SEMI] = ACTIONS(810), + [anon_sym_PIPE_AMP] = ACTIONS(810), + [anon_sym_AMP_AMP] = ACTIONS(810), + [anon_sym_PIPE_PIPE] = ACTIONS(810), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(810), + [anon_sym_LF] = ACTIONS(810), + [anon_sym_AMP] = ACTIONS(810), + }, + [2724] = { + [sym__concat] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(814), + [anon_sym_RPAREN] = ACTIONS(814), + [anon_sym_SEMI_SEMI] = ACTIONS(814), + [anon_sym_PIPE_AMP] = ACTIONS(814), + [anon_sym_AMP_AMP] = ACTIONS(814), + [anon_sym_PIPE_PIPE] = ACTIONS(814), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(814), + [anon_sym_LF] = ACTIONS(814), + [anon_sym_AMP] = ACTIONS(814), + }, + [2725] = { + [sym__concat] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(818), + [anon_sym_RPAREN] = ACTIONS(818), + [anon_sym_SEMI_SEMI] = ACTIONS(818), + [anon_sym_PIPE_AMP] = ACTIONS(818), + [anon_sym_AMP_AMP] = ACTIONS(818), + [anon_sym_PIPE_PIPE] = ACTIONS(818), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(818), + [anon_sym_LF] = ACTIONS(818), + [anon_sym_AMP] = ACTIONS(818), + }, + [2726] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(6620), + [sym_comment] = ACTIONS(56), + }, + [2727] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3278), + [anon_sym_RBRACE] = ACTIONS(6622), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(6624), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2728] = { + [sym_subscript] = STATE(3282), + [sym_variable_name] = ACTIONS(6626), + [anon_sym_DOLLAR] = ACTIONS(6628), + [anon_sym_DASH] = ACTIONS(6628), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6630), + [anon_sym_STAR] = ACTIONS(6628), + [anon_sym_AT] = ACTIONS(6628), + [anon_sym_QMARK] = ACTIONS(6628), + [anon_sym_0] = ACTIONS(6632), + [anon_sym__] = ACTIONS(6632), + }, + [2729] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3285), + [anon_sym_RBRACE] = ACTIONS(6634), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(6636), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2730] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3288), + [anon_sym_RBRACE] = ACTIONS(6638), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(6640), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2731] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(6642), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [2732] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(6642), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [2733] = { + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(6642), + [sym_comment] = ACTIONS(56), + }, + [2734] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(6642), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [2735] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(6644), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [2736] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(6644), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [2737] = { + [sym__concat] = ACTIONS(4728), + [sym_variable_name] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4730), + [anon_sym_RPAREN] = ACTIONS(4730), + [anon_sym_SEMI_SEMI] = ACTIONS(4730), + [anon_sym_PIPE_AMP] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [sym__special_characters] = ACTIONS(4730), + [anon_sym_DQUOTE] = ACTIONS(4730), + [anon_sym_DOLLAR] = ACTIONS(4730), + [sym_raw_string] = ACTIONS(4730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), + [anon_sym_BQUOTE] = ACTIONS(4730), + [anon_sym_LT_LPAREN] = ACTIONS(4730), + [anon_sym_GT_LPAREN] = ACTIONS(4730), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4730), + [sym_word] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_LF] = ACTIONS(4730), + [anon_sym_AMP] = ACTIONS(4730), + }, + [2738] = { + [sym__concat] = ACTIONS(4734), + [sym_variable_name] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(4736), + [anon_sym_RPAREN] = ACTIONS(4736), + [anon_sym_SEMI_SEMI] = ACTIONS(4736), + [anon_sym_PIPE_AMP] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [sym__special_characters] = ACTIONS(4736), + [anon_sym_DQUOTE] = ACTIONS(4736), + [anon_sym_DOLLAR] = ACTIONS(4736), + [sym_raw_string] = ACTIONS(4736), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), + [anon_sym_BQUOTE] = ACTIONS(4736), + [anon_sym_LT_LPAREN] = ACTIONS(4736), + [anon_sym_GT_LPAREN] = ACTIONS(4736), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4736), + [sym_word] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_LF] = ACTIONS(4736), + [anon_sym_AMP] = ACTIONS(4736), + }, + [2739] = { + [sym__concat] = ACTIONS(4797), + [sym_variable_name] = ACTIONS(4797), + [anon_sym_PIPE] = ACTIONS(4799), + [anon_sym_RPAREN] = ACTIONS(4799), + [anon_sym_SEMI_SEMI] = ACTIONS(4799), + [anon_sym_PIPE_AMP] = ACTIONS(4799), + [anon_sym_AMP_AMP] = ACTIONS(4799), + [anon_sym_PIPE_PIPE] = ACTIONS(4799), + [sym__special_characters] = ACTIONS(4799), + [anon_sym_DQUOTE] = ACTIONS(4799), + [anon_sym_DOLLAR] = ACTIONS(4799), + [sym_raw_string] = ACTIONS(4799), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4799), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4799), + [anon_sym_BQUOTE] = ACTIONS(4799), + [anon_sym_LT_LPAREN] = ACTIONS(4799), + [anon_sym_GT_LPAREN] = ACTIONS(4799), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4799), + [sym_word] = ACTIONS(4799), + [anon_sym_SEMI] = ACTIONS(4799), + [anon_sym_LF] = ACTIONS(4799), + [anon_sym_AMP] = ACTIONS(4799), + }, + [2740] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6646), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2741] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6648), + [sym_comment] = ACTIONS(56), + }, + [2742] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6650), + [sym_comment] = ACTIONS(56), + }, + [2743] = { + [anon_sym_RBRACE] = ACTIONS(6650), + [sym_comment] = ACTIONS(56), + }, + [2744] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3295), + [anon_sym_RBRACE] = ACTIONS(6652), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2745] = { + [sym__concat] = ACTIONS(4809), + [sym_variable_name] = ACTIONS(4809), + [anon_sym_PIPE] = ACTIONS(4811), + [anon_sym_RPAREN] = ACTIONS(4811), + [anon_sym_SEMI_SEMI] = ACTIONS(4811), + [anon_sym_PIPE_AMP] = ACTIONS(4811), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [sym__special_characters] = ACTIONS(4811), + [anon_sym_DQUOTE] = ACTIONS(4811), + [anon_sym_DOLLAR] = ACTIONS(4811), + [sym_raw_string] = ACTIONS(4811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4811), + [anon_sym_BQUOTE] = ACTIONS(4811), + [anon_sym_LT_LPAREN] = ACTIONS(4811), + [anon_sym_GT_LPAREN] = ACTIONS(4811), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4811), + [sym_word] = ACTIONS(4811), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym_LF] = ACTIONS(4811), + [anon_sym_AMP] = ACTIONS(4811), + }, + [2746] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3297), + [anon_sym_RBRACE] = ACTIONS(6654), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2747] = { + [sym__concat] = ACTIONS(4815), + [sym_variable_name] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(4817), + [anon_sym_RPAREN] = ACTIONS(4817), + [anon_sym_SEMI_SEMI] = ACTIONS(4817), + [anon_sym_PIPE_AMP] = ACTIONS(4817), + [anon_sym_AMP_AMP] = ACTIONS(4817), + [anon_sym_PIPE_PIPE] = ACTIONS(4817), + [sym__special_characters] = ACTIONS(4817), + [anon_sym_DQUOTE] = ACTIONS(4817), + [anon_sym_DOLLAR] = ACTIONS(4817), + [sym_raw_string] = ACTIONS(4817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4817), + [anon_sym_BQUOTE] = ACTIONS(4817), + [anon_sym_LT_LPAREN] = ACTIONS(4817), + [anon_sym_GT_LPAREN] = ACTIONS(4817), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4817), + [sym_word] = ACTIONS(4817), + [anon_sym_SEMI] = ACTIONS(4817), + [anon_sym_LF] = ACTIONS(4817), + [anon_sym_AMP] = ACTIONS(4817), + }, + [2748] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3299), + [anon_sym_RBRACE] = ACTIONS(6656), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2749] = { + [sym__concat] = ACTIONS(4821), + [sym_variable_name] = ACTIONS(4821), + [anon_sym_PIPE] = ACTIONS(4823), + [anon_sym_RPAREN] = ACTIONS(4823), + [anon_sym_SEMI_SEMI] = ACTIONS(4823), + [anon_sym_PIPE_AMP] = ACTIONS(4823), + [anon_sym_AMP_AMP] = ACTIONS(4823), + [anon_sym_PIPE_PIPE] = ACTIONS(4823), + [sym__special_characters] = ACTIONS(4823), + [anon_sym_DQUOTE] = ACTIONS(4823), + [anon_sym_DOLLAR] = ACTIONS(4823), + [sym_raw_string] = ACTIONS(4823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4823), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4823), + [anon_sym_BQUOTE] = ACTIONS(4823), + [anon_sym_LT_LPAREN] = ACTIONS(4823), + [anon_sym_GT_LPAREN] = ACTIONS(4823), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4823), + [sym_word] = ACTIONS(4823), + [anon_sym_SEMI] = ACTIONS(4823), + [anon_sym_LF] = ACTIONS(4823), + [anon_sym_AMP] = ACTIONS(4823), + }, + [2750] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6658), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, [2751] = { - [anon_sym_RBRACE] = ACTIONS(5905), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(4827), + [sym_variable_name] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_RPAREN] = ACTIONS(4829), + [anon_sym_SEMI_SEMI] = ACTIONS(4829), + [anon_sym_PIPE_AMP] = ACTIONS(4829), + [anon_sym_AMP_AMP] = ACTIONS(4829), + [anon_sym_PIPE_PIPE] = ACTIONS(4829), + [sym__special_characters] = ACTIONS(4829), + [anon_sym_DQUOTE] = ACTIONS(4829), + [anon_sym_DOLLAR] = ACTIONS(4829), + [sym_raw_string] = ACTIONS(4829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4829), + [anon_sym_BQUOTE] = ACTIONS(4829), + [anon_sym_LT_LPAREN] = ACTIONS(4829), + [anon_sym_GT_LPAREN] = ACTIONS(4829), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4829), + [sym_word] = ACTIONS(4829), + [anon_sym_SEMI] = ACTIONS(4829), + [anon_sym_LF] = ACTIONS(4829), + [anon_sym_AMP] = ACTIONS(4829), }, [2752] = { - [sym__concat] = ACTIONS(4269), - [anon_sym_PIPE] = ACTIONS(4271), - [anon_sym_SEMI_SEMI] = ACTIONS(4271), - [anon_sym_PIPE_AMP] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_LF] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4271), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6660), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [2753] = { - [sym__concat] = ACTIONS(4273), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_SEMI_SEMI] = ACTIONS(4275), - [anon_sym_PIPE_AMP] = ACTIONS(4275), - [anon_sym_AMP_AMP] = ACTIONS(4275), - [anon_sym_PIPE_PIPE] = ACTIONS(4275), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_LF] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4275), + [sym__concat] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4730), + [anon_sym_RPAREN] = ACTIONS(4730), + [anon_sym_SEMI_SEMI] = ACTIONS(4730), + [anon_sym_PIPE_AMP] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [sym__special_characters] = ACTIONS(4730), + [anon_sym_DQUOTE] = ACTIONS(4730), + [anon_sym_DOLLAR] = ACTIONS(4730), + [sym_raw_string] = ACTIONS(4730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), + [anon_sym_BQUOTE] = ACTIONS(4730), + [anon_sym_LT_LPAREN] = ACTIONS(4730), + [anon_sym_GT_LPAREN] = ACTIONS(4730), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4730), + [sym_word] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_LF] = ACTIONS(4730), + [anon_sym_AMP] = ACTIONS(4730), }, [2754] = { - [sym_file_descriptor] = ACTIONS(5021), - [sym__concat] = ACTIONS(5021), - [sym_variable_name] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [anon_sym_SEMI_SEMI] = ACTIONS(5023), - [anon_sym_PIPE_AMP] = ACTIONS(5023), - [anon_sym_AMP_AMP] = ACTIONS(5023), - [anon_sym_PIPE_PIPE] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5023), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_GT_GT] = ACTIONS(5023), - [anon_sym_AMP_GT] = ACTIONS(5023), - [anon_sym_AMP_GT_GT] = ACTIONS(5023), - [anon_sym_LT_AMP] = ACTIONS(5023), - [anon_sym_GT_AMP] = ACTIONS(5023), - [sym__special_characters] = ACTIONS(5023), - [anon_sym_DQUOTE] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5023), - [sym_raw_string] = ACTIONS(5023), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5023), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5023), - [anon_sym_BQUOTE] = ACTIONS(5023), - [anon_sym_LT_LPAREN] = ACTIONS(5023), - [anon_sym_GT_LPAREN] = ACTIONS(5023), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(5023), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_LF] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(5023), + [sym__concat] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(4736), + [anon_sym_RPAREN] = ACTIONS(4736), + [anon_sym_SEMI_SEMI] = ACTIONS(4736), + [anon_sym_PIPE_AMP] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [sym__special_characters] = ACTIONS(4736), + [anon_sym_DQUOTE] = ACTIONS(4736), + [anon_sym_DOLLAR] = ACTIONS(4736), + [sym_raw_string] = ACTIONS(4736), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), + [anon_sym_BQUOTE] = ACTIONS(4736), + [anon_sym_LT_LPAREN] = ACTIONS(4736), + [anon_sym_GT_LPAREN] = ACTIONS(4736), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4736), + [sym_word] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_LF] = ACTIONS(4736), + [anon_sym_AMP] = ACTIONS(4736), }, [2755] = { - [sym_file_descriptor] = ACTIONS(5025), - [sym__concat] = ACTIONS(5025), - [sym_variable_name] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [anon_sym_SEMI_SEMI] = ACTIONS(5027), - [anon_sym_PIPE_AMP] = ACTIONS(5027), - [anon_sym_AMP_AMP] = ACTIONS(5027), - [anon_sym_PIPE_PIPE] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5027), - [anon_sym_GT] = ACTIONS(5027), - [anon_sym_GT_GT] = ACTIONS(5027), - [anon_sym_AMP_GT] = ACTIONS(5027), - [anon_sym_AMP_GT_GT] = ACTIONS(5027), - [anon_sym_LT_AMP] = ACTIONS(5027), - [anon_sym_GT_AMP] = ACTIONS(5027), - [sym__special_characters] = ACTIONS(5027), - [anon_sym_DQUOTE] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5027), - [sym_raw_string] = ACTIONS(5027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5027), - [anon_sym_BQUOTE] = ACTIONS(5027), - [anon_sym_LT_LPAREN] = ACTIONS(5027), - [anon_sym_GT_LPAREN] = ACTIONS(5027), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(5027), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_LF] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(5027), + [sym__concat] = ACTIONS(4797), + [anon_sym_PIPE] = ACTIONS(4799), + [anon_sym_RPAREN] = ACTIONS(4799), + [anon_sym_SEMI_SEMI] = ACTIONS(4799), + [anon_sym_PIPE_AMP] = ACTIONS(4799), + [anon_sym_AMP_AMP] = ACTIONS(4799), + [anon_sym_PIPE_PIPE] = ACTIONS(4799), + [sym__special_characters] = ACTIONS(4799), + [anon_sym_DQUOTE] = ACTIONS(4799), + [anon_sym_DOLLAR] = ACTIONS(4799), + [sym_raw_string] = ACTIONS(4799), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4799), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4799), + [anon_sym_BQUOTE] = ACTIONS(4799), + [anon_sym_LT_LPAREN] = ACTIONS(4799), + [anon_sym_GT_LPAREN] = ACTIONS(4799), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4799), + [sym_word] = ACTIONS(4799), + [anon_sym_SEMI] = ACTIONS(4799), + [anon_sym_LF] = ACTIONS(4799), + [anon_sym_AMP] = ACTIONS(4799), }, [2756] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_RPAREN] = ACTIONS(2971), - [anon_sym_SEMI_SEMI] = ACTIONS(2971), - [anon_sym_PIPE_AMP] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_PIPE_PIPE] = ACTIONS(2971), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6662), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [2757] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5907), + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6664), [sym_comment] = ACTIONS(56), }, [2758] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5909), + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6666), [sym_comment] = ACTIONS(56), }, [2759] = { - [anon_sym_RBRACE] = ACTIONS(5909), + [anon_sym_RBRACE] = ACTIONS(6666), [sym_comment] = ACTIONS(56), }, [2760] = { - [sym__concat] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3025), - [anon_sym_RPAREN] = ACTIONS(3025), - [anon_sym_SEMI_SEMI] = ACTIONS(3025), - [anon_sym_PIPE_AMP] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_LF] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3025), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3306), + [anon_sym_RBRACE] = ACTIONS(6668), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [2761] = { - [sym_concatenation] = STATE(2822), - [sym_string] = STATE(2821), - [sym_simple_expansion] = STATE(2821), - [sym_string_expansion] = STATE(2821), - [sym_expansion] = STATE(2821), - [sym_command_substitution] = STATE(2821), - [sym_process_substitution] = STATE(2821), - [anon_sym_RBRACE] = ACTIONS(5909), - [sym__special_characters] = ACTIONS(5911), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5913), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5915), + [sym__concat] = ACTIONS(4809), + [anon_sym_PIPE] = ACTIONS(4811), + [anon_sym_RPAREN] = ACTIONS(4811), + [anon_sym_SEMI_SEMI] = ACTIONS(4811), + [anon_sym_PIPE_AMP] = ACTIONS(4811), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [sym__special_characters] = ACTIONS(4811), + [anon_sym_DQUOTE] = ACTIONS(4811), + [anon_sym_DOLLAR] = ACTIONS(4811), + [sym_raw_string] = ACTIONS(4811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4811), + [anon_sym_BQUOTE] = ACTIONS(4811), + [anon_sym_LT_LPAREN] = ACTIONS(4811), + [anon_sym_GT_LPAREN] = ACTIONS(4811), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4811), + [sym_word] = ACTIONS(4811), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym_LF] = ACTIONS(4811), + [anon_sym_AMP] = ACTIONS(4811), }, [2762] = { - [sym__concat] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(3070), - [anon_sym_RPAREN] = ACTIONS(3070), - [anon_sym_SEMI_SEMI] = ACTIONS(3070), - [anon_sym_PIPE_AMP] = ACTIONS(3070), - [anon_sym_AMP_AMP] = ACTIONS(3070), - [anon_sym_PIPE_PIPE] = ACTIONS(3070), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3070), - [anon_sym_LF] = ACTIONS(3070), - [anon_sym_AMP] = ACTIONS(3070), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3308), + [anon_sym_RBRACE] = ACTIONS(6670), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [2763] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5917), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym__concat] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(4817), + [anon_sym_RPAREN] = ACTIONS(4817), + [anon_sym_SEMI_SEMI] = ACTIONS(4817), + [anon_sym_PIPE_AMP] = ACTIONS(4817), + [anon_sym_AMP_AMP] = ACTIONS(4817), + [anon_sym_PIPE_PIPE] = ACTIONS(4817), + [sym__special_characters] = ACTIONS(4817), + [anon_sym_DQUOTE] = ACTIONS(4817), + [anon_sym_DOLLAR] = ACTIONS(4817), + [sym_raw_string] = ACTIONS(4817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4817), + [anon_sym_BQUOTE] = ACTIONS(4817), + [anon_sym_LT_LPAREN] = ACTIONS(4817), + [anon_sym_GT_LPAREN] = ACTIONS(4817), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4817), + [sym_word] = ACTIONS(4817), + [anon_sym_SEMI] = ACTIONS(4817), + [anon_sym_LF] = ACTIONS(4817), + [anon_sym_AMP] = ACTIONS(4817), }, [2764] = { - [sym__concat] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(3076), - [anon_sym_RPAREN] = ACTIONS(3076), - [anon_sym_SEMI_SEMI] = ACTIONS(3076), - [anon_sym_PIPE_AMP] = ACTIONS(3076), - [anon_sym_AMP_AMP] = ACTIONS(3076), - [anon_sym_PIPE_PIPE] = ACTIONS(3076), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3076), - [anon_sym_LF] = ACTIONS(3076), - [anon_sym_AMP] = ACTIONS(3076), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3310), + [anon_sym_RBRACE] = ACTIONS(6672), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [2765] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5919), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym__concat] = ACTIONS(4821), + [anon_sym_PIPE] = ACTIONS(4823), + [anon_sym_RPAREN] = ACTIONS(4823), + [anon_sym_SEMI_SEMI] = ACTIONS(4823), + [anon_sym_PIPE_AMP] = ACTIONS(4823), + [anon_sym_AMP_AMP] = ACTIONS(4823), + [anon_sym_PIPE_PIPE] = ACTIONS(4823), + [sym__special_characters] = ACTIONS(4823), + [anon_sym_DQUOTE] = ACTIONS(4823), + [anon_sym_DOLLAR] = ACTIONS(4823), + [sym_raw_string] = ACTIONS(4823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4823), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4823), + [anon_sym_BQUOTE] = ACTIONS(4823), + [anon_sym_LT_LPAREN] = ACTIONS(4823), + [anon_sym_GT_LPAREN] = ACTIONS(4823), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4823), + [sym_word] = ACTIONS(4823), + [anon_sym_SEMI] = ACTIONS(4823), + [anon_sym_LF] = ACTIONS(4823), + [anon_sym_AMP] = ACTIONS(4823), }, [2766] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5909), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6674), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [2767] = { - [sym__concat] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(3082), - [anon_sym_RPAREN] = ACTIONS(3082), - [anon_sym_SEMI_SEMI] = ACTIONS(3082), - [anon_sym_PIPE_AMP] = ACTIONS(3082), - [anon_sym_AMP_AMP] = ACTIONS(3082), - [anon_sym_PIPE_PIPE] = ACTIONS(3082), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(3082), - [anon_sym_LF] = ACTIONS(3082), - [anon_sym_AMP] = ACTIONS(3082), + [sym__concat] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_RPAREN] = ACTIONS(4829), + [anon_sym_SEMI_SEMI] = ACTIONS(4829), + [anon_sym_PIPE_AMP] = ACTIONS(4829), + [anon_sym_AMP_AMP] = ACTIONS(4829), + [anon_sym_PIPE_PIPE] = ACTIONS(4829), + [sym__special_characters] = ACTIONS(4829), + [anon_sym_DQUOTE] = ACTIONS(4829), + [anon_sym_DOLLAR] = ACTIONS(4829), + [sym_raw_string] = ACTIONS(4829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4829), + [anon_sym_BQUOTE] = ACTIONS(4829), + [anon_sym_LT_LPAREN] = ACTIONS(4829), + [anon_sym_GT_LPAREN] = ACTIONS(4829), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4829), + [sym_word] = ACTIONS(4829), + [anon_sym_SEMI] = ACTIONS(4829), + [anon_sym_LF] = ACTIONS(4829), + [anon_sym_AMP] = ACTIONS(4829), }, [2768] = { - [sym_file_descriptor] = ACTIONS(5021), - [sym__concat] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [anon_sym_SEMI_SEMI] = ACTIONS(5023), - [anon_sym_PIPE_AMP] = ACTIONS(5023), - [anon_sym_AMP_AMP] = ACTIONS(5023), - [anon_sym_PIPE_PIPE] = ACTIONS(5023), - [anon_sym_LT] = ACTIONS(5023), - [anon_sym_GT] = ACTIONS(5023), - [anon_sym_GT_GT] = ACTIONS(5023), - [anon_sym_AMP_GT] = ACTIONS(5023), - [anon_sym_AMP_GT_GT] = ACTIONS(5023), - [anon_sym_LT_AMP] = ACTIONS(5023), - [anon_sym_GT_AMP] = ACTIONS(5023), - [anon_sym_LT_LT] = ACTIONS(5023), - [anon_sym_LT_LT_DASH] = ACTIONS(5023), - [anon_sym_LT_LT_LT] = ACTIONS(5023), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_LF] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(5023), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6676), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [2769] = { - [sym_file_descriptor] = ACTIONS(5025), - [sym__concat] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [anon_sym_SEMI_SEMI] = ACTIONS(5027), - [anon_sym_PIPE_AMP] = ACTIONS(5027), - [anon_sym_AMP_AMP] = ACTIONS(5027), - [anon_sym_PIPE_PIPE] = ACTIONS(5027), - [anon_sym_LT] = ACTIONS(5027), - [anon_sym_GT] = ACTIONS(5027), - [anon_sym_GT_GT] = ACTIONS(5027), - [anon_sym_AMP_GT] = ACTIONS(5027), - [anon_sym_AMP_GT_GT] = ACTIONS(5027), - [anon_sym_LT_AMP] = ACTIONS(5027), - [anon_sym_GT_AMP] = ACTIONS(5027), - [anon_sym_LT_LT] = ACTIONS(5027), - [anon_sym_LT_LT_DASH] = ACTIONS(5027), - [anon_sym_LT_LT_LT] = ACTIONS(5027), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_LF] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(5027), + [sym_file_descriptor] = ACTIONS(5929), + [sym__concat] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(5931), + [anon_sym_RPAREN] = ACTIONS(5931), + [anon_sym_SEMI_SEMI] = ACTIONS(5931), + [anon_sym_PIPE_AMP] = ACTIONS(5931), + [anon_sym_AMP_AMP] = ACTIONS(5931), + [anon_sym_PIPE_PIPE] = ACTIONS(5931), + [anon_sym_EQ_TILDE] = ACTIONS(5931), + [anon_sym_LT] = ACTIONS(5931), + [anon_sym_GT] = ACTIONS(5931), + [anon_sym_GT_GT] = ACTIONS(5931), + [anon_sym_AMP_GT] = ACTIONS(5931), + [anon_sym_AMP_GT_GT] = ACTIONS(5931), + [anon_sym_LT_AMP] = ACTIONS(5931), + [anon_sym_GT_AMP] = ACTIONS(5931), + [anon_sym_LT_LT] = ACTIONS(5931), + [anon_sym_LT_LT_DASH] = ACTIONS(5931), + [anon_sym_LT_LT_LT] = ACTIONS(5931), + [sym__special_characters] = ACTIONS(5931), + [anon_sym_DQUOTE] = ACTIONS(5931), + [anon_sym_DOLLAR] = ACTIONS(5931), + [sym_raw_string] = ACTIONS(5931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5931), + [anon_sym_BQUOTE] = ACTIONS(5931), + [anon_sym_LT_LPAREN] = ACTIONS(5931), + [anon_sym_GT_LPAREN] = ACTIONS(5931), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5931), + [anon_sym_SEMI] = ACTIONS(5931), + [anon_sym_LF] = ACTIONS(5931), + [anon_sym_AMP] = ACTIONS(5931), }, [2770] = { - [sym__concat] = ACTIONS(5021), - [anon_sym_RBRACE] = ACTIONS(5021), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(5933), + [sym__concat] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(5935), + [anon_sym_RPAREN] = ACTIONS(5935), + [anon_sym_SEMI_SEMI] = ACTIONS(5935), + [anon_sym_PIPE_AMP] = ACTIONS(5935), + [anon_sym_AMP_AMP] = ACTIONS(5935), + [anon_sym_PIPE_PIPE] = ACTIONS(5935), + [anon_sym_EQ_TILDE] = ACTIONS(5935), + [anon_sym_LT] = ACTIONS(5935), + [anon_sym_GT] = ACTIONS(5935), + [anon_sym_GT_GT] = ACTIONS(5935), + [anon_sym_AMP_GT] = ACTIONS(5935), + [anon_sym_AMP_GT_GT] = ACTIONS(5935), + [anon_sym_LT_AMP] = ACTIONS(5935), + [anon_sym_GT_AMP] = ACTIONS(5935), + [anon_sym_LT_LT] = ACTIONS(5935), + [anon_sym_LT_LT_DASH] = ACTIONS(5935), + [anon_sym_LT_LT_LT] = ACTIONS(5935), + [sym__special_characters] = ACTIONS(5935), + [anon_sym_DQUOTE] = ACTIONS(5935), + [anon_sym_DOLLAR] = ACTIONS(5935), + [sym_raw_string] = ACTIONS(5935), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5935), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5935), + [anon_sym_BQUOTE] = ACTIONS(5935), + [anon_sym_LT_LPAREN] = ACTIONS(5935), + [anon_sym_GT_LPAREN] = ACTIONS(5935), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5935), + [anon_sym_SEMI] = ACTIONS(5935), + [anon_sym_LF] = ACTIONS(5935), + [anon_sym_AMP] = ACTIONS(5935), }, [2771] = { - [sym__concat] = ACTIONS(5025), - [anon_sym_RBRACE] = ACTIONS(5025), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(5937), + [sym__concat] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(5939), + [anon_sym_RPAREN] = ACTIONS(5939), + [anon_sym_SEMI_SEMI] = ACTIONS(5939), + [anon_sym_PIPE_AMP] = ACTIONS(5939), + [anon_sym_AMP_AMP] = ACTIONS(5939), + [anon_sym_PIPE_PIPE] = ACTIONS(5939), + [anon_sym_EQ_TILDE] = ACTIONS(5939), + [anon_sym_LT] = ACTIONS(5939), + [anon_sym_GT] = ACTIONS(5939), + [anon_sym_GT_GT] = ACTIONS(5939), + [anon_sym_AMP_GT] = ACTIONS(5939), + [anon_sym_AMP_GT_GT] = ACTIONS(5939), + [anon_sym_LT_AMP] = ACTIONS(5939), + [anon_sym_GT_AMP] = ACTIONS(5939), + [anon_sym_LT_LT] = ACTIONS(5939), + [anon_sym_LT_LT_DASH] = ACTIONS(5939), + [anon_sym_LT_LT_LT] = ACTIONS(5939), + [sym__special_characters] = ACTIONS(5939), + [anon_sym_DQUOTE] = ACTIONS(5939), + [anon_sym_DOLLAR] = ACTIONS(5939), + [sym_raw_string] = ACTIONS(5939), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5939), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5939), + [anon_sym_BQUOTE] = ACTIONS(5939), + [anon_sym_LT_LPAREN] = ACTIONS(5939), + [anon_sym_GT_LPAREN] = ACTIONS(5939), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5939), + [anon_sym_SEMI] = ACTIONS(5939), + [anon_sym_LF] = ACTIONS(5939), + [anon_sym_AMP] = ACTIONS(5939), }, [2772] = { - [sym_file_descriptor] = ACTIONS(5021), - [sym__concat] = ACTIONS(5021), - [sym_variable_name] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5490), - [anon_sym_RPAREN] = ACTIONS(5021), - [anon_sym_PIPE_AMP] = ACTIONS(5021), - [anon_sym_AMP_AMP] = ACTIONS(5021), - [anon_sym_PIPE_PIPE] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5490), - [anon_sym_GT] = ACTIONS(5490), - [anon_sym_GT_GT] = ACTIONS(5021), - [anon_sym_AMP_GT] = ACTIONS(5490), - [anon_sym_AMP_GT_GT] = ACTIONS(5021), - [anon_sym_LT_AMP] = ACTIONS(5021), - [anon_sym_GT_AMP] = ACTIONS(5021), - [sym__special_characters] = ACTIONS(5490), - [anon_sym_DQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR] = ACTIONS(5490), - [sym_raw_string] = ACTIONS(5021), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5021), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5021), - [anon_sym_LT_LPAREN] = ACTIONS(5021), - [anon_sym_GT_LPAREN] = ACTIONS(5021), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5490), + [sym_file_descriptor] = ACTIONS(5941), + [sym__concat] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(5943), + [anon_sym_RPAREN] = ACTIONS(5943), + [anon_sym_SEMI_SEMI] = ACTIONS(5943), + [anon_sym_PIPE_AMP] = ACTIONS(5943), + [anon_sym_AMP_AMP] = ACTIONS(5943), + [anon_sym_PIPE_PIPE] = ACTIONS(5943), + [anon_sym_EQ_TILDE] = ACTIONS(5943), + [anon_sym_LT] = ACTIONS(5943), + [anon_sym_GT] = ACTIONS(5943), + [anon_sym_GT_GT] = ACTIONS(5943), + [anon_sym_AMP_GT] = ACTIONS(5943), + [anon_sym_AMP_GT_GT] = ACTIONS(5943), + [anon_sym_LT_AMP] = ACTIONS(5943), + [anon_sym_GT_AMP] = ACTIONS(5943), + [anon_sym_LT_LT] = ACTIONS(5943), + [anon_sym_LT_LT_DASH] = ACTIONS(5943), + [anon_sym_LT_LT_LT] = ACTIONS(5943), + [sym__special_characters] = ACTIONS(5943), + [anon_sym_DQUOTE] = ACTIONS(5943), + [anon_sym_DOLLAR] = ACTIONS(5943), + [sym_raw_string] = ACTIONS(5943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5943), + [anon_sym_BQUOTE] = ACTIONS(5943), + [anon_sym_LT_LPAREN] = ACTIONS(5943), + [anon_sym_GT_LPAREN] = ACTIONS(5943), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5943), + [anon_sym_SEMI] = ACTIONS(5943), + [anon_sym_LF] = ACTIONS(5943), + [anon_sym_AMP] = ACTIONS(5943), }, [2773] = { - [sym_file_descriptor] = ACTIONS(5025), - [sym__concat] = ACTIONS(5025), - [sym_variable_name] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5492), - [anon_sym_RPAREN] = ACTIONS(5025), - [anon_sym_PIPE_AMP] = ACTIONS(5025), - [anon_sym_AMP_AMP] = ACTIONS(5025), - [anon_sym_PIPE_PIPE] = ACTIONS(5025), - [anon_sym_LT] = ACTIONS(5492), - [anon_sym_GT] = ACTIONS(5492), - [anon_sym_GT_GT] = ACTIONS(5025), - [anon_sym_AMP_GT] = ACTIONS(5492), - [anon_sym_AMP_GT_GT] = ACTIONS(5025), - [anon_sym_LT_AMP] = ACTIONS(5025), - [anon_sym_GT_AMP] = ACTIONS(5025), - [sym__special_characters] = ACTIONS(5492), - [anon_sym_DQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR] = ACTIONS(5492), - [sym_raw_string] = ACTIONS(5025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5025), - [anon_sym_LT_LPAREN] = ACTIONS(5025), - [anon_sym_GT_LPAREN] = ACTIONS(5025), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5492), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6678), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [2774] = { - [anon_sym_PIPE] = ACTIONS(5054), - [anon_sym_RPAREN] = ACTIONS(3855), - [anon_sym_PIPE_AMP] = ACTIONS(3855), - [anon_sym_AMP_AMP] = ACTIONS(3855), - [anon_sym_PIPE_PIPE] = ACTIONS(3855), - [anon_sym_BQUOTE] = ACTIONS(3855), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(5947), + [sym__concat] = ACTIONS(5947), + [anon_sym_PIPE] = ACTIONS(5949), + [anon_sym_RPAREN] = ACTIONS(5949), + [anon_sym_SEMI_SEMI] = ACTIONS(5949), + [anon_sym_PIPE_AMP] = ACTIONS(5949), + [anon_sym_AMP_AMP] = ACTIONS(5949), + [anon_sym_PIPE_PIPE] = ACTIONS(5949), + [anon_sym_EQ_TILDE] = ACTIONS(5949), + [anon_sym_LT] = ACTIONS(5949), + [anon_sym_GT] = ACTIONS(5949), + [anon_sym_GT_GT] = ACTIONS(5949), + [anon_sym_AMP_GT] = ACTIONS(5949), + [anon_sym_AMP_GT_GT] = ACTIONS(5949), + [anon_sym_LT_AMP] = ACTIONS(5949), + [anon_sym_GT_AMP] = ACTIONS(5949), + [anon_sym_LT_LT] = ACTIONS(5949), + [anon_sym_LT_LT_DASH] = ACTIONS(5949), + [anon_sym_LT_LT_LT] = ACTIONS(5949), + [sym__special_characters] = ACTIONS(5949), + [anon_sym_DQUOTE] = ACTIONS(5949), + [anon_sym_DOLLAR] = ACTIONS(5949), + [sym_raw_string] = ACTIONS(5949), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5949), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5949), + [anon_sym_BQUOTE] = ACTIONS(5949), + [anon_sym_LT_LPAREN] = ACTIONS(5949), + [anon_sym_GT_LPAREN] = ACTIONS(5949), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5949), + [anon_sym_SEMI] = ACTIONS(5949), + [anon_sym_LF] = ACTIONS(5949), + [anon_sym_AMP] = ACTIONS(5949), }, [2775] = { - [anon_sym_PIPE] = ACTIONS(5921), - [anon_sym_RPAREN] = ACTIONS(5923), - [anon_sym_PIPE_AMP] = ACTIONS(5923), - [anon_sym_AMP_AMP] = ACTIONS(5923), - [anon_sym_PIPE_PIPE] = ACTIONS(5923), - [anon_sym_BQUOTE] = ACTIONS(5923), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6680), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [2776] = { - [anon_sym_PIPE] = ACTIONS(5925), - [anon_sym_RPAREN] = ACTIONS(5927), - [anon_sym_PIPE_AMP] = ACTIONS(5927), - [anon_sym_AMP_AMP] = ACTIONS(5927), - [anon_sym_PIPE_PIPE] = ACTIONS(5927), - [anon_sym_BQUOTE] = ACTIONS(5927), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(5953), + [sym__concat] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(5955), + [anon_sym_RPAREN] = ACTIONS(5955), + [anon_sym_SEMI_SEMI] = ACTIONS(5955), + [anon_sym_PIPE_AMP] = ACTIONS(5955), + [anon_sym_AMP_AMP] = ACTIONS(5955), + [anon_sym_PIPE_PIPE] = ACTIONS(5955), + [anon_sym_EQ_TILDE] = ACTIONS(5955), + [anon_sym_LT] = ACTIONS(5955), + [anon_sym_GT] = ACTIONS(5955), + [anon_sym_GT_GT] = ACTIONS(5955), + [anon_sym_AMP_GT] = ACTIONS(5955), + [anon_sym_AMP_GT_GT] = ACTIONS(5955), + [anon_sym_LT_AMP] = ACTIONS(5955), + [anon_sym_GT_AMP] = ACTIONS(5955), + [anon_sym_LT_LT] = ACTIONS(5955), + [anon_sym_LT_LT_DASH] = ACTIONS(5955), + [anon_sym_LT_LT_LT] = ACTIONS(5955), + [sym__special_characters] = ACTIONS(5955), + [anon_sym_DQUOTE] = ACTIONS(5955), + [anon_sym_DOLLAR] = ACTIONS(5955), + [sym_raw_string] = ACTIONS(5955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5955), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5955), + [anon_sym_BQUOTE] = ACTIONS(5955), + [anon_sym_LT_LPAREN] = ACTIONS(5955), + [anon_sym_GT_LPAREN] = ACTIONS(5955), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5955), + [anon_sym_SEMI] = ACTIONS(5955), + [anon_sym_LF] = ACTIONS(5955), + [anon_sym_AMP] = ACTIONS(5955), }, [2777] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(4098), - [anon_sym_RPAREN] = ACTIONS(2969), - [anon_sym_PIPE_AMP] = ACTIONS(2969), - [anon_sym_AMP_AMP] = ACTIONS(2969), - [anon_sym_PIPE_PIPE] = ACTIONS(2969), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6682), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [2778] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5929), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(5959), + [sym__concat] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_RPAREN] = ACTIONS(5961), + [anon_sym_SEMI_SEMI] = ACTIONS(5961), + [anon_sym_PIPE_AMP] = ACTIONS(5961), + [anon_sym_AMP_AMP] = ACTIONS(5961), + [anon_sym_PIPE_PIPE] = ACTIONS(5961), + [anon_sym_EQ_TILDE] = ACTIONS(5961), + [anon_sym_LT] = ACTIONS(5961), + [anon_sym_GT] = ACTIONS(5961), + [anon_sym_GT_GT] = ACTIONS(5961), + [anon_sym_AMP_GT] = ACTIONS(5961), + [anon_sym_AMP_GT_GT] = ACTIONS(5961), + [anon_sym_LT_AMP] = ACTIONS(5961), + [anon_sym_GT_AMP] = ACTIONS(5961), + [anon_sym_LT_LT] = ACTIONS(5961), + [anon_sym_LT_LT_DASH] = ACTIONS(5961), + [anon_sym_LT_LT_LT] = ACTIONS(5961), + [sym__special_characters] = ACTIONS(5961), + [anon_sym_DQUOTE] = ACTIONS(5961), + [anon_sym_DOLLAR] = ACTIONS(5961), + [sym_raw_string] = ACTIONS(5961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5961), + [anon_sym_BQUOTE] = ACTIONS(5961), + [anon_sym_LT_LPAREN] = ACTIONS(5961), + [anon_sym_GT_LPAREN] = ACTIONS(5961), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5961), + [anon_sym_SEMI] = ACTIONS(5961), + [anon_sym_LF] = ACTIONS(5961), + [anon_sym_AMP] = ACTIONS(5961), }, [2779] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5931), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(5963), + [sym__concat] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(5965), + [anon_sym_RPAREN] = ACTIONS(5965), + [anon_sym_SEMI_SEMI] = ACTIONS(5965), + [anon_sym_PIPE_AMP] = ACTIONS(5965), + [anon_sym_AMP_AMP] = ACTIONS(5965), + [anon_sym_PIPE_PIPE] = ACTIONS(5965), + [anon_sym_EQ_TILDE] = ACTIONS(5965), + [anon_sym_LT] = ACTIONS(5965), + [anon_sym_GT] = ACTIONS(5965), + [anon_sym_GT_GT] = ACTIONS(5965), + [anon_sym_AMP_GT] = ACTIONS(5965), + [anon_sym_AMP_GT_GT] = ACTIONS(5965), + [anon_sym_LT_AMP] = ACTIONS(5965), + [anon_sym_GT_AMP] = ACTIONS(5965), + [anon_sym_LT_LT] = ACTIONS(5965), + [anon_sym_LT_LT_DASH] = ACTIONS(5965), + [anon_sym_LT_LT_LT] = ACTIONS(5965), + [sym__special_characters] = ACTIONS(5965), + [anon_sym_DQUOTE] = ACTIONS(5965), + [anon_sym_DOLLAR] = ACTIONS(5965), + [sym_raw_string] = ACTIONS(5965), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5965), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5965), + [anon_sym_BQUOTE] = ACTIONS(5965), + [anon_sym_LT_LPAREN] = ACTIONS(5965), + [anon_sym_GT_LPAREN] = ACTIONS(5965), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5965), + [anon_sym_SEMI] = ACTIONS(5965), + [anon_sym_LF] = ACTIONS(5965), + [anon_sym_AMP] = ACTIONS(5965), }, [2780] = { - [anon_sym_RBRACE] = ACTIONS(5931), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(3235), + [sym__concat] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3237), + [anon_sym_RPAREN] = ACTIONS(3237), + [anon_sym_SEMI_SEMI] = ACTIONS(3237), + [anon_sym_PIPE_AMP] = ACTIONS(3237), + [anon_sym_AMP_AMP] = ACTIONS(3237), + [anon_sym_PIPE_PIPE] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_GT] = ACTIONS(3237), + [anon_sym_GT_GT] = ACTIONS(3237), + [anon_sym_AMP_GT] = ACTIONS(3237), + [anon_sym_AMP_GT_GT] = ACTIONS(3237), + [anon_sym_LT_AMP] = ACTIONS(3237), + [anon_sym_GT_AMP] = ACTIONS(3237), + [anon_sym_LT_LT] = ACTIONS(3237), + [anon_sym_LT_LT_DASH] = ACTIONS(3237), + [anon_sym_LT_LT_LT] = ACTIONS(3237), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_LF] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), }, [2781] = { - [sym__concat] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(4104), - [anon_sym_RPAREN] = ACTIONS(3023), - [anon_sym_PIPE_AMP] = ACTIONS(3023), - [anon_sym_AMP_AMP] = ACTIONS(3023), - [anon_sym_PIPE_PIPE] = ACTIONS(3023), + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6684), [sym_comment] = ACTIONS(56), }, [2782] = { - [sym_concatenation] = STATE(2829), - [sym_string] = STATE(2828), - [sym_simple_expansion] = STATE(2828), - [sym_string_expansion] = STATE(2828), - [sym_expansion] = STATE(2828), - [sym_command_substitution] = STATE(2828), - [sym_process_substitution] = STATE(2828), - [anon_sym_RBRACE] = ACTIONS(5931), - [sym__special_characters] = ACTIONS(5933), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5935), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6686), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5937), }, [2783] = { - [sym__concat] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(4112), - [anon_sym_RPAREN] = ACTIONS(3068), - [anon_sym_PIPE_AMP] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), + [anon_sym_RBRACE] = ACTIONS(6686), [sym_comment] = ACTIONS(56), }, [2784] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5939), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3319), + [anon_sym_RBRACE] = ACTIONS(6688), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [2785] = { - [sym__concat] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(4116), - [anon_sym_RPAREN] = ACTIONS(3074), - [anon_sym_PIPE_AMP] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(3297), + [sym__concat] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_RPAREN] = ACTIONS(3299), + [anon_sym_SEMI_SEMI] = ACTIONS(3299), + [anon_sym_PIPE_AMP] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_GT] = ACTIONS(3299), + [anon_sym_GT_GT] = ACTIONS(3299), + [anon_sym_AMP_GT] = ACTIONS(3299), + [anon_sym_AMP_GT_GT] = ACTIONS(3299), + [anon_sym_LT_AMP] = ACTIONS(3299), + [anon_sym_GT_AMP] = ACTIONS(3299), + [anon_sym_LT_LT] = ACTIONS(3299), + [anon_sym_LT_LT_DASH] = ACTIONS(3299), + [anon_sym_LT_LT_LT] = ACTIONS(3299), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_LF] = ACTIONS(3299), + [anon_sym_AMP] = ACTIONS(3299), }, [2786] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5941), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_concatenation] = STATE(3322), + [sym_string] = STATE(3321), + [sym_simple_expansion] = STATE(3321), + [sym_string_expansion] = STATE(3321), + [sym_expansion] = STATE(3321), + [sym_command_substitution] = STATE(3321), + [sym_process_substitution] = STATE(3321), + [anon_sym_RBRACE] = ACTIONS(6686), + [sym__special_characters] = ACTIONS(6690), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(6692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6694), }, [2787] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5931), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_file_descriptor] = ACTIONS(3342), + [sym__concat] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(3344), + [anon_sym_RPAREN] = ACTIONS(3344), + [anon_sym_SEMI_SEMI] = ACTIONS(3344), + [anon_sym_PIPE_AMP] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_GT_GT] = ACTIONS(3344), + [anon_sym_AMP_GT] = ACTIONS(3344), + [anon_sym_AMP_GT_GT] = ACTIONS(3344), + [anon_sym_LT_AMP] = ACTIONS(3344), + [anon_sym_GT_AMP] = ACTIONS(3344), + [anon_sym_LT_LT] = ACTIONS(3344), + [anon_sym_LT_LT_DASH] = ACTIONS(3344), + [anon_sym_LT_LT_LT] = ACTIONS(3344), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_LF] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3344), }, [2788] = { - [sym__concat] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(4120), - [anon_sym_RPAREN] = ACTIONS(3080), - [anon_sym_PIPE_AMP] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6696), }, [2789] = { - [sym_file_descriptor] = ACTIONS(5021), - [sym__concat] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5490), - [anon_sym_RPAREN] = ACTIONS(5021), - [anon_sym_PIPE_AMP] = ACTIONS(5021), - [anon_sym_AMP_AMP] = ACTIONS(5021), - [anon_sym_PIPE_PIPE] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5490), - [anon_sym_GT] = ACTIONS(5490), - [anon_sym_GT_GT] = ACTIONS(5021), - [anon_sym_AMP_GT] = ACTIONS(5490), - [anon_sym_AMP_GT_GT] = ACTIONS(5021), - [anon_sym_LT_AMP] = ACTIONS(5021), - [anon_sym_GT_AMP] = ACTIONS(5021), - [anon_sym_LT_LT] = ACTIONS(5490), - [anon_sym_LT_LT_DASH] = ACTIONS(5021), - [anon_sym_LT_LT_LT] = ACTIONS(5021), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6698), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [2790] = { - [sym_file_descriptor] = ACTIONS(5025), - [sym__concat] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5492), - [anon_sym_RPAREN] = ACTIONS(5025), - [anon_sym_PIPE_AMP] = ACTIONS(5025), - [anon_sym_AMP_AMP] = ACTIONS(5025), - [anon_sym_PIPE_PIPE] = ACTIONS(5025), - [anon_sym_LT] = ACTIONS(5492), - [anon_sym_GT] = ACTIONS(5492), - [anon_sym_GT_GT] = ACTIONS(5025), - [anon_sym_AMP_GT] = ACTIONS(5492), - [anon_sym_AMP_GT_GT] = ACTIONS(5025), - [anon_sym_LT_AMP] = ACTIONS(5025), - [anon_sym_GT_AMP] = ACTIONS(5025), - [anon_sym_LT_LT] = ACTIONS(5492), - [anon_sym_LT_LT_DASH] = ACTIONS(5025), - [anon_sym_LT_LT_LT] = ACTIONS(5025), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(3350), + [sym__concat] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3352), + [anon_sym_RPAREN] = ACTIONS(3352), + [anon_sym_SEMI_SEMI] = ACTIONS(3352), + [anon_sym_PIPE_AMP] = ACTIONS(3352), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_PIPE_PIPE] = ACTIONS(3352), + [anon_sym_LT] = ACTIONS(3352), + [anon_sym_GT] = ACTIONS(3352), + [anon_sym_GT_GT] = ACTIONS(3352), + [anon_sym_AMP_GT] = ACTIONS(3352), + [anon_sym_AMP_GT_GT] = ACTIONS(3352), + [anon_sym_LT_AMP] = ACTIONS(3352), + [anon_sym_GT_AMP] = ACTIONS(3352), + [anon_sym_LT_LT] = ACTIONS(3352), + [anon_sym_LT_LT_DASH] = ACTIONS(3352), + [anon_sym_LT_LT_LT] = ACTIONS(3352), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3352), + [anon_sym_LF] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3352), }, [2791] = { - [sym_file_descriptor] = ACTIONS(5021), - [sym__concat] = ACTIONS(5021), - [sym_variable_name] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5490), - [anon_sym_PIPE_AMP] = ACTIONS(5021), - [anon_sym_AMP_AMP] = ACTIONS(5021), - [anon_sym_PIPE_PIPE] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5490), - [anon_sym_GT] = ACTIONS(5490), - [anon_sym_GT_GT] = ACTIONS(5021), - [anon_sym_AMP_GT] = ACTIONS(5490), - [anon_sym_AMP_GT_GT] = ACTIONS(5021), - [anon_sym_LT_AMP] = ACTIONS(5021), - [anon_sym_GT_AMP] = ACTIONS(5021), - [sym__special_characters] = ACTIONS(5490), - [anon_sym_DQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR] = ACTIONS(5490), - [sym_raw_string] = ACTIONS(5021), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5021), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5021), - [anon_sym_LT_LPAREN] = ACTIONS(5021), - [anon_sym_GT_LPAREN] = ACTIONS(5021), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5490), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6700), }, [2792] = { - [sym_file_descriptor] = ACTIONS(5025), - [sym__concat] = ACTIONS(5025), - [sym_variable_name] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5492), - [anon_sym_PIPE_AMP] = ACTIONS(5025), - [anon_sym_AMP_AMP] = ACTIONS(5025), - [anon_sym_PIPE_PIPE] = ACTIONS(5025), - [anon_sym_LT] = ACTIONS(5492), - [anon_sym_GT] = ACTIONS(5492), - [anon_sym_GT_GT] = ACTIONS(5025), - [anon_sym_AMP_GT] = ACTIONS(5492), - [anon_sym_AMP_GT_GT] = ACTIONS(5025), - [anon_sym_LT_AMP] = ACTIONS(5025), - [anon_sym_GT_AMP] = ACTIONS(5025), - [sym__special_characters] = ACTIONS(5492), - [anon_sym_DQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR] = ACTIONS(5492), - [sym_raw_string] = ACTIONS(5025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5025), - [anon_sym_LT_LPAREN] = ACTIONS(5025), - [anon_sym_GT_LPAREN] = ACTIONS(5025), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5492), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6702), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [2793] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(4098), - [anon_sym_PIPE_AMP] = ACTIONS(2969), - [anon_sym_AMP_AMP] = ACTIONS(2969), - [anon_sym_PIPE_PIPE] = ACTIONS(2969), - [anon_sym_BQUOTE] = ACTIONS(2969), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6704), }, [2794] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5943), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6686), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [2795] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5945), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3329), + [anon_sym_RBRACE] = ACTIONS(6706), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [2796] = { - [anon_sym_RBRACE] = ACTIONS(5945), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(3362), + [sym__concat] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(3364), + [anon_sym_RPAREN] = ACTIONS(3364), + [anon_sym_SEMI_SEMI] = ACTIONS(3364), + [anon_sym_PIPE_AMP] = ACTIONS(3364), + [anon_sym_AMP_AMP] = ACTIONS(3364), + [anon_sym_PIPE_PIPE] = ACTIONS(3364), + [anon_sym_LT] = ACTIONS(3364), + [anon_sym_GT] = ACTIONS(3364), + [anon_sym_GT_GT] = ACTIONS(3364), + [anon_sym_AMP_GT] = ACTIONS(3364), + [anon_sym_AMP_GT_GT] = ACTIONS(3364), + [anon_sym_LT_AMP] = ACTIONS(3364), + [anon_sym_GT_AMP] = ACTIONS(3364), + [anon_sym_LT_LT] = ACTIONS(3364), + [anon_sym_LT_LT_DASH] = ACTIONS(3364), + [anon_sym_LT_LT_LT] = ACTIONS(3364), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_LF] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3364), }, [2797] = { - [sym__concat] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(4104), - [anon_sym_PIPE_AMP] = ACTIONS(3023), - [anon_sym_AMP_AMP] = ACTIONS(3023), - [anon_sym_PIPE_PIPE] = ACTIONS(3023), - [anon_sym_BQUOTE] = ACTIONS(3023), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3331), + [anon_sym_RBRACE] = ACTIONS(6708), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [2798] = { - [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(5945), - [sym__special_characters] = ACTIONS(5947), - [anon_sym_DQUOTE] = ACTIONS(1850), - [anon_sym_DOLLAR] = ACTIONS(1852), - [sym_raw_string] = ACTIONS(5949), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1856), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1858), - [anon_sym_BQUOTE] = ACTIONS(1860), - [anon_sym_LT_LPAREN] = ACTIONS(1862), - [anon_sym_GT_LPAREN] = ACTIONS(1862), + [sym__concat] = ACTIONS(5929), + [anon_sym_EQ_TILDE] = ACTIONS(6710), + [anon_sym_RBRACK] = ACTIONS(5929), + [sym__special_characters] = ACTIONS(5931), + [anon_sym_DQUOTE] = ACTIONS(5929), + [anon_sym_DOLLAR] = ACTIONS(6710), + [sym_raw_string] = ACTIONS(5929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5929), + [anon_sym_BQUOTE] = ACTIONS(5929), + [anon_sym_LT_LPAREN] = ACTIONS(5929), + [anon_sym_GT_LPAREN] = ACTIONS(5929), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5951), + [sym_word] = ACTIONS(5931), }, [2799] = { - [sym__concat] = ACTIONS(3068), - [anon_sym_PIPE] = ACTIONS(4112), - [anon_sym_PIPE_AMP] = ACTIONS(3068), - [anon_sym_AMP_AMP] = ACTIONS(3068), - [anon_sym_PIPE_PIPE] = ACTIONS(3068), - [anon_sym_BQUOTE] = ACTIONS(3068), + [sym__concat] = ACTIONS(5933), + [anon_sym_EQ_TILDE] = ACTIONS(6712), + [anon_sym_RBRACK] = ACTIONS(5933), + [sym__special_characters] = ACTIONS(5935), + [anon_sym_DQUOTE] = ACTIONS(5933), + [anon_sym_DOLLAR] = ACTIONS(6712), + [sym_raw_string] = ACTIONS(5933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5933), + [anon_sym_BQUOTE] = ACTIONS(5933), + [anon_sym_LT_LPAREN] = ACTIONS(5933), + [anon_sym_GT_LPAREN] = ACTIONS(5933), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5935), }, [2800] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5953), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym__concat] = ACTIONS(5937), + [anon_sym_EQ_TILDE] = ACTIONS(6714), + [anon_sym_RBRACK] = ACTIONS(5937), + [sym__special_characters] = ACTIONS(5939), + [anon_sym_DQUOTE] = ACTIONS(5937), + [anon_sym_DOLLAR] = ACTIONS(6714), + [sym_raw_string] = ACTIONS(5937), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5937), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5937), + [anon_sym_BQUOTE] = ACTIONS(5937), + [anon_sym_LT_LPAREN] = ACTIONS(5937), + [anon_sym_GT_LPAREN] = ACTIONS(5937), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5939), }, [2801] = { - [sym__concat] = ACTIONS(3074), - [anon_sym_PIPE] = ACTIONS(4116), - [anon_sym_PIPE_AMP] = ACTIONS(3074), - [anon_sym_AMP_AMP] = ACTIONS(3074), - [anon_sym_PIPE_PIPE] = ACTIONS(3074), - [anon_sym_BQUOTE] = ACTIONS(3074), + [sym__concat] = ACTIONS(5941), + [anon_sym_EQ_TILDE] = ACTIONS(6716), + [anon_sym_RBRACK] = ACTIONS(5941), + [sym__special_characters] = ACTIONS(5943), + [anon_sym_DQUOTE] = ACTIONS(5941), + [anon_sym_DOLLAR] = ACTIONS(6716), + [sym_raw_string] = ACTIONS(5941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5941), + [anon_sym_BQUOTE] = ACTIONS(5941), + [anon_sym_LT_LPAREN] = ACTIONS(5941), + [anon_sym_GT_LPAREN] = ACTIONS(5941), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5943), }, [2802] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5955), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6718), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [2803] = { - [sym_concatenation] = STATE(443), - [sym_string] = STATE(447), - [sym_simple_expansion] = STATE(447), - [sym_string_expansion] = STATE(447), - [sym_expansion] = STATE(447), - [sym_command_substitution] = STATE(447), - [sym_process_substitution] = STATE(447), - [aux_sym_expansion_repeat1] = STATE(932), - [anon_sym_RBRACE] = ACTIONS(5945), - [anon_sym_EQ] = ACTIONS(814), - [sym__special_characters] = ACTIONS(816), - [anon_sym_DQUOTE] = ACTIONS(818), - [anon_sym_DOLLAR] = ACTIONS(820), - [sym_raw_string] = ACTIONS(822), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_COLON] = ACTIONS(814), - [anon_sym_COLON_QMARK] = ACTIONS(814), - [anon_sym_COLON_DASH] = ACTIONS(814), - [anon_sym_PERCENT] = ACTIONS(814), - [anon_sym_SLASH] = ACTIONS(814), - [anon_sym_DASH] = ACTIONS(814), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(178), - [sym_word] = ACTIONS(834), + [sym__concat] = ACTIONS(5947), + [anon_sym_EQ_TILDE] = ACTIONS(6720), + [anon_sym_RBRACK] = ACTIONS(5947), + [sym__special_characters] = ACTIONS(5949), + [anon_sym_DQUOTE] = ACTIONS(5947), + [anon_sym_DOLLAR] = ACTIONS(6720), + [sym_raw_string] = ACTIONS(5947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5947), + [anon_sym_BQUOTE] = ACTIONS(5947), + [anon_sym_LT_LPAREN] = ACTIONS(5947), + [anon_sym_GT_LPAREN] = ACTIONS(5947), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5949), }, [2804] = { - [sym__concat] = ACTIONS(3080), - [anon_sym_PIPE] = ACTIONS(4120), - [anon_sym_PIPE_AMP] = ACTIONS(3080), - [anon_sym_AMP_AMP] = ACTIONS(3080), - [anon_sym_PIPE_PIPE] = ACTIONS(3080), - [anon_sym_BQUOTE] = ACTIONS(3080), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6722), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [2805] = { - [sym_file_descriptor] = ACTIONS(5021), - [sym__concat] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5490), - [anon_sym_PIPE_AMP] = ACTIONS(5021), - [anon_sym_AMP_AMP] = ACTIONS(5021), - [anon_sym_PIPE_PIPE] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5490), - [anon_sym_GT] = ACTIONS(5490), - [anon_sym_GT_GT] = ACTIONS(5021), - [anon_sym_AMP_GT] = ACTIONS(5490), - [anon_sym_AMP_GT_GT] = ACTIONS(5021), - [anon_sym_LT_AMP] = ACTIONS(5021), - [anon_sym_GT_AMP] = ACTIONS(5021), - [anon_sym_LT_LT] = ACTIONS(5490), - [anon_sym_LT_LT_DASH] = ACTIONS(5021), - [anon_sym_LT_LT_LT] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5021), + [sym__concat] = ACTIONS(5953), + [anon_sym_EQ_TILDE] = ACTIONS(6724), + [anon_sym_RBRACK] = ACTIONS(5953), + [sym__special_characters] = ACTIONS(5955), + [anon_sym_DQUOTE] = ACTIONS(5953), + [anon_sym_DOLLAR] = ACTIONS(6724), + [sym_raw_string] = ACTIONS(5953), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5953), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5953), + [anon_sym_BQUOTE] = ACTIONS(5953), + [anon_sym_LT_LPAREN] = ACTIONS(5953), + [anon_sym_GT_LPAREN] = ACTIONS(5953), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5955), }, [2806] = { - [sym_file_descriptor] = ACTIONS(5025), - [sym__concat] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5492), - [anon_sym_PIPE_AMP] = ACTIONS(5025), - [anon_sym_AMP_AMP] = ACTIONS(5025), - [anon_sym_PIPE_PIPE] = ACTIONS(5025), - [anon_sym_LT] = ACTIONS(5492), - [anon_sym_GT] = ACTIONS(5492), - [anon_sym_GT_GT] = ACTIONS(5025), - [anon_sym_AMP_GT] = ACTIONS(5492), - [anon_sym_AMP_GT_GT] = ACTIONS(5025), - [anon_sym_LT_AMP] = ACTIONS(5025), - [anon_sym_GT_AMP] = ACTIONS(5025), - [anon_sym_LT_LT] = ACTIONS(5492), - [anon_sym_LT_LT_DASH] = ACTIONS(5025), - [anon_sym_LT_LT_LT] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5025), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6726), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [2807] = { - [sym__heredoc_middle] = ACTIONS(5021), - [sym__heredoc_end] = ACTIONS(5021), - [anon_sym_DOLLAR] = ACTIONS(5490), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5021), + [sym__concat] = ACTIONS(5959), + [anon_sym_EQ_TILDE] = ACTIONS(6728), + [anon_sym_RBRACK] = ACTIONS(5959), + [sym__special_characters] = ACTIONS(5961), + [anon_sym_DQUOTE] = ACTIONS(5959), + [anon_sym_DOLLAR] = ACTIONS(6728), + [sym_raw_string] = ACTIONS(5959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5959), + [anon_sym_BQUOTE] = ACTIONS(5959), + [anon_sym_LT_LPAREN] = ACTIONS(5959), + [anon_sym_GT_LPAREN] = ACTIONS(5959), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5961), }, [2808] = { - [sym__heredoc_middle] = ACTIONS(5025), - [sym__heredoc_end] = ACTIONS(5025), - [anon_sym_DOLLAR] = ACTIONS(5492), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5025), + [sym__concat] = ACTIONS(5963), + [anon_sym_EQ_TILDE] = ACTIONS(6730), + [anon_sym_RBRACK] = ACTIONS(5963), + [sym__special_characters] = ACTIONS(5965), + [anon_sym_DQUOTE] = ACTIONS(5963), + [anon_sym_DOLLAR] = ACTIONS(6730), + [sym_raw_string] = ACTIONS(5963), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5963), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5963), + [anon_sym_BQUOTE] = ACTIONS(5963), + [anon_sym_LT_LPAREN] = ACTIONS(5963), + [anon_sym_GT_LPAREN] = ACTIONS(5963), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5965), }, [2809] = { - [sym__concat] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_RPAREN] = ACTIONS(5021), + [sym__concat] = ACTIONS(5929), + [anon_sym_EQ_TILDE] = ACTIONS(6710), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5929), + [sym__special_characters] = ACTIONS(5931), + [anon_sym_DQUOTE] = ACTIONS(5929), + [anon_sym_DOLLAR] = ACTIONS(6710), + [sym_raw_string] = ACTIONS(5929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5929), + [anon_sym_BQUOTE] = ACTIONS(5929), + [anon_sym_LT_LPAREN] = ACTIONS(5929), + [anon_sym_GT_LPAREN] = ACTIONS(5929), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5931), }, [2810] = { - [sym__concat] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5025), - [anon_sym_RPAREN] = ACTIONS(5025), + [sym__concat] = ACTIONS(5933), + [anon_sym_EQ_TILDE] = ACTIONS(6712), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5933), + [sym__special_characters] = ACTIONS(5935), + [anon_sym_DQUOTE] = ACTIONS(5933), + [anon_sym_DOLLAR] = ACTIONS(6712), + [sym_raw_string] = ACTIONS(5933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5933), + [anon_sym_BQUOTE] = ACTIONS(5933), + [anon_sym_LT_LPAREN] = ACTIONS(5933), + [anon_sym_GT_LPAREN] = ACTIONS(5933), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5935), }, [2811] = { - [sym__special_characters] = ACTIONS(5708), - [anon_sym_DQUOTE] = ACTIONS(5710), - [anon_sym_DOLLAR] = ACTIONS(5708), - [sym_raw_string] = ACTIONS(5710), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5710), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5710), - [anon_sym_BQUOTE] = ACTIONS(5710), - [anon_sym_LT_LPAREN] = ACTIONS(5710), - [anon_sym_GT_LPAREN] = ACTIONS(5710), + [sym__concat] = ACTIONS(5937), + [anon_sym_EQ_TILDE] = ACTIONS(6714), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5937), + [sym__special_characters] = ACTIONS(5939), + [anon_sym_DQUOTE] = ACTIONS(5937), + [anon_sym_DOLLAR] = ACTIONS(6714), + [sym_raw_string] = ACTIONS(5937), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5937), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5937), + [anon_sym_BQUOTE] = ACTIONS(5937), + [anon_sym_LT_LPAREN] = ACTIONS(5937), + [anon_sym_GT_LPAREN] = ACTIONS(5937), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5708), + [sym_word] = ACTIONS(5939), }, [2812] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_bracket_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(2812), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1110), - [sym_variable_name] = ACTIONS(1113), - [anon_sym_for] = ACTIONS(1118), - [anon_sym_while] = ACTIONS(1121), - [anon_sym_if] = ACTIONS(1124), - [anon_sym_case] = ACTIONS(1127), - [anon_sym_SEMI_SEMI] = ACTIONS(1116), - [anon_sym_function] = ACTIONS(1130), - [anon_sym_LPAREN] = ACTIONS(1133), - [anon_sym_LBRACK] = ACTIONS(1136), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1139), - [anon_sym_declare] = ACTIONS(1142), - [anon_sym_typeset] = ACTIONS(1142), - [anon_sym_export] = ACTIONS(1142), - [anon_sym_readonly] = ACTIONS(1142), - [anon_sym_local] = ACTIONS(1142), - [anon_sym_unset] = ACTIONS(1145), - [anon_sym_unsetenv] = ACTIONS(1145), - [anon_sym_LT] = ACTIONS(1148), - [anon_sym_GT] = ACTIONS(1148), - [anon_sym_GT_GT] = ACTIONS(1151), - [anon_sym_AMP_GT] = ACTIONS(1148), - [anon_sym_AMP_GT_GT] = ACTIONS(1151), - [anon_sym_LT_AMP] = ACTIONS(1151), - [anon_sym_GT_AMP] = ACTIONS(1151), - [sym__special_characters] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1157), - [anon_sym_DOLLAR] = ACTIONS(1160), - [sym_raw_string] = ACTIONS(1163), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1166), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1169), - [anon_sym_BQUOTE] = ACTIONS(1172), - [anon_sym_LT_LPAREN] = ACTIONS(1175), - [anon_sym_GT_LPAREN] = ACTIONS(1175), + [sym__concat] = ACTIONS(5941), + [anon_sym_EQ_TILDE] = ACTIONS(6716), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5941), + [sym__special_characters] = ACTIONS(5943), + [anon_sym_DQUOTE] = ACTIONS(5941), + [anon_sym_DOLLAR] = ACTIONS(6716), + [sym_raw_string] = ACTIONS(5941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5941), + [anon_sym_BQUOTE] = ACTIONS(5941), + [anon_sym_LT_LPAREN] = ACTIONS(5941), + [anon_sym_GT_LPAREN] = ACTIONS(5941), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1178), + [sym_word] = ACTIONS(5943), }, [2813] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_bracket_command] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(2812), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(5957), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6732), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, [2814] = { - [sym__special_characters] = ACTIONS(5718), - [anon_sym_DQUOTE] = ACTIONS(5720), - [anon_sym_DOLLAR] = ACTIONS(5718), - [sym_raw_string] = ACTIONS(5720), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5720), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5720), - [anon_sym_BQUOTE] = ACTIONS(5720), - [anon_sym_LT_LPAREN] = ACTIONS(5720), - [anon_sym_GT_LPAREN] = ACTIONS(5720), + [sym__concat] = ACTIONS(5947), + [anon_sym_EQ_TILDE] = ACTIONS(6720), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5947), + [sym__special_characters] = ACTIONS(5949), + [anon_sym_DQUOTE] = ACTIONS(5947), + [anon_sym_DOLLAR] = ACTIONS(6720), + [sym_raw_string] = ACTIONS(5947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5947), + [anon_sym_BQUOTE] = ACTIONS(5947), + [anon_sym_LT_LPAREN] = ACTIONS(5947), + [anon_sym_GT_LPAREN] = ACTIONS(5947), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5718), + [sym_word] = ACTIONS(5949), }, [2815] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_bracket_command] = STATE(26), - [sym_command] = STATE(26), + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6734), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2816] = { + [sym__concat] = ACTIONS(5953), + [anon_sym_EQ_TILDE] = ACTIONS(6724), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5953), + [sym__special_characters] = ACTIONS(5955), + [anon_sym_DQUOTE] = ACTIONS(5953), + [anon_sym_DOLLAR] = ACTIONS(6724), + [sym_raw_string] = ACTIONS(5953), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5953), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5953), + [anon_sym_BQUOTE] = ACTIONS(5953), + [anon_sym_LT_LPAREN] = ACTIONS(5953), + [anon_sym_GT_LPAREN] = ACTIONS(5953), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5955), + }, + [2817] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6736), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2818] = { + [sym__concat] = ACTIONS(5959), + [anon_sym_EQ_TILDE] = ACTIONS(6728), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5959), + [sym__special_characters] = ACTIONS(5961), + [anon_sym_DQUOTE] = ACTIONS(5959), + [anon_sym_DOLLAR] = ACTIONS(6728), + [sym_raw_string] = ACTIONS(5959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5959), + [anon_sym_BQUOTE] = ACTIONS(5959), + [anon_sym_LT_LPAREN] = ACTIONS(5959), + [anon_sym_GT_LPAREN] = ACTIONS(5959), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5961), + }, + [2819] = { + [sym__concat] = ACTIONS(5963), + [anon_sym_EQ_TILDE] = ACTIONS(6730), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5963), + [sym__special_characters] = ACTIONS(5965), + [anon_sym_DQUOTE] = ACTIONS(5963), + [anon_sym_DOLLAR] = ACTIONS(6730), + [sym_raw_string] = ACTIONS(5963), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5963), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5963), + [anon_sym_BQUOTE] = ACTIONS(5963), + [anon_sym_LT_LPAREN] = ACTIONS(5963), + [anon_sym_GT_LPAREN] = ACTIONS(5963), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5965), + }, + [2820] = { + [sym__concat] = ACTIONS(5929), + [sym_variable_name] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(5931), + [anon_sym_SEMI_SEMI] = ACTIONS(5931), + [anon_sym_PIPE_AMP] = ACTIONS(5931), + [anon_sym_AMP_AMP] = ACTIONS(5931), + [anon_sym_PIPE_PIPE] = ACTIONS(5931), + [sym__special_characters] = ACTIONS(5931), + [anon_sym_DQUOTE] = ACTIONS(5931), + [anon_sym_DOLLAR] = ACTIONS(5931), + [sym_raw_string] = ACTIONS(5931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5931), + [anon_sym_BQUOTE] = ACTIONS(5931), + [anon_sym_LT_LPAREN] = ACTIONS(5931), + [anon_sym_GT_LPAREN] = ACTIONS(5931), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5931), + [sym_word] = ACTIONS(5931), + [anon_sym_SEMI] = ACTIONS(5931), + [anon_sym_LF] = ACTIONS(5931), + [anon_sym_AMP] = ACTIONS(5931), + }, + [2821] = { + [sym__concat] = ACTIONS(5933), + [sym_variable_name] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(5935), + [anon_sym_SEMI_SEMI] = ACTIONS(5935), + [anon_sym_PIPE_AMP] = ACTIONS(5935), + [anon_sym_AMP_AMP] = ACTIONS(5935), + [anon_sym_PIPE_PIPE] = ACTIONS(5935), + [sym__special_characters] = ACTIONS(5935), + [anon_sym_DQUOTE] = ACTIONS(5935), + [anon_sym_DOLLAR] = ACTIONS(5935), + [sym_raw_string] = ACTIONS(5935), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5935), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5935), + [anon_sym_BQUOTE] = ACTIONS(5935), + [anon_sym_LT_LPAREN] = ACTIONS(5935), + [anon_sym_GT_LPAREN] = ACTIONS(5935), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5935), + [sym_word] = ACTIONS(5935), + [anon_sym_SEMI] = ACTIONS(5935), + [anon_sym_LF] = ACTIONS(5935), + [anon_sym_AMP] = ACTIONS(5935), + }, + [2822] = { + [sym__concat] = ACTIONS(5937), + [sym_variable_name] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(5939), + [anon_sym_SEMI_SEMI] = ACTIONS(5939), + [anon_sym_PIPE_AMP] = ACTIONS(5939), + [anon_sym_AMP_AMP] = ACTIONS(5939), + [anon_sym_PIPE_PIPE] = ACTIONS(5939), + [sym__special_characters] = ACTIONS(5939), + [anon_sym_DQUOTE] = ACTIONS(5939), + [anon_sym_DOLLAR] = ACTIONS(5939), + [sym_raw_string] = ACTIONS(5939), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5939), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5939), + [anon_sym_BQUOTE] = ACTIONS(5939), + [anon_sym_LT_LPAREN] = ACTIONS(5939), + [anon_sym_GT_LPAREN] = ACTIONS(5939), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5939), + [sym_word] = ACTIONS(5939), + [anon_sym_SEMI] = ACTIONS(5939), + [anon_sym_LF] = ACTIONS(5939), + [anon_sym_AMP] = ACTIONS(5939), + }, + [2823] = { + [sym__concat] = ACTIONS(5941), + [sym_variable_name] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(5943), + [anon_sym_SEMI_SEMI] = ACTIONS(5943), + [anon_sym_PIPE_AMP] = ACTIONS(5943), + [anon_sym_AMP_AMP] = ACTIONS(5943), + [anon_sym_PIPE_PIPE] = ACTIONS(5943), + [sym__special_characters] = ACTIONS(5943), + [anon_sym_DQUOTE] = ACTIONS(5943), + [anon_sym_DOLLAR] = ACTIONS(5943), + [sym_raw_string] = ACTIONS(5943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5943), + [anon_sym_BQUOTE] = ACTIONS(5943), + [anon_sym_LT_LPAREN] = ACTIONS(5943), + [anon_sym_GT_LPAREN] = ACTIONS(5943), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5943), + [sym_word] = ACTIONS(5943), + [anon_sym_SEMI] = ACTIONS(5943), + [anon_sym_LF] = ACTIONS(5943), + [anon_sym_AMP] = ACTIONS(5943), + }, + [2824] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6738), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2825] = { + [sym__concat] = ACTIONS(5947), + [sym_variable_name] = ACTIONS(5947), + [anon_sym_PIPE] = ACTIONS(5949), + [anon_sym_SEMI_SEMI] = ACTIONS(5949), + [anon_sym_PIPE_AMP] = ACTIONS(5949), + [anon_sym_AMP_AMP] = ACTIONS(5949), + [anon_sym_PIPE_PIPE] = ACTIONS(5949), + [sym__special_characters] = ACTIONS(5949), + [anon_sym_DQUOTE] = ACTIONS(5949), + [anon_sym_DOLLAR] = ACTIONS(5949), + [sym_raw_string] = ACTIONS(5949), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5949), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5949), + [anon_sym_BQUOTE] = ACTIONS(5949), + [anon_sym_LT_LPAREN] = ACTIONS(5949), + [anon_sym_GT_LPAREN] = ACTIONS(5949), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5949), + [sym_word] = ACTIONS(5949), + [anon_sym_SEMI] = ACTIONS(5949), + [anon_sym_LF] = ACTIONS(5949), + [anon_sym_AMP] = ACTIONS(5949), + }, + [2826] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6740), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2827] = { + [sym__concat] = ACTIONS(5953), + [sym_variable_name] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(5955), + [anon_sym_SEMI_SEMI] = ACTIONS(5955), + [anon_sym_PIPE_AMP] = ACTIONS(5955), + [anon_sym_AMP_AMP] = ACTIONS(5955), + [anon_sym_PIPE_PIPE] = ACTIONS(5955), + [sym__special_characters] = ACTIONS(5955), + [anon_sym_DQUOTE] = ACTIONS(5955), + [anon_sym_DOLLAR] = ACTIONS(5955), + [sym_raw_string] = ACTIONS(5955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5955), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5955), + [anon_sym_BQUOTE] = ACTIONS(5955), + [anon_sym_LT_LPAREN] = ACTIONS(5955), + [anon_sym_GT_LPAREN] = ACTIONS(5955), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5955), + [sym_word] = ACTIONS(5955), + [anon_sym_SEMI] = ACTIONS(5955), + [anon_sym_LF] = ACTIONS(5955), + [anon_sym_AMP] = ACTIONS(5955), + }, + [2828] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6742), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2829] = { + [sym__concat] = ACTIONS(5959), + [sym_variable_name] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_SEMI_SEMI] = ACTIONS(5961), + [anon_sym_PIPE_AMP] = ACTIONS(5961), + [anon_sym_AMP_AMP] = ACTIONS(5961), + [anon_sym_PIPE_PIPE] = ACTIONS(5961), + [sym__special_characters] = ACTIONS(5961), + [anon_sym_DQUOTE] = ACTIONS(5961), + [anon_sym_DOLLAR] = ACTIONS(5961), + [sym_raw_string] = ACTIONS(5961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5961), + [anon_sym_BQUOTE] = ACTIONS(5961), + [anon_sym_LT_LPAREN] = ACTIONS(5961), + [anon_sym_GT_LPAREN] = ACTIONS(5961), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5961), + [sym_word] = ACTIONS(5961), + [anon_sym_SEMI] = ACTIONS(5961), + [anon_sym_LF] = ACTIONS(5961), + [anon_sym_AMP] = ACTIONS(5961), + }, + [2830] = { + [sym__concat] = ACTIONS(5963), + [sym_variable_name] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(5965), + [anon_sym_SEMI_SEMI] = ACTIONS(5965), + [anon_sym_PIPE_AMP] = ACTIONS(5965), + [anon_sym_AMP_AMP] = ACTIONS(5965), + [anon_sym_PIPE_PIPE] = ACTIONS(5965), + [sym__special_characters] = ACTIONS(5965), + [anon_sym_DQUOTE] = ACTIONS(5965), + [anon_sym_DOLLAR] = ACTIONS(5965), + [sym_raw_string] = ACTIONS(5965), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5965), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5965), + [anon_sym_BQUOTE] = ACTIONS(5965), + [anon_sym_LT_LPAREN] = ACTIONS(5965), + [anon_sym_GT_LPAREN] = ACTIONS(5965), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5965), + [sym_word] = ACTIONS(5965), + [anon_sym_SEMI] = ACTIONS(5965), + [anon_sym_LF] = ACTIONS(5965), + [anon_sym_AMP] = ACTIONS(5965), + }, + [2831] = { + [sym__concat] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(5931), + [anon_sym_SEMI_SEMI] = ACTIONS(5931), + [anon_sym_PIPE_AMP] = ACTIONS(5931), + [anon_sym_AMP_AMP] = ACTIONS(5931), + [anon_sym_PIPE_PIPE] = ACTIONS(5931), + [sym__special_characters] = ACTIONS(5931), + [anon_sym_DQUOTE] = ACTIONS(5931), + [anon_sym_DOLLAR] = ACTIONS(5931), + [sym_raw_string] = ACTIONS(5931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5931), + [anon_sym_BQUOTE] = ACTIONS(5931), + [anon_sym_LT_LPAREN] = ACTIONS(5931), + [anon_sym_GT_LPAREN] = ACTIONS(5931), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5931), + [sym_word] = ACTIONS(5931), + [anon_sym_SEMI] = ACTIONS(5931), + [anon_sym_LF] = ACTIONS(5931), + [anon_sym_AMP] = ACTIONS(5931), + }, + [2832] = { + [sym__concat] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(5935), + [anon_sym_SEMI_SEMI] = ACTIONS(5935), + [anon_sym_PIPE_AMP] = ACTIONS(5935), + [anon_sym_AMP_AMP] = ACTIONS(5935), + [anon_sym_PIPE_PIPE] = ACTIONS(5935), + [sym__special_characters] = ACTIONS(5935), + [anon_sym_DQUOTE] = ACTIONS(5935), + [anon_sym_DOLLAR] = ACTIONS(5935), + [sym_raw_string] = ACTIONS(5935), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5935), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5935), + [anon_sym_BQUOTE] = ACTIONS(5935), + [anon_sym_LT_LPAREN] = ACTIONS(5935), + [anon_sym_GT_LPAREN] = ACTIONS(5935), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5935), + [sym_word] = ACTIONS(5935), + [anon_sym_SEMI] = ACTIONS(5935), + [anon_sym_LF] = ACTIONS(5935), + [anon_sym_AMP] = ACTIONS(5935), + }, + [2833] = { + [sym__concat] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(5939), + [anon_sym_SEMI_SEMI] = ACTIONS(5939), + [anon_sym_PIPE_AMP] = ACTIONS(5939), + [anon_sym_AMP_AMP] = ACTIONS(5939), + [anon_sym_PIPE_PIPE] = ACTIONS(5939), + [sym__special_characters] = ACTIONS(5939), + [anon_sym_DQUOTE] = ACTIONS(5939), + [anon_sym_DOLLAR] = ACTIONS(5939), + [sym_raw_string] = ACTIONS(5939), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5939), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5939), + [anon_sym_BQUOTE] = ACTIONS(5939), + [anon_sym_LT_LPAREN] = ACTIONS(5939), + [anon_sym_GT_LPAREN] = ACTIONS(5939), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5939), + [sym_word] = ACTIONS(5939), + [anon_sym_SEMI] = ACTIONS(5939), + [anon_sym_LF] = ACTIONS(5939), + [anon_sym_AMP] = ACTIONS(5939), + }, + [2834] = { + [sym__concat] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(5943), + [anon_sym_SEMI_SEMI] = ACTIONS(5943), + [anon_sym_PIPE_AMP] = ACTIONS(5943), + [anon_sym_AMP_AMP] = ACTIONS(5943), + [anon_sym_PIPE_PIPE] = ACTIONS(5943), + [sym__special_characters] = ACTIONS(5943), + [anon_sym_DQUOTE] = ACTIONS(5943), + [anon_sym_DOLLAR] = ACTIONS(5943), + [sym_raw_string] = ACTIONS(5943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5943), + [anon_sym_BQUOTE] = ACTIONS(5943), + [anon_sym_LT_LPAREN] = ACTIONS(5943), + [anon_sym_GT_LPAREN] = ACTIONS(5943), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5943), + [sym_word] = ACTIONS(5943), + [anon_sym_SEMI] = ACTIONS(5943), + [anon_sym_LF] = ACTIONS(5943), + [anon_sym_AMP] = ACTIONS(5943), + }, + [2835] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6744), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2836] = { + [sym__concat] = ACTIONS(5947), + [anon_sym_PIPE] = ACTIONS(5949), + [anon_sym_SEMI_SEMI] = ACTIONS(5949), + [anon_sym_PIPE_AMP] = ACTIONS(5949), + [anon_sym_AMP_AMP] = ACTIONS(5949), + [anon_sym_PIPE_PIPE] = ACTIONS(5949), + [sym__special_characters] = ACTIONS(5949), + [anon_sym_DQUOTE] = ACTIONS(5949), + [anon_sym_DOLLAR] = ACTIONS(5949), + [sym_raw_string] = ACTIONS(5949), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5949), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5949), + [anon_sym_BQUOTE] = ACTIONS(5949), + [anon_sym_LT_LPAREN] = ACTIONS(5949), + [anon_sym_GT_LPAREN] = ACTIONS(5949), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5949), + [sym_word] = ACTIONS(5949), + [anon_sym_SEMI] = ACTIONS(5949), + [anon_sym_LF] = ACTIONS(5949), + [anon_sym_AMP] = ACTIONS(5949), + }, + [2837] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6746), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2838] = { + [sym__concat] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(5955), + [anon_sym_SEMI_SEMI] = ACTIONS(5955), + [anon_sym_PIPE_AMP] = ACTIONS(5955), + [anon_sym_AMP_AMP] = ACTIONS(5955), + [anon_sym_PIPE_PIPE] = ACTIONS(5955), + [sym__special_characters] = ACTIONS(5955), + [anon_sym_DQUOTE] = ACTIONS(5955), + [anon_sym_DOLLAR] = ACTIONS(5955), + [sym_raw_string] = ACTIONS(5955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5955), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5955), + [anon_sym_BQUOTE] = ACTIONS(5955), + [anon_sym_LT_LPAREN] = ACTIONS(5955), + [anon_sym_GT_LPAREN] = ACTIONS(5955), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5955), + [sym_word] = ACTIONS(5955), + [anon_sym_SEMI] = ACTIONS(5955), + [anon_sym_LF] = ACTIONS(5955), + [anon_sym_AMP] = ACTIONS(5955), + }, + [2839] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6748), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2840] = { + [sym__concat] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_SEMI_SEMI] = ACTIONS(5961), + [anon_sym_PIPE_AMP] = ACTIONS(5961), + [anon_sym_AMP_AMP] = ACTIONS(5961), + [anon_sym_PIPE_PIPE] = ACTIONS(5961), + [sym__special_characters] = ACTIONS(5961), + [anon_sym_DQUOTE] = ACTIONS(5961), + [anon_sym_DOLLAR] = ACTIONS(5961), + [sym_raw_string] = ACTIONS(5961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5961), + [anon_sym_BQUOTE] = ACTIONS(5961), + [anon_sym_LT_LPAREN] = ACTIONS(5961), + [anon_sym_GT_LPAREN] = ACTIONS(5961), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5961), + [sym_word] = ACTIONS(5961), + [anon_sym_SEMI] = ACTIONS(5961), + [anon_sym_LF] = ACTIONS(5961), + [anon_sym_AMP] = ACTIONS(5961), + }, + [2841] = { + [sym__concat] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(5965), + [anon_sym_SEMI_SEMI] = ACTIONS(5965), + [anon_sym_PIPE_AMP] = ACTIONS(5965), + [anon_sym_AMP_AMP] = ACTIONS(5965), + [anon_sym_PIPE_PIPE] = ACTIONS(5965), + [sym__special_characters] = ACTIONS(5965), + [anon_sym_DQUOTE] = ACTIONS(5965), + [anon_sym_DOLLAR] = ACTIONS(5965), + [sym_raw_string] = ACTIONS(5965), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5965), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5965), + [anon_sym_BQUOTE] = ACTIONS(5965), + [anon_sym_LT_LPAREN] = ACTIONS(5965), + [anon_sym_GT_LPAREN] = ACTIONS(5965), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5965), + [sym_word] = ACTIONS(5965), + [anon_sym_SEMI] = ACTIONS(5965), + [anon_sym_LF] = ACTIONS(5965), + [anon_sym_AMP] = ACTIONS(5965), + }, + [2842] = { + [sym_file_descriptor] = ACTIONS(5929), + [sym__concat] = ACTIONS(5929), + [sym_variable_name] = ACTIONS(5929), + [anon_sym_LT] = ACTIONS(6710), + [anon_sym_GT] = ACTIONS(6710), + [anon_sym_GT_GT] = ACTIONS(5929), + [anon_sym_AMP_GT] = ACTIONS(6710), + [anon_sym_AMP_GT_GT] = ACTIONS(5929), + [anon_sym_LT_AMP] = ACTIONS(5929), + [anon_sym_GT_AMP] = ACTIONS(5929), + [sym__special_characters] = ACTIONS(6710), + [anon_sym_DQUOTE] = ACTIONS(5929), + [anon_sym_DOLLAR] = ACTIONS(6710), + [sym_raw_string] = ACTIONS(5929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5929), + [anon_sym_BQUOTE] = ACTIONS(5929), + [anon_sym_LT_LPAREN] = ACTIONS(5929), + [anon_sym_GT_LPAREN] = ACTIONS(5929), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6710), + }, + [2843] = { + [sym_file_descriptor] = ACTIONS(5933), + [sym__concat] = ACTIONS(5933), + [sym_variable_name] = ACTIONS(5933), + [anon_sym_LT] = ACTIONS(6712), + [anon_sym_GT] = ACTIONS(6712), + [anon_sym_GT_GT] = ACTIONS(5933), + [anon_sym_AMP_GT] = ACTIONS(6712), + [anon_sym_AMP_GT_GT] = ACTIONS(5933), + [anon_sym_LT_AMP] = ACTIONS(5933), + [anon_sym_GT_AMP] = ACTIONS(5933), + [sym__special_characters] = ACTIONS(6712), + [anon_sym_DQUOTE] = ACTIONS(5933), + [anon_sym_DOLLAR] = ACTIONS(6712), + [sym_raw_string] = ACTIONS(5933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5933), + [anon_sym_BQUOTE] = ACTIONS(5933), + [anon_sym_LT_LPAREN] = ACTIONS(5933), + [anon_sym_GT_LPAREN] = ACTIONS(5933), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6712), + }, + [2844] = { + [sym_file_descriptor] = ACTIONS(5937), + [sym__concat] = ACTIONS(5937), + [sym_variable_name] = ACTIONS(5937), + [anon_sym_LT] = ACTIONS(6714), + [anon_sym_GT] = ACTIONS(6714), + [anon_sym_GT_GT] = ACTIONS(5937), + [anon_sym_AMP_GT] = ACTIONS(6714), + [anon_sym_AMP_GT_GT] = ACTIONS(5937), + [anon_sym_LT_AMP] = ACTIONS(5937), + [anon_sym_GT_AMP] = ACTIONS(5937), + [sym__special_characters] = ACTIONS(6714), + [anon_sym_DQUOTE] = ACTIONS(5937), + [anon_sym_DOLLAR] = ACTIONS(6714), + [sym_raw_string] = ACTIONS(5937), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5937), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5937), + [anon_sym_BQUOTE] = ACTIONS(5937), + [anon_sym_LT_LPAREN] = ACTIONS(5937), + [anon_sym_GT_LPAREN] = ACTIONS(5937), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6714), + }, + [2845] = { + [sym_file_descriptor] = ACTIONS(5941), + [sym__concat] = ACTIONS(5941), + [sym_variable_name] = ACTIONS(5941), + [anon_sym_LT] = ACTIONS(6716), + [anon_sym_GT] = ACTIONS(6716), + [anon_sym_GT_GT] = ACTIONS(5941), + [anon_sym_AMP_GT] = ACTIONS(6716), + [anon_sym_AMP_GT_GT] = ACTIONS(5941), + [anon_sym_LT_AMP] = ACTIONS(5941), + [anon_sym_GT_AMP] = ACTIONS(5941), + [sym__special_characters] = ACTIONS(6716), + [anon_sym_DQUOTE] = ACTIONS(5941), + [anon_sym_DOLLAR] = ACTIONS(6716), + [sym_raw_string] = ACTIONS(5941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5941), + [anon_sym_BQUOTE] = ACTIONS(5941), + [anon_sym_LT_LPAREN] = ACTIONS(5941), + [anon_sym_GT_LPAREN] = ACTIONS(5941), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6716), + }, + [2846] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6750), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2847] = { + [sym_file_descriptor] = ACTIONS(5947), + [sym__concat] = ACTIONS(5947), + [sym_variable_name] = ACTIONS(5947), + [anon_sym_LT] = ACTIONS(6720), + [anon_sym_GT] = ACTIONS(6720), + [anon_sym_GT_GT] = ACTIONS(5947), + [anon_sym_AMP_GT] = ACTIONS(6720), + [anon_sym_AMP_GT_GT] = ACTIONS(5947), + [anon_sym_LT_AMP] = ACTIONS(5947), + [anon_sym_GT_AMP] = ACTIONS(5947), + [sym__special_characters] = ACTIONS(6720), + [anon_sym_DQUOTE] = ACTIONS(5947), + [anon_sym_DOLLAR] = ACTIONS(6720), + [sym_raw_string] = ACTIONS(5947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5947), + [anon_sym_BQUOTE] = ACTIONS(5947), + [anon_sym_LT_LPAREN] = ACTIONS(5947), + [anon_sym_GT_LPAREN] = ACTIONS(5947), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6720), + }, + [2848] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6752), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2849] = { + [sym_file_descriptor] = ACTIONS(5953), + [sym__concat] = ACTIONS(5953), + [sym_variable_name] = ACTIONS(5953), + [anon_sym_LT] = ACTIONS(6724), + [anon_sym_GT] = ACTIONS(6724), + [anon_sym_GT_GT] = ACTIONS(5953), + [anon_sym_AMP_GT] = ACTIONS(6724), + [anon_sym_AMP_GT_GT] = ACTIONS(5953), + [anon_sym_LT_AMP] = ACTIONS(5953), + [anon_sym_GT_AMP] = ACTIONS(5953), + [sym__special_characters] = ACTIONS(6724), + [anon_sym_DQUOTE] = ACTIONS(5953), + [anon_sym_DOLLAR] = ACTIONS(6724), + [sym_raw_string] = ACTIONS(5953), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5953), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5953), + [anon_sym_BQUOTE] = ACTIONS(5953), + [anon_sym_LT_LPAREN] = ACTIONS(5953), + [anon_sym_GT_LPAREN] = ACTIONS(5953), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6724), + }, + [2850] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6754), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2851] = { + [sym_file_descriptor] = ACTIONS(5959), + [sym__concat] = ACTIONS(5959), + [sym_variable_name] = ACTIONS(5959), + [anon_sym_LT] = ACTIONS(6728), + [anon_sym_GT] = ACTIONS(6728), + [anon_sym_GT_GT] = ACTIONS(5959), + [anon_sym_AMP_GT] = ACTIONS(6728), + [anon_sym_AMP_GT_GT] = ACTIONS(5959), + [anon_sym_LT_AMP] = ACTIONS(5959), + [anon_sym_GT_AMP] = ACTIONS(5959), + [sym__special_characters] = ACTIONS(6728), + [anon_sym_DQUOTE] = ACTIONS(5959), + [anon_sym_DOLLAR] = ACTIONS(6728), + [sym_raw_string] = ACTIONS(5959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5959), + [anon_sym_BQUOTE] = ACTIONS(5959), + [anon_sym_LT_LPAREN] = ACTIONS(5959), + [anon_sym_GT_LPAREN] = ACTIONS(5959), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6728), + }, + [2852] = { + [sym_file_descriptor] = ACTIONS(5963), + [sym__concat] = ACTIONS(5963), + [sym_variable_name] = ACTIONS(5963), + [anon_sym_LT] = ACTIONS(6730), + [anon_sym_GT] = ACTIONS(6730), + [anon_sym_GT_GT] = ACTIONS(5963), + [anon_sym_AMP_GT] = ACTIONS(6730), + [anon_sym_AMP_GT_GT] = ACTIONS(5963), + [anon_sym_LT_AMP] = ACTIONS(5963), + [anon_sym_GT_AMP] = ACTIONS(5963), + [sym__special_characters] = ACTIONS(6730), + [anon_sym_DQUOTE] = ACTIONS(5963), + [anon_sym_DOLLAR] = ACTIONS(6730), + [sym_raw_string] = ACTIONS(5963), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5963), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5963), + [anon_sym_BQUOTE] = ACTIONS(5963), + [anon_sym_LT_LPAREN] = ACTIONS(5963), + [anon_sym_GT_LPAREN] = ACTIONS(5963), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6730), + }, + [2853] = { + [sym__concat] = ACTIONS(5929), + [anon_sym_DQUOTE] = ACTIONS(5931), + [anon_sym_DOLLAR] = ACTIONS(5931), + [sym__string_content] = ACTIONS(6710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5931), + [anon_sym_BQUOTE] = ACTIONS(5931), + [sym_comment] = ACTIONS(182), + }, + [2854] = { + [sym__concat] = ACTIONS(5933), + [anon_sym_DQUOTE] = ACTIONS(5935), + [anon_sym_DOLLAR] = ACTIONS(5935), + [sym__string_content] = ACTIONS(6712), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5935), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5935), + [anon_sym_BQUOTE] = ACTIONS(5935), + [sym_comment] = ACTIONS(182), + }, + [2855] = { + [sym__concat] = ACTIONS(5937), + [anon_sym_DQUOTE] = ACTIONS(5939), + [anon_sym_DOLLAR] = ACTIONS(5939), + [sym__string_content] = ACTIONS(6714), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5939), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5939), + [anon_sym_BQUOTE] = ACTIONS(5939), + [sym_comment] = ACTIONS(182), + }, + [2856] = { + [sym__concat] = ACTIONS(5941), + [anon_sym_DQUOTE] = ACTIONS(5943), + [anon_sym_DOLLAR] = ACTIONS(5943), + [sym__string_content] = ACTIONS(6716), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5943), + [anon_sym_BQUOTE] = ACTIONS(5943), + [sym_comment] = ACTIONS(182), + }, + [2857] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6756), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2858] = { + [sym__concat] = ACTIONS(5947), + [anon_sym_DQUOTE] = ACTIONS(5949), + [anon_sym_DOLLAR] = ACTIONS(5949), + [sym__string_content] = ACTIONS(6720), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5949), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5949), + [anon_sym_BQUOTE] = ACTIONS(5949), + [sym_comment] = ACTIONS(182), + }, + [2859] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6758), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2860] = { + [sym__concat] = ACTIONS(5953), + [anon_sym_DQUOTE] = ACTIONS(5955), + [anon_sym_DOLLAR] = ACTIONS(5955), + [sym__string_content] = ACTIONS(6724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5955), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5955), + [anon_sym_BQUOTE] = ACTIONS(5955), + [sym_comment] = ACTIONS(182), + }, + [2861] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6760), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2862] = { + [sym__concat] = ACTIONS(5959), + [anon_sym_DQUOTE] = ACTIONS(5961), + [anon_sym_DOLLAR] = ACTIONS(5961), + [sym__string_content] = ACTIONS(6728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5961), + [anon_sym_BQUOTE] = ACTIONS(5961), + [sym_comment] = ACTIONS(182), + }, + [2863] = { + [sym__concat] = ACTIONS(5963), + [anon_sym_DQUOTE] = ACTIONS(5965), + [anon_sym_DOLLAR] = ACTIONS(5965), + [sym__string_content] = ACTIONS(6730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5965), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5965), + [anon_sym_BQUOTE] = ACTIONS(5965), + [sym_comment] = ACTIONS(182), + }, + [2864] = { + [anon_sym_RBRACE] = ACTIONS(5317), + [anon_sym_EQ] = ACTIONS(6762), + [sym__special_characters] = ACTIONS(6764), + [anon_sym_DQUOTE] = ACTIONS(5317), + [anon_sym_DOLLAR] = ACTIONS(6762), + [sym_raw_string] = ACTIONS(5317), + [anon_sym_POUND] = ACTIONS(5317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5317), + [aux_sym_SLASH] = ACTIONS(5317), + [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(5317), + [anon_sym_BQUOTE] = ACTIONS(5317), + [anon_sym_LT_LPAREN] = ACTIONS(5317), + [anon_sym_GT_LPAREN] = ACTIONS(5317), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6764), + }, + [2865] = { + [anon_sym_RBRACE] = ACTIONS(5319), + [anon_sym_EQ] = ACTIONS(6766), + [sym__special_characters] = ACTIONS(6768), + [anon_sym_DQUOTE] = ACTIONS(5319), + [anon_sym_DOLLAR] = ACTIONS(6766), + [sym_raw_string] = ACTIONS(5319), + [anon_sym_POUND] = ACTIONS(5319), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5319), + [aux_sym_SLASH] = ACTIONS(5319), + [anon_sym_COLON] = ACTIONS(6766), + [anon_sym_COLON_QMARK] = ACTIONS(6766), + [anon_sym_COLON_DASH] = ACTIONS(6766), + [anon_sym_PERCENT] = ACTIONS(6766), + [anon_sym_DASH] = ACTIONS(6766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5319), + [anon_sym_BQUOTE] = ACTIONS(5319), + [anon_sym_LT_LPAREN] = ACTIONS(5319), + [anon_sym_GT_LPAREN] = ACTIONS(5319), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6768), + }, + [2866] = { + [sym__concat] = ACTIONS(3235), + [anon_sym_RBRACE] = ACTIONS(3235), + [sym_comment] = ACTIONS(56), + }, + [2867] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6770), + [sym_comment] = ACTIONS(56), + }, + [2868] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6772), + [sym_comment] = ACTIONS(56), + }, + [2869] = { + [anon_sym_RBRACE] = ACTIONS(6772), + [sym_comment] = ACTIONS(56), + }, + [2870] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3353), + [anon_sym_RBRACE] = ACTIONS(6774), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2871] = { + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(3297), + [sym_comment] = ACTIONS(56), + }, + [2872] = { + [sym_concatenation] = STATE(3356), + [sym_string] = STATE(3355), + [sym_simple_expansion] = STATE(3355), + [sym_string_expansion] = STATE(3355), + [sym_expansion] = STATE(3355), + [sym_command_substitution] = STATE(3355), + [sym_process_substitution] = STATE(3355), + [anon_sym_RBRACE] = ACTIONS(6772), + [sym__special_characters] = ACTIONS(6776), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(6778), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6780), + }, + [2873] = { + [sym__concat] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [sym_comment] = ACTIONS(56), + }, + [2874] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6782), + }, + [2875] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6784), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2876] = { + [sym__concat] = ACTIONS(3350), + [anon_sym_RBRACE] = ACTIONS(3350), + [sym_comment] = ACTIONS(56), + }, + [2877] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6786), + }, + [2878] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6788), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2879] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6790), + }, + [2880] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6772), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2881] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3363), + [anon_sym_RBRACE] = ACTIONS(6792), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2882] = { + [sym__concat] = ACTIONS(3362), + [anon_sym_RBRACE] = ACTIONS(3362), + [sym_comment] = ACTIONS(56), + }, + [2883] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3365), + [anon_sym_RBRACE] = ACTIONS(6794), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2884] = { + [sym__concat] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(5748), + [sym__special_characters] = ACTIONS(4730), + [anon_sym_DQUOTE] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(5748), + [sym_raw_string] = ACTIONS(4728), + [anon_sym_POUND] = ACTIONS(4728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4728), + [anon_sym_COLON] = ACTIONS(5748), + [anon_sym_COLON_QMARK] = ACTIONS(5748), + [anon_sym_COLON_DASH] = ACTIONS(5748), + [anon_sym_PERCENT] = ACTIONS(5748), + [anon_sym_DASH] = ACTIONS(5748), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LT_LPAREN] = ACTIONS(4728), + [anon_sym_GT_LPAREN] = ACTIONS(4728), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4730), + }, + [2885] = { + [sym__concat] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(4734), + [anon_sym_EQ] = ACTIONS(5750), + [sym__special_characters] = ACTIONS(4736), + [anon_sym_DQUOTE] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(5750), + [sym_raw_string] = ACTIONS(4734), + [anon_sym_POUND] = ACTIONS(4734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4734), + [anon_sym_COLON] = ACTIONS(5750), + [anon_sym_COLON_QMARK] = ACTIONS(5750), + [anon_sym_COLON_DASH] = ACTIONS(5750), + [anon_sym_PERCENT] = ACTIONS(5750), + [anon_sym_DASH] = ACTIONS(5750), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4734), + [anon_sym_BQUOTE] = ACTIONS(4734), + [anon_sym_LT_LPAREN] = ACTIONS(4734), + [anon_sym_GT_LPAREN] = ACTIONS(4734), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4736), + }, + [2886] = { + [sym__concat] = ACTIONS(4797), + [anon_sym_RBRACE] = ACTIONS(4797), + [anon_sym_EQ] = ACTIONS(5752), + [sym__special_characters] = ACTIONS(4799), + [anon_sym_DQUOTE] = ACTIONS(4797), + [anon_sym_DOLLAR] = ACTIONS(5752), + [sym_raw_string] = ACTIONS(4797), + [anon_sym_POUND] = ACTIONS(4797), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4797), + [anon_sym_COLON] = ACTIONS(5752), + [anon_sym_COLON_QMARK] = ACTIONS(5752), + [anon_sym_COLON_DASH] = ACTIONS(5752), + [anon_sym_PERCENT] = ACTIONS(5752), + [anon_sym_DASH] = ACTIONS(5752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4797), + [anon_sym_BQUOTE] = ACTIONS(4797), + [anon_sym_LT_LPAREN] = ACTIONS(4797), + [anon_sym_GT_LPAREN] = ACTIONS(4797), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4799), + }, + [2887] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6796), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2888] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6798), + [sym_comment] = ACTIONS(56), + }, + [2889] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6800), + [sym_comment] = ACTIONS(56), + }, + [2890] = { + [anon_sym_RBRACE] = ACTIONS(6800), + [sym_comment] = ACTIONS(56), + }, + [2891] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3370), + [anon_sym_RBRACE] = ACTIONS(6802), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2892] = { + [sym__concat] = ACTIONS(4809), + [anon_sym_RBRACE] = ACTIONS(4809), + [anon_sym_EQ] = ACTIONS(5762), + [sym__special_characters] = ACTIONS(4811), + [anon_sym_DQUOTE] = ACTIONS(4809), + [anon_sym_DOLLAR] = ACTIONS(5762), + [sym_raw_string] = ACTIONS(4809), + [anon_sym_POUND] = ACTIONS(4809), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4809), + [anon_sym_COLON] = ACTIONS(5762), + [anon_sym_COLON_QMARK] = ACTIONS(5762), + [anon_sym_COLON_DASH] = ACTIONS(5762), + [anon_sym_PERCENT] = ACTIONS(5762), + [anon_sym_DASH] = ACTIONS(5762), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4809), + [anon_sym_BQUOTE] = ACTIONS(4809), + [anon_sym_LT_LPAREN] = ACTIONS(4809), + [anon_sym_GT_LPAREN] = ACTIONS(4809), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4811), + }, + [2893] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3372), + [anon_sym_RBRACE] = ACTIONS(6804), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2894] = { + [sym__concat] = ACTIONS(4815), + [anon_sym_RBRACE] = ACTIONS(4815), + [anon_sym_EQ] = ACTIONS(5766), + [sym__special_characters] = ACTIONS(4817), + [anon_sym_DQUOTE] = ACTIONS(4815), + [anon_sym_DOLLAR] = ACTIONS(5766), + [sym_raw_string] = ACTIONS(4815), + [anon_sym_POUND] = ACTIONS(4815), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4815), + [anon_sym_COLON] = ACTIONS(5766), + [anon_sym_COLON_QMARK] = ACTIONS(5766), + [anon_sym_COLON_DASH] = ACTIONS(5766), + [anon_sym_PERCENT] = ACTIONS(5766), + [anon_sym_DASH] = ACTIONS(5766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4815), + [anon_sym_BQUOTE] = ACTIONS(4815), + [anon_sym_LT_LPAREN] = ACTIONS(4815), + [anon_sym_GT_LPAREN] = ACTIONS(4815), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4817), + }, + [2895] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3374), + [anon_sym_RBRACE] = ACTIONS(6806), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2896] = { + [sym__concat] = ACTIONS(4821), + [anon_sym_RBRACE] = ACTIONS(4821), + [anon_sym_EQ] = ACTIONS(5770), + [sym__special_characters] = ACTIONS(4823), + [anon_sym_DQUOTE] = ACTIONS(4821), + [anon_sym_DOLLAR] = ACTIONS(5770), + [sym_raw_string] = ACTIONS(4821), + [anon_sym_POUND] = ACTIONS(4821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4821), + [anon_sym_COLON] = ACTIONS(5770), + [anon_sym_COLON_QMARK] = ACTIONS(5770), + [anon_sym_COLON_DASH] = ACTIONS(5770), + [anon_sym_PERCENT] = ACTIONS(5770), + [anon_sym_DASH] = ACTIONS(5770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4821), + [anon_sym_BQUOTE] = ACTIONS(4821), + [anon_sym_LT_LPAREN] = ACTIONS(4821), + [anon_sym_GT_LPAREN] = ACTIONS(4821), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4823), + }, + [2897] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6808), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2898] = { + [sym__concat] = ACTIONS(4827), + [anon_sym_RBRACE] = ACTIONS(4827), + [anon_sym_EQ] = ACTIONS(5774), + [sym__special_characters] = ACTIONS(4829), + [anon_sym_DQUOTE] = ACTIONS(4827), + [anon_sym_DOLLAR] = ACTIONS(5774), + [sym_raw_string] = ACTIONS(4827), + [anon_sym_POUND] = ACTIONS(4827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4827), + [anon_sym_COLON] = ACTIONS(5774), + [anon_sym_COLON_QMARK] = ACTIONS(5774), + [anon_sym_COLON_DASH] = ACTIONS(5774), + [anon_sym_PERCENT] = ACTIONS(5774), + [anon_sym_DASH] = ACTIONS(5774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4827), + [anon_sym_BQUOTE] = ACTIONS(4827), + [anon_sym_LT_LPAREN] = ACTIONS(4827), + [anon_sym_GT_LPAREN] = ACTIONS(4827), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4829), + }, + [2899] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6810), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2900] = { + [sym_file_descriptor] = ACTIONS(6812), + [sym__concat] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_SEMI_SEMI] = ACTIONS(6814), + [anon_sym_PIPE_AMP] = ACTIONS(6814), + [anon_sym_AMP_AMP] = ACTIONS(6814), + [anon_sym_PIPE_PIPE] = ACTIONS(6814), + [anon_sym_EQ_TILDE] = ACTIONS(6814), + [anon_sym_LT] = ACTIONS(6814), + [anon_sym_GT] = ACTIONS(6814), + [anon_sym_GT_GT] = ACTIONS(6814), + [anon_sym_AMP_GT] = ACTIONS(6814), + [anon_sym_AMP_GT_GT] = ACTIONS(6814), + [anon_sym_LT_AMP] = ACTIONS(6814), + [anon_sym_GT_AMP] = ACTIONS(6814), + [anon_sym_LT_LT] = ACTIONS(6814), + [anon_sym_LT_LT_DASH] = ACTIONS(6814), + [anon_sym_LT_LT_LT] = ACTIONS(6814), + [sym__special_characters] = ACTIONS(6814), + [anon_sym_DQUOTE] = ACTIONS(6814), + [anon_sym_DOLLAR] = ACTIONS(6814), + [sym_raw_string] = ACTIONS(6814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6814), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6814), + [anon_sym_BQUOTE] = ACTIONS(6814), + [anon_sym_LT_LPAREN] = ACTIONS(6814), + [anon_sym_GT_LPAREN] = ACTIONS(6814), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6814), + [anon_sym_SEMI] = ACTIONS(6814), + [anon_sym_LF] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6814), + }, + [2901] = { + [sym_file_descriptor] = ACTIONS(6816), + [sym__concat] = ACTIONS(6816), + [anon_sym_PIPE] = ACTIONS(6818), + [anon_sym_SEMI_SEMI] = ACTIONS(6818), + [anon_sym_PIPE_AMP] = ACTIONS(6818), + [anon_sym_AMP_AMP] = ACTIONS(6818), + [anon_sym_PIPE_PIPE] = ACTIONS(6818), + [anon_sym_EQ_TILDE] = ACTIONS(6818), + [anon_sym_LT] = ACTIONS(6818), + [anon_sym_GT] = ACTIONS(6818), + [anon_sym_GT_GT] = ACTIONS(6818), + [anon_sym_AMP_GT] = ACTIONS(6818), + [anon_sym_AMP_GT_GT] = ACTIONS(6818), + [anon_sym_LT_AMP] = ACTIONS(6818), + [anon_sym_GT_AMP] = ACTIONS(6818), + [anon_sym_LT_LT] = ACTIONS(6818), + [anon_sym_LT_LT_DASH] = ACTIONS(6818), + [anon_sym_LT_LT_LT] = ACTIONS(6818), + [sym__special_characters] = ACTIONS(6818), + [anon_sym_DQUOTE] = ACTIONS(6818), + [anon_sym_DOLLAR] = ACTIONS(6818), + [sym_raw_string] = ACTIONS(6818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6818), + [anon_sym_BQUOTE] = ACTIONS(6818), + [anon_sym_LT_LPAREN] = ACTIONS(6818), + [anon_sym_GT_LPAREN] = ACTIONS(6818), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6818), + [anon_sym_SEMI] = ACTIONS(6818), + [anon_sym_LF] = ACTIONS(6818), + [anon_sym_AMP] = ACTIONS(6818), + }, + [2902] = { + [sym_file_descriptor] = ACTIONS(6820), + [sym__concat] = ACTIONS(6820), + [anon_sym_PIPE] = ACTIONS(6822), + [anon_sym_SEMI_SEMI] = ACTIONS(6822), + [anon_sym_PIPE_AMP] = ACTIONS(6822), + [anon_sym_AMP_AMP] = ACTIONS(6822), + [anon_sym_PIPE_PIPE] = ACTIONS(6822), + [anon_sym_EQ_TILDE] = ACTIONS(6822), + [anon_sym_LT] = ACTIONS(6822), + [anon_sym_GT] = ACTIONS(6822), + [anon_sym_GT_GT] = ACTIONS(6822), + [anon_sym_AMP_GT] = ACTIONS(6822), + [anon_sym_AMP_GT_GT] = ACTIONS(6822), + [anon_sym_LT_AMP] = ACTIONS(6822), + [anon_sym_GT_AMP] = ACTIONS(6822), + [anon_sym_LT_LT] = ACTIONS(6822), + [anon_sym_LT_LT_DASH] = ACTIONS(6822), + [anon_sym_LT_LT_LT] = ACTIONS(6822), + [sym__special_characters] = ACTIONS(6822), + [anon_sym_DQUOTE] = ACTIONS(6822), + [anon_sym_DOLLAR] = ACTIONS(6822), + [sym_raw_string] = ACTIONS(6822), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6822), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6822), + [anon_sym_BQUOTE] = ACTIONS(6822), + [anon_sym_LT_LPAREN] = ACTIONS(6822), + [anon_sym_GT_LPAREN] = ACTIONS(6822), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6822), + [anon_sym_SEMI] = ACTIONS(6822), + [anon_sym_LF] = ACTIONS(6822), + [anon_sym_AMP] = ACTIONS(6822), + }, + [2903] = { + [sym_file_descriptor] = ACTIONS(3235), + [sym__concat] = ACTIONS(3235), + [sym_variable_name] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(3235), + [anon_sym_PIPE_AMP] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_LT] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_GT_GT] = ACTIONS(3235), + [anon_sym_AMP_GT] = ACTIONS(4540), + [anon_sym_AMP_GT_GT] = ACTIONS(3235), + [anon_sym_LT_AMP] = ACTIONS(3235), + [anon_sym_GT_AMP] = ACTIONS(3235), + [sym__special_characters] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_DOLLAR] = ACTIONS(4540), + [sym_raw_string] = ACTIONS(3235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3235), + [anon_sym_BQUOTE] = ACTIONS(3235), + [anon_sym_LT_LPAREN] = ACTIONS(3235), + [anon_sym_GT_LPAREN] = ACTIONS(3235), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4540), + }, + [2904] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6824), + [sym_comment] = ACTIONS(56), + }, + [2905] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6826), + [sym_comment] = ACTIONS(56), + }, + [2906] = { + [anon_sym_RBRACE] = ACTIONS(6826), + [sym_comment] = ACTIONS(56), + }, + [2907] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3380), + [anon_sym_RBRACE] = ACTIONS(6828), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2908] = { + [sym_file_descriptor] = ACTIONS(3297), + [sym__concat] = ACTIONS(3297), + [sym_variable_name] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(3297), + [anon_sym_PIPE_AMP] = ACTIONS(3297), + [anon_sym_AMP_AMP] = ACTIONS(3297), + [anon_sym_PIPE_PIPE] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4548), + [anon_sym_GT_GT] = ACTIONS(3297), + [anon_sym_AMP_GT] = ACTIONS(4548), + [anon_sym_AMP_GT_GT] = ACTIONS(3297), + [anon_sym_LT_AMP] = ACTIONS(3297), + [anon_sym_GT_AMP] = ACTIONS(3297), + [sym__special_characters] = ACTIONS(4548), + [anon_sym_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(4548), + [sym_raw_string] = ACTIONS(3297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3297), + [anon_sym_BQUOTE] = ACTIONS(3297), + [anon_sym_LT_LPAREN] = ACTIONS(3297), + [anon_sym_GT_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4548), + }, + [2909] = { + [sym_concatenation] = STATE(3383), + [sym_string] = STATE(3382), + [sym_simple_expansion] = STATE(3382), + [sym_string_expansion] = STATE(3382), + [sym_expansion] = STATE(3382), + [sym_command_substitution] = STATE(3382), + [sym_process_substitution] = STATE(3382), + [anon_sym_RBRACE] = ACTIONS(6826), + [sym__special_characters] = ACTIONS(6830), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(6832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6834), + }, + [2910] = { + [sym_file_descriptor] = ACTIONS(3342), + [sym__concat] = ACTIONS(3342), + [sym_variable_name] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(3342), + [anon_sym_PIPE_AMP] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4556), + [anon_sym_GT_GT] = ACTIONS(3342), + [anon_sym_AMP_GT] = ACTIONS(4556), + [anon_sym_AMP_GT_GT] = ACTIONS(3342), + [anon_sym_LT_AMP] = ACTIONS(3342), + [anon_sym_GT_AMP] = ACTIONS(3342), + [sym__special_characters] = ACTIONS(4556), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(4556), + [sym_raw_string] = ACTIONS(3342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3342), + [anon_sym_BQUOTE] = ACTIONS(3342), + [anon_sym_LT_LPAREN] = ACTIONS(3342), + [anon_sym_GT_LPAREN] = ACTIONS(3342), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4556), + }, + [2911] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6836), + }, + [2912] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6838), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2913] = { + [sym_file_descriptor] = ACTIONS(3350), + [sym__concat] = ACTIONS(3350), + [sym_variable_name] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(3350), + [anon_sym_PIPE_AMP] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_GT_GT] = ACTIONS(3350), + [anon_sym_AMP_GT] = ACTIONS(4562), + [anon_sym_AMP_GT_GT] = ACTIONS(3350), + [anon_sym_LT_AMP] = ACTIONS(3350), + [anon_sym_GT_AMP] = ACTIONS(3350), + [sym__special_characters] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_DOLLAR] = ACTIONS(4562), + [sym_raw_string] = ACTIONS(3350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3350), + [anon_sym_BQUOTE] = ACTIONS(3350), + [anon_sym_LT_LPAREN] = ACTIONS(3350), + [anon_sym_GT_LPAREN] = ACTIONS(3350), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4562), + }, + [2914] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6840), + }, + [2915] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6842), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2916] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6844), + }, + [2917] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6826), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2918] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3390), + [anon_sym_RBRACE] = ACTIONS(6846), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2919] = { + [sym_file_descriptor] = ACTIONS(3362), + [sym__concat] = ACTIONS(3362), + [sym_variable_name] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(3362), + [anon_sym_PIPE_AMP] = ACTIONS(3362), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_PIPE_PIPE] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(4572), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_GT_GT] = ACTIONS(3362), + [anon_sym_AMP_GT] = ACTIONS(4572), + [anon_sym_AMP_GT_GT] = ACTIONS(3362), + [anon_sym_LT_AMP] = ACTIONS(3362), + [anon_sym_GT_AMP] = ACTIONS(3362), + [sym__special_characters] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(3362), + [anon_sym_DOLLAR] = ACTIONS(4572), + [sym_raw_string] = ACTIONS(3362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3362), + [anon_sym_BQUOTE] = ACTIONS(3362), + [anon_sym_LT_LPAREN] = ACTIONS(3362), + [anon_sym_GT_LPAREN] = ACTIONS(3362), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4572), + }, + [2920] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3392), + [anon_sym_RBRACE] = ACTIONS(6848), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2921] = { + [sym__terminated_statement] = STATE(691), + [sym_for_statement] = STATE(692), + [sym_while_statement] = STATE(692), + [sym_if_statement] = STATE(692), + [sym_case_statement] = STATE(692), + [sym_function_definition] = STATE(692), + [sym_subshell] = STATE(692), + [sym_pipeline] = STATE(692), + [sym_list] = STATE(692), + [sym_command] = STATE(692), [sym_command_name] = STATE(27), - [sym_variable_assignment] = STATE(28), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), + [sym_bracket_command] = STATE(692), + [sym_variable_assignment] = STATE(693), + [sym_declaration_command] = STATE(692), + [sym_unset_command] = STATE(692), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -70389,15 +74367,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(2812), + [aux_sym_program_repeat1] = STATE(3394), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), + [anon_sym_done] = ACTIONS(6850), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(5959), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -70428,288 +74406,20148 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(58), }, - [2816] = { - [sym__concat] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_SEMI_SEMI] = ACTIONS(5023), - [anon_sym_PIPE_AMP] = ACTIONS(5023), - [anon_sym_AMP_AMP] = ACTIONS(5023), - [anon_sym_PIPE_PIPE] = ACTIONS(5023), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_LF] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(5023), - }, - [2817] = { - [sym__concat] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_SEMI_SEMI] = ACTIONS(5027), - [anon_sym_PIPE_AMP] = ACTIONS(5027), - [anon_sym_AMP_AMP] = ACTIONS(5027), - [anon_sym_PIPE_PIPE] = ACTIONS(5027), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_LF] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(5027), - }, - [2818] = { - [sym__concat] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4216), - [anon_sym_RPAREN] = ACTIONS(4216), - [anon_sym_SEMI_SEMI] = ACTIONS(4216), - [anon_sym_PIPE_AMP] = ACTIONS(4216), - [anon_sym_AMP_AMP] = ACTIONS(4216), - [anon_sym_PIPE_PIPE] = ACTIONS(4216), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4216), - [anon_sym_LF] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - }, - [2819] = { - [sym__concat] = ACTIONS(4220), - [anon_sym_PIPE] = ACTIONS(4222), - [anon_sym_RPAREN] = ACTIONS(4222), - [anon_sym_SEMI_SEMI] = ACTIONS(4222), - [anon_sym_PIPE_AMP] = ACTIONS(4222), - [anon_sym_AMP_AMP] = ACTIONS(4222), - [anon_sym_PIPE_PIPE] = ACTIONS(4222), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4222), - [anon_sym_LF] = ACTIONS(4222), - [anon_sym_AMP] = ACTIONS(4222), - }, - [2820] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5961), + [2922] = { + [anon_sym_PIPE] = ACTIONS(6852), + [anon_sym_RPAREN] = ACTIONS(6854), + [anon_sym_PIPE_AMP] = ACTIONS(6854), + [anon_sym_AMP_AMP] = ACTIONS(6854), + [anon_sym_PIPE_PIPE] = ACTIONS(6854), + [anon_sym_BQUOTE] = ACTIONS(6854), [sym_comment] = ACTIONS(56), }, - [2821] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), + [2923] = { + [anon_sym_PIPE] = ACTIONS(6856), + [anon_sym_RPAREN] = ACTIONS(6858), + [anon_sym_PIPE_AMP] = ACTIONS(6858), + [anon_sym_AMP_AMP] = ACTIONS(6858), + [anon_sym_PIPE_PIPE] = ACTIONS(6858), + [anon_sym_BQUOTE] = ACTIONS(6858), + [sym_comment] = ACTIONS(56), + }, + [2924] = { + [anon_sym_fi] = ACTIONS(6860), + [sym_comment] = ACTIONS(56), + }, + [2925] = { + [anon_sym_PIPE] = ACTIONS(6862), + [anon_sym_RPAREN] = ACTIONS(6864), + [anon_sym_PIPE_AMP] = ACTIONS(6864), + [anon_sym_AMP_AMP] = ACTIONS(6864), + [anon_sym_PIPE_PIPE] = ACTIONS(6864), + [anon_sym_BQUOTE] = ACTIONS(6864), + [sym_comment] = ACTIONS(56), + }, + [2926] = { + [anon_sym_esac] = ACTIONS(6866), + [sym_comment] = ACTIONS(56), + }, + [2927] = { + [anon_sym_PIPE] = ACTIONS(6868), + [anon_sym_RPAREN] = ACTIONS(6870), + [anon_sym_PIPE_AMP] = ACTIONS(6870), + [anon_sym_AMP_AMP] = ACTIONS(6870), + [anon_sym_PIPE_PIPE] = ACTIONS(6870), + [anon_sym_BQUOTE] = ACTIONS(6870), + [sym_comment] = ACTIONS(56), + }, + [2928] = { + [sym_case_item] = STATE(1332), + [sym_last_case_item] = STATE(3397), + [sym_concatenation] = STATE(1334), + [sym_string] = STATE(1327), + [sym_simple_expansion] = STATE(1327), + [sym_string_expansion] = STATE(1327), + [sym_expansion] = STATE(1327), + [sym_command_substitution] = STATE(1327), + [sym_process_substitution] = STATE(1327), + [aux_sym_case_statement_repeat1] = STATE(2011), + [sym__special_characters] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2657), + [sym_raw_string] = ACTIONS(2659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2663), + [anon_sym_BQUOTE] = ACTIONS(2665), + [anon_sym_LT_LPAREN] = ACTIONS(2667), + [anon_sym_GT_LPAREN] = ACTIONS(2667), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4292), + }, + [2929] = { + [anon_sym_PIPE] = ACTIONS(6872), + [anon_sym_RPAREN] = ACTIONS(6874), + [anon_sym_PIPE_AMP] = ACTIONS(6874), + [anon_sym_AMP_AMP] = ACTIONS(6874), + [anon_sym_PIPE_PIPE] = ACTIONS(6874), + [anon_sym_BQUOTE] = ACTIONS(6874), + [sym_comment] = ACTIONS(56), + }, + [2930] = { + [anon_sym_esac] = ACTIONS(6876), + [sym_comment] = ACTIONS(56), + }, + [2931] = { + [anon_sym_PIPE] = ACTIONS(6878), + [anon_sym_RPAREN] = ACTIONS(6880), + [anon_sym_PIPE_AMP] = ACTIONS(6880), + [anon_sym_AMP_AMP] = ACTIONS(6880), + [anon_sym_PIPE_PIPE] = ACTIONS(6880), + [anon_sym_BQUOTE] = ACTIONS(6880), + [sym_comment] = ACTIONS(56), + }, + [2932] = { + [sym_case_item] = STATE(1332), + [sym_last_case_item] = STATE(3399), + [sym_concatenation] = STATE(1334), + [sym_string] = STATE(1327), + [sym_simple_expansion] = STATE(1327), + [sym_string_expansion] = STATE(1327), + [sym_expansion] = STATE(1327), + [sym_command_substitution] = STATE(1327), + [sym_process_substitution] = STATE(1327), + [aux_sym_case_statement_repeat1] = STATE(2011), + [sym__special_characters] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2657), + [sym_raw_string] = ACTIONS(2659), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2663), + [anon_sym_BQUOTE] = ACTIONS(2665), + [anon_sym_LT_LPAREN] = ACTIONS(2667), + [anon_sym_GT_LPAREN] = ACTIONS(2667), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4292), + }, + [2933] = { + [anon_sym_PIPE] = ACTIONS(6882), + [anon_sym_RPAREN] = ACTIONS(6884), + [anon_sym_PIPE_AMP] = ACTIONS(6884), + [anon_sym_AMP_AMP] = ACTIONS(6884), + [anon_sym_PIPE_PIPE] = ACTIONS(6884), + [anon_sym_BQUOTE] = ACTIONS(6884), + [sym_comment] = ACTIONS(56), + }, + [2934] = { + [aux_sym_concatenation_repeat1] = STATE(2938), + [sym__concat] = ACTIONS(6040), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_RPAREN] = ACTIONS(1219), + [anon_sym_PIPE_AMP] = ACTIONS(1219), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [sym_comment] = ACTIONS(56), + }, + [2935] = { + [aux_sym_concatenation_repeat1] = STATE(2938), + [sym__concat] = ACTIONS(6040), + [anon_sym_PIPE] = ACTIONS(1225), + [anon_sym_RPAREN] = ACTIONS(1223), + [anon_sym_PIPE_AMP] = ACTIONS(1223), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [sym_comment] = ACTIONS(56), + }, + [2936] = { + [anon_sym_PIPE] = ACTIONS(1225), + [anon_sym_RPAREN] = ACTIONS(1223), + [anon_sym_PIPE_AMP] = ACTIONS(1223), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [anon_sym_BQUOTE] = ACTIONS(1223), + [sym_comment] = ACTIONS(56), + }, + [2937] = { + [sym_string] = STATE(3400), + [sym_simple_expansion] = STATE(3400), + [sym_string_expansion] = STATE(3400), + [sym_expansion] = STATE(3400), + [sym_command_substitution] = STATE(3400), + [sym_process_substitution] = STATE(3400), + [sym__special_characters] = ACTIONS(6886), + [anon_sym_DQUOTE] = ACTIONS(4905), + [anon_sym_DOLLAR] = ACTIONS(4907), + [sym_raw_string] = ACTIONS(6888), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4911), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4913), + [anon_sym_BQUOTE] = ACTIONS(4915), + [anon_sym_LT_LPAREN] = ACTIONS(4917), + [anon_sym_GT_LPAREN] = ACTIONS(4917), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6886), + }, + [2938] = { + [aux_sym_concatenation_repeat1] = STATE(3401), + [sym__concat] = ACTIONS(6040), + [anon_sym_PIPE] = ACTIONS(1539), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_PIPE_AMP] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(772), + [anon_sym_PIPE_PIPE] = ACTIONS(772), + [sym_comment] = ACTIONS(56), + }, + [2939] = { + [sym__concat] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_RPAREN] = ACTIONS(776), + [anon_sym_PIPE_AMP] = ACTIONS(776), + [anon_sym_AMP_AMP] = ACTIONS(776), + [anon_sym_PIPE_PIPE] = ACTIONS(776), + [sym_comment] = ACTIONS(56), + }, + [2940] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(6890), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [2941] = { + [sym__concat] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_RPAREN] = ACTIONS(808), + [anon_sym_PIPE_AMP] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [sym_comment] = ACTIONS(56), + }, + [2942] = { + [sym__concat] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(1547), + [anon_sym_RPAREN] = ACTIONS(812), + [anon_sym_PIPE_AMP] = ACTIONS(812), + [anon_sym_AMP_AMP] = ACTIONS(812), + [anon_sym_PIPE_PIPE] = ACTIONS(812), + [sym_comment] = ACTIONS(56), + }, + [2943] = { + [sym__concat] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_RPAREN] = ACTIONS(816), + [anon_sym_PIPE_AMP] = ACTIONS(816), + [anon_sym_AMP_AMP] = ACTIONS(816), + [anon_sym_PIPE_PIPE] = ACTIONS(816), + [sym_comment] = ACTIONS(56), + }, + [2944] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(6892), + [sym_comment] = ACTIONS(56), + }, + [2945] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3406), + [anon_sym_RBRACE] = ACTIONS(6894), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(6896), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2946] = { + [sym_subscript] = STATE(3410), + [sym_variable_name] = ACTIONS(6898), + [anon_sym_DOLLAR] = ACTIONS(6900), + [anon_sym_DASH] = ACTIONS(6900), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6902), + [anon_sym_STAR] = ACTIONS(6900), + [anon_sym_AT] = ACTIONS(6900), + [anon_sym_QMARK] = ACTIONS(6900), + [anon_sym_0] = ACTIONS(6904), + [anon_sym__] = ACTIONS(6904), + }, + [2947] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3413), + [anon_sym_RBRACE] = ACTIONS(6906), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(6908), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2948] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3416), + [anon_sym_RBRACE] = ACTIONS(6910), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(6912), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2949] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(6914), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [2950] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(6914), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [2951] = { + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(6914), + [sym_comment] = ACTIONS(56), + }, + [2952] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(6914), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [2953] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(6916), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [2954] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(6916), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [2955] = { + [sym_variable_name] = ACTIONS(4111), + [anon_sym_PIPE] = ACTIONS(5967), + [anon_sym_RPAREN] = ACTIONS(4111), + [anon_sym_PIPE_AMP] = ACTIONS(4111), + [anon_sym_AMP_AMP] = ACTIONS(4111), + [anon_sym_PIPE_PIPE] = ACTIONS(4111), + [sym__special_characters] = ACTIONS(5967), + [anon_sym_DQUOTE] = ACTIONS(4111), + [anon_sym_DOLLAR] = ACTIONS(5967), + [sym_raw_string] = ACTIONS(4111), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4111), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4111), + [anon_sym_BQUOTE] = ACTIONS(4111), + [anon_sym_LT_LPAREN] = ACTIONS(4111), + [anon_sym_GT_LPAREN] = ACTIONS(4111), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5967), + [sym_word] = ACTIONS(4113), + }, + [2956] = { + [sym__concat] = ACTIONS(4728), + [sym_variable_name] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(5748), + [anon_sym_RPAREN] = ACTIONS(4728), + [anon_sym_PIPE_AMP] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [sym__special_characters] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(5748), + [sym_raw_string] = ACTIONS(4728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LT_LPAREN] = ACTIONS(4728), + [anon_sym_GT_LPAREN] = ACTIONS(4728), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5748), + [sym_word] = ACTIONS(4730), + }, + [2957] = { + [sym__concat] = ACTIONS(4734), + [sym_variable_name] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(5750), + [anon_sym_RPAREN] = ACTIONS(4734), + [anon_sym_PIPE_AMP] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [sym__special_characters] = ACTIONS(5750), + [anon_sym_DQUOTE] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(5750), + [sym_raw_string] = ACTIONS(4734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4734), + [anon_sym_BQUOTE] = ACTIONS(4734), + [anon_sym_LT_LPAREN] = ACTIONS(4734), + [anon_sym_GT_LPAREN] = ACTIONS(4734), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5750), + [sym_word] = ACTIONS(4736), + }, + [2958] = { + [sym__concat] = ACTIONS(4797), + [sym_variable_name] = ACTIONS(4797), + [anon_sym_PIPE] = ACTIONS(5752), + [anon_sym_RPAREN] = ACTIONS(4797), + [anon_sym_PIPE_AMP] = ACTIONS(4797), + [anon_sym_AMP_AMP] = ACTIONS(4797), + [anon_sym_PIPE_PIPE] = ACTIONS(4797), + [sym__special_characters] = ACTIONS(5752), + [anon_sym_DQUOTE] = ACTIONS(4797), + [anon_sym_DOLLAR] = ACTIONS(5752), + [sym_raw_string] = ACTIONS(4797), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4797), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4797), + [anon_sym_BQUOTE] = ACTIONS(4797), + [anon_sym_LT_LPAREN] = ACTIONS(4797), + [anon_sym_GT_LPAREN] = ACTIONS(4797), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5752), + [sym_word] = ACTIONS(4799), + }, + [2959] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6918), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2960] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6920), + [sym_comment] = ACTIONS(56), + }, + [2961] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6922), + [sym_comment] = ACTIONS(56), + }, + [2962] = { + [anon_sym_RBRACE] = ACTIONS(6922), + [sym_comment] = ACTIONS(56), + }, + [2963] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3423), + [anon_sym_RBRACE] = ACTIONS(6924), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2964] = { + [sym__concat] = ACTIONS(4809), + [sym_variable_name] = ACTIONS(4809), + [anon_sym_PIPE] = ACTIONS(5762), + [anon_sym_RPAREN] = ACTIONS(4809), + [anon_sym_PIPE_AMP] = ACTIONS(4809), + [anon_sym_AMP_AMP] = ACTIONS(4809), + [anon_sym_PIPE_PIPE] = ACTIONS(4809), + [sym__special_characters] = ACTIONS(5762), + [anon_sym_DQUOTE] = ACTIONS(4809), + [anon_sym_DOLLAR] = ACTIONS(5762), + [sym_raw_string] = ACTIONS(4809), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4809), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4809), + [anon_sym_BQUOTE] = ACTIONS(4809), + [anon_sym_LT_LPAREN] = ACTIONS(4809), + [anon_sym_GT_LPAREN] = ACTIONS(4809), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5762), + [sym_word] = ACTIONS(4811), + }, + [2965] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3425), + [anon_sym_RBRACE] = ACTIONS(6926), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2966] = { + [sym__concat] = ACTIONS(4815), + [sym_variable_name] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(5766), + [anon_sym_RPAREN] = ACTIONS(4815), + [anon_sym_PIPE_AMP] = ACTIONS(4815), + [anon_sym_AMP_AMP] = ACTIONS(4815), + [anon_sym_PIPE_PIPE] = ACTIONS(4815), + [sym__special_characters] = ACTIONS(5766), + [anon_sym_DQUOTE] = ACTIONS(4815), + [anon_sym_DOLLAR] = ACTIONS(5766), + [sym_raw_string] = ACTIONS(4815), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4815), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4815), + [anon_sym_BQUOTE] = ACTIONS(4815), + [anon_sym_LT_LPAREN] = ACTIONS(4815), + [anon_sym_GT_LPAREN] = ACTIONS(4815), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5766), + [sym_word] = ACTIONS(4817), + }, + [2967] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3427), + [anon_sym_RBRACE] = ACTIONS(6928), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2968] = { + [sym__concat] = ACTIONS(4821), + [sym_variable_name] = ACTIONS(4821), + [anon_sym_PIPE] = ACTIONS(5770), + [anon_sym_RPAREN] = ACTIONS(4821), + [anon_sym_PIPE_AMP] = ACTIONS(4821), + [anon_sym_AMP_AMP] = ACTIONS(4821), + [anon_sym_PIPE_PIPE] = ACTIONS(4821), + [sym__special_characters] = ACTIONS(5770), + [anon_sym_DQUOTE] = ACTIONS(4821), + [anon_sym_DOLLAR] = ACTIONS(5770), + [sym_raw_string] = ACTIONS(4821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4821), + [anon_sym_BQUOTE] = ACTIONS(4821), + [anon_sym_LT_LPAREN] = ACTIONS(4821), + [anon_sym_GT_LPAREN] = ACTIONS(4821), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5770), + [sym_word] = ACTIONS(4823), + }, + [2969] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6930), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2970] = { + [sym__concat] = ACTIONS(4827), + [sym_variable_name] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(5774), + [anon_sym_RPAREN] = ACTIONS(4827), + [anon_sym_PIPE_AMP] = ACTIONS(4827), + [anon_sym_AMP_AMP] = ACTIONS(4827), + [anon_sym_PIPE_PIPE] = ACTIONS(4827), + [sym__special_characters] = ACTIONS(5774), + [anon_sym_DQUOTE] = ACTIONS(4827), + [anon_sym_DOLLAR] = ACTIONS(5774), + [sym_raw_string] = ACTIONS(4827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4827), + [anon_sym_BQUOTE] = ACTIONS(4827), + [anon_sym_LT_LPAREN] = ACTIONS(4827), + [anon_sym_GT_LPAREN] = ACTIONS(4827), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5774), + [sym_word] = ACTIONS(4829), + }, + [2971] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6932), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2972] = { + [sym__concat] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(5748), + [anon_sym_RPAREN] = ACTIONS(4728), + [anon_sym_PIPE_AMP] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [sym__special_characters] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(5748), + [sym_raw_string] = ACTIONS(4728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LT_LPAREN] = ACTIONS(4728), + [anon_sym_GT_LPAREN] = ACTIONS(4728), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5748), + [sym_word] = ACTIONS(4730), + }, + [2973] = { + [sym__concat] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(5750), + [anon_sym_RPAREN] = ACTIONS(4734), + [anon_sym_PIPE_AMP] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [sym__special_characters] = ACTIONS(5750), + [anon_sym_DQUOTE] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(5750), + [sym_raw_string] = ACTIONS(4734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4734), + [anon_sym_BQUOTE] = ACTIONS(4734), + [anon_sym_LT_LPAREN] = ACTIONS(4734), + [anon_sym_GT_LPAREN] = ACTIONS(4734), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5750), + [sym_word] = ACTIONS(4736), + }, + [2974] = { + [sym__concat] = ACTIONS(4797), + [anon_sym_PIPE] = ACTIONS(5752), + [anon_sym_RPAREN] = ACTIONS(4797), + [anon_sym_PIPE_AMP] = ACTIONS(4797), + [anon_sym_AMP_AMP] = ACTIONS(4797), + [anon_sym_PIPE_PIPE] = ACTIONS(4797), + [sym__special_characters] = ACTIONS(5752), + [anon_sym_DQUOTE] = ACTIONS(4797), + [anon_sym_DOLLAR] = ACTIONS(5752), + [sym_raw_string] = ACTIONS(4797), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4797), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4797), + [anon_sym_BQUOTE] = ACTIONS(4797), + [anon_sym_LT_LPAREN] = ACTIONS(4797), + [anon_sym_GT_LPAREN] = ACTIONS(4797), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5752), + [sym_word] = ACTIONS(4799), + }, + [2975] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6934), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2976] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6936), + [sym_comment] = ACTIONS(56), + }, + [2977] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6938), + [sym_comment] = ACTIONS(56), + }, + [2978] = { + [anon_sym_RBRACE] = ACTIONS(6938), + [sym_comment] = ACTIONS(56), + }, + [2979] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3434), + [anon_sym_RBRACE] = ACTIONS(6940), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2980] = { + [sym__concat] = ACTIONS(4809), + [anon_sym_PIPE] = ACTIONS(5762), + [anon_sym_RPAREN] = ACTIONS(4809), + [anon_sym_PIPE_AMP] = ACTIONS(4809), + [anon_sym_AMP_AMP] = ACTIONS(4809), + [anon_sym_PIPE_PIPE] = ACTIONS(4809), + [sym__special_characters] = ACTIONS(5762), + [anon_sym_DQUOTE] = ACTIONS(4809), + [anon_sym_DOLLAR] = ACTIONS(5762), + [sym_raw_string] = ACTIONS(4809), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4809), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4809), + [anon_sym_BQUOTE] = ACTIONS(4809), + [anon_sym_LT_LPAREN] = ACTIONS(4809), + [anon_sym_GT_LPAREN] = ACTIONS(4809), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5762), + [sym_word] = ACTIONS(4811), + }, + [2981] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3436), + [anon_sym_RBRACE] = ACTIONS(6942), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2982] = { + [sym__concat] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(5766), + [anon_sym_RPAREN] = ACTIONS(4815), + [anon_sym_PIPE_AMP] = ACTIONS(4815), + [anon_sym_AMP_AMP] = ACTIONS(4815), + [anon_sym_PIPE_PIPE] = ACTIONS(4815), + [sym__special_characters] = ACTIONS(5766), + [anon_sym_DQUOTE] = ACTIONS(4815), + [anon_sym_DOLLAR] = ACTIONS(5766), + [sym_raw_string] = ACTIONS(4815), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4815), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4815), + [anon_sym_BQUOTE] = ACTIONS(4815), + [anon_sym_LT_LPAREN] = ACTIONS(4815), + [anon_sym_GT_LPAREN] = ACTIONS(4815), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5766), + [sym_word] = ACTIONS(4817), + }, + [2983] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3438), + [anon_sym_RBRACE] = ACTIONS(6944), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2984] = { + [sym__concat] = ACTIONS(4821), + [anon_sym_PIPE] = ACTIONS(5770), + [anon_sym_RPAREN] = ACTIONS(4821), + [anon_sym_PIPE_AMP] = ACTIONS(4821), + [anon_sym_AMP_AMP] = ACTIONS(4821), + [anon_sym_PIPE_PIPE] = ACTIONS(4821), + [sym__special_characters] = ACTIONS(5770), + [anon_sym_DQUOTE] = ACTIONS(4821), + [anon_sym_DOLLAR] = ACTIONS(5770), + [sym_raw_string] = ACTIONS(4821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4821), + [anon_sym_BQUOTE] = ACTIONS(4821), + [anon_sym_LT_LPAREN] = ACTIONS(4821), + [anon_sym_GT_LPAREN] = ACTIONS(4821), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5770), + [sym_word] = ACTIONS(4823), + }, + [2985] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6946), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2986] = { + [sym__concat] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(5774), + [anon_sym_RPAREN] = ACTIONS(4827), + [anon_sym_PIPE_AMP] = ACTIONS(4827), + [anon_sym_AMP_AMP] = ACTIONS(4827), + [anon_sym_PIPE_PIPE] = ACTIONS(4827), + [sym__special_characters] = ACTIONS(5774), + [anon_sym_DQUOTE] = ACTIONS(4827), + [anon_sym_DOLLAR] = ACTIONS(5774), + [sym_raw_string] = ACTIONS(4827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4827), + [anon_sym_BQUOTE] = ACTIONS(4827), + [anon_sym_LT_LPAREN] = ACTIONS(4827), + [anon_sym_GT_LPAREN] = ACTIONS(4827), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5774), + [sym_word] = ACTIONS(4829), + }, + [2987] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6948), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2988] = { + [sym_file_descriptor] = ACTIONS(5929), + [sym__concat] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(6710), + [anon_sym_RPAREN] = ACTIONS(5929), + [anon_sym_PIPE_AMP] = ACTIONS(5929), + [anon_sym_AMP_AMP] = ACTIONS(5929), + [anon_sym_PIPE_PIPE] = ACTIONS(5929), + [anon_sym_EQ_TILDE] = ACTIONS(6710), + [anon_sym_LT] = ACTIONS(6710), + [anon_sym_GT] = ACTIONS(6710), + [anon_sym_GT_GT] = ACTIONS(5929), + [anon_sym_AMP_GT] = ACTIONS(6710), + [anon_sym_AMP_GT_GT] = ACTIONS(5929), + [anon_sym_LT_AMP] = ACTIONS(5929), + [anon_sym_GT_AMP] = ACTIONS(5929), + [anon_sym_LT_LT] = ACTIONS(6710), + [anon_sym_LT_LT_DASH] = ACTIONS(5929), + [anon_sym_LT_LT_LT] = ACTIONS(5929), + [sym__special_characters] = ACTIONS(6710), + [anon_sym_DQUOTE] = ACTIONS(5929), + [anon_sym_DOLLAR] = ACTIONS(6710), + [sym_raw_string] = ACTIONS(5929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5929), + [anon_sym_BQUOTE] = ACTIONS(5929), + [anon_sym_LT_LPAREN] = ACTIONS(5929), + [anon_sym_GT_LPAREN] = ACTIONS(5929), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5931), + }, + [2989] = { + [sym_file_descriptor] = ACTIONS(5933), + [sym__concat] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(6712), + [anon_sym_RPAREN] = ACTIONS(5933), + [anon_sym_PIPE_AMP] = ACTIONS(5933), + [anon_sym_AMP_AMP] = ACTIONS(5933), + [anon_sym_PIPE_PIPE] = ACTIONS(5933), + [anon_sym_EQ_TILDE] = ACTIONS(6712), + [anon_sym_LT] = ACTIONS(6712), + [anon_sym_GT] = ACTIONS(6712), + [anon_sym_GT_GT] = ACTIONS(5933), + [anon_sym_AMP_GT] = ACTIONS(6712), + [anon_sym_AMP_GT_GT] = ACTIONS(5933), + [anon_sym_LT_AMP] = ACTIONS(5933), + [anon_sym_GT_AMP] = ACTIONS(5933), + [anon_sym_LT_LT] = ACTIONS(6712), + [anon_sym_LT_LT_DASH] = ACTIONS(5933), + [anon_sym_LT_LT_LT] = ACTIONS(5933), + [sym__special_characters] = ACTIONS(6712), + [anon_sym_DQUOTE] = ACTIONS(5933), + [anon_sym_DOLLAR] = ACTIONS(6712), + [sym_raw_string] = ACTIONS(5933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5933), + [anon_sym_BQUOTE] = ACTIONS(5933), + [anon_sym_LT_LPAREN] = ACTIONS(5933), + [anon_sym_GT_LPAREN] = ACTIONS(5933), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5935), + }, + [2990] = { + [sym_file_descriptor] = ACTIONS(5937), + [sym__concat] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(6714), + [anon_sym_RPAREN] = ACTIONS(5937), + [anon_sym_PIPE_AMP] = ACTIONS(5937), + [anon_sym_AMP_AMP] = ACTIONS(5937), + [anon_sym_PIPE_PIPE] = ACTIONS(5937), + [anon_sym_EQ_TILDE] = ACTIONS(6714), + [anon_sym_LT] = ACTIONS(6714), + [anon_sym_GT] = ACTIONS(6714), + [anon_sym_GT_GT] = ACTIONS(5937), + [anon_sym_AMP_GT] = ACTIONS(6714), + [anon_sym_AMP_GT_GT] = ACTIONS(5937), + [anon_sym_LT_AMP] = ACTIONS(5937), + [anon_sym_GT_AMP] = ACTIONS(5937), + [anon_sym_LT_LT] = ACTIONS(6714), + [anon_sym_LT_LT_DASH] = ACTIONS(5937), + [anon_sym_LT_LT_LT] = ACTIONS(5937), + [sym__special_characters] = ACTIONS(6714), + [anon_sym_DQUOTE] = ACTIONS(5937), + [anon_sym_DOLLAR] = ACTIONS(6714), + [sym_raw_string] = ACTIONS(5937), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5937), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5937), + [anon_sym_BQUOTE] = ACTIONS(5937), + [anon_sym_LT_LPAREN] = ACTIONS(5937), + [anon_sym_GT_LPAREN] = ACTIONS(5937), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5939), + }, + [2991] = { + [sym_file_descriptor] = ACTIONS(5941), + [sym__concat] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_RPAREN] = ACTIONS(5941), + [anon_sym_PIPE_AMP] = ACTIONS(5941), + [anon_sym_AMP_AMP] = ACTIONS(5941), + [anon_sym_PIPE_PIPE] = ACTIONS(5941), + [anon_sym_EQ_TILDE] = ACTIONS(6716), + [anon_sym_LT] = ACTIONS(6716), + [anon_sym_GT] = ACTIONS(6716), + [anon_sym_GT_GT] = ACTIONS(5941), + [anon_sym_AMP_GT] = ACTIONS(6716), + [anon_sym_AMP_GT_GT] = ACTIONS(5941), + [anon_sym_LT_AMP] = ACTIONS(5941), + [anon_sym_GT_AMP] = ACTIONS(5941), + [anon_sym_LT_LT] = ACTIONS(6716), + [anon_sym_LT_LT_DASH] = ACTIONS(5941), + [anon_sym_LT_LT_LT] = ACTIONS(5941), + [sym__special_characters] = ACTIONS(6716), + [anon_sym_DQUOTE] = ACTIONS(5941), + [anon_sym_DOLLAR] = ACTIONS(6716), + [sym_raw_string] = ACTIONS(5941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5941), + [anon_sym_BQUOTE] = ACTIONS(5941), + [anon_sym_LT_LPAREN] = ACTIONS(5941), + [anon_sym_GT_LPAREN] = ACTIONS(5941), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5943), + }, + [2992] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6950), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2993] = { + [sym_file_descriptor] = ACTIONS(5947), + [sym__concat] = ACTIONS(5947), + [anon_sym_PIPE] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(5947), + [anon_sym_PIPE_AMP] = ACTIONS(5947), + [anon_sym_AMP_AMP] = ACTIONS(5947), + [anon_sym_PIPE_PIPE] = ACTIONS(5947), + [anon_sym_EQ_TILDE] = ACTIONS(6720), + [anon_sym_LT] = ACTIONS(6720), + [anon_sym_GT] = ACTIONS(6720), + [anon_sym_GT_GT] = ACTIONS(5947), + [anon_sym_AMP_GT] = ACTIONS(6720), + [anon_sym_AMP_GT_GT] = ACTIONS(5947), + [anon_sym_LT_AMP] = ACTIONS(5947), + [anon_sym_GT_AMP] = ACTIONS(5947), + [anon_sym_LT_LT] = ACTIONS(6720), + [anon_sym_LT_LT_DASH] = ACTIONS(5947), + [anon_sym_LT_LT_LT] = ACTIONS(5947), + [sym__special_characters] = ACTIONS(6720), + [anon_sym_DQUOTE] = ACTIONS(5947), + [anon_sym_DOLLAR] = ACTIONS(6720), + [sym_raw_string] = ACTIONS(5947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5947), + [anon_sym_BQUOTE] = ACTIONS(5947), + [anon_sym_LT_LPAREN] = ACTIONS(5947), + [anon_sym_GT_LPAREN] = ACTIONS(5947), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5949), + }, + [2994] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6952), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2995] = { + [sym_file_descriptor] = ACTIONS(5953), + [sym__concat] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(6724), + [anon_sym_RPAREN] = ACTIONS(5953), + [anon_sym_PIPE_AMP] = ACTIONS(5953), + [anon_sym_AMP_AMP] = ACTIONS(5953), + [anon_sym_PIPE_PIPE] = ACTIONS(5953), + [anon_sym_EQ_TILDE] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(6724), + [anon_sym_GT] = ACTIONS(6724), + [anon_sym_GT_GT] = ACTIONS(5953), + [anon_sym_AMP_GT] = ACTIONS(6724), + [anon_sym_AMP_GT_GT] = ACTIONS(5953), + [anon_sym_LT_AMP] = ACTIONS(5953), + [anon_sym_GT_AMP] = ACTIONS(5953), + [anon_sym_LT_LT] = ACTIONS(6724), + [anon_sym_LT_LT_DASH] = ACTIONS(5953), + [anon_sym_LT_LT_LT] = ACTIONS(5953), + [sym__special_characters] = ACTIONS(6724), + [anon_sym_DQUOTE] = ACTIONS(5953), + [anon_sym_DOLLAR] = ACTIONS(6724), + [sym_raw_string] = ACTIONS(5953), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5953), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5953), + [anon_sym_BQUOTE] = ACTIONS(5953), + [anon_sym_LT_LPAREN] = ACTIONS(5953), + [anon_sym_GT_LPAREN] = ACTIONS(5953), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5955), + }, + [2996] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6954), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [2997] = { + [sym_file_descriptor] = ACTIONS(5959), + [sym__concat] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(6728), + [anon_sym_RPAREN] = ACTIONS(5959), + [anon_sym_PIPE_AMP] = ACTIONS(5959), + [anon_sym_AMP_AMP] = ACTIONS(5959), + [anon_sym_PIPE_PIPE] = ACTIONS(5959), + [anon_sym_EQ_TILDE] = ACTIONS(6728), + [anon_sym_LT] = ACTIONS(6728), + [anon_sym_GT] = ACTIONS(6728), + [anon_sym_GT_GT] = ACTIONS(5959), + [anon_sym_AMP_GT] = ACTIONS(6728), + [anon_sym_AMP_GT_GT] = ACTIONS(5959), + [anon_sym_LT_AMP] = ACTIONS(5959), + [anon_sym_GT_AMP] = ACTIONS(5959), + [anon_sym_LT_LT] = ACTIONS(6728), + [anon_sym_LT_LT_DASH] = ACTIONS(5959), + [anon_sym_LT_LT_LT] = ACTIONS(5959), + [sym__special_characters] = ACTIONS(6728), + [anon_sym_DQUOTE] = ACTIONS(5959), + [anon_sym_DOLLAR] = ACTIONS(6728), + [sym_raw_string] = ACTIONS(5959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5959), + [anon_sym_BQUOTE] = ACTIONS(5959), + [anon_sym_LT_LPAREN] = ACTIONS(5959), + [anon_sym_GT_LPAREN] = ACTIONS(5959), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5961), + }, + [2998] = { + [sym_file_descriptor] = ACTIONS(5963), + [sym__concat] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(6730), + [anon_sym_RPAREN] = ACTIONS(5963), + [anon_sym_PIPE_AMP] = ACTIONS(5963), + [anon_sym_AMP_AMP] = ACTIONS(5963), + [anon_sym_PIPE_PIPE] = ACTIONS(5963), + [anon_sym_EQ_TILDE] = ACTIONS(6730), + [anon_sym_LT] = ACTIONS(6730), + [anon_sym_GT] = ACTIONS(6730), + [anon_sym_GT_GT] = ACTIONS(5963), + [anon_sym_AMP_GT] = ACTIONS(6730), + [anon_sym_AMP_GT_GT] = ACTIONS(5963), + [anon_sym_LT_AMP] = ACTIONS(5963), + [anon_sym_GT_AMP] = ACTIONS(5963), + [anon_sym_LT_LT] = ACTIONS(6730), + [anon_sym_LT_LT_DASH] = ACTIONS(5963), + [anon_sym_LT_LT_LT] = ACTIONS(5963), + [sym__special_characters] = ACTIONS(6730), + [anon_sym_DQUOTE] = ACTIONS(5963), + [anon_sym_DOLLAR] = ACTIONS(6730), + [sym_raw_string] = ACTIONS(5963), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5963), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5963), + [anon_sym_BQUOTE] = ACTIONS(5963), + [anon_sym_LT_LPAREN] = ACTIONS(5963), + [anon_sym_GT_LPAREN] = ACTIONS(5963), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5965), + }, + [2999] = { + [sym_file_descriptor] = ACTIONS(3235), + [sym__concat] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(3235), + [anon_sym_PIPE_AMP] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_LT] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_GT_GT] = ACTIONS(3235), + [anon_sym_AMP_GT] = ACTIONS(4540), + [anon_sym_AMP_GT_GT] = ACTIONS(3235), + [anon_sym_LT_AMP] = ACTIONS(3235), + [anon_sym_GT_AMP] = ACTIONS(3235), + [anon_sym_LT_LT] = ACTIONS(4540), + [anon_sym_LT_LT_DASH] = ACTIONS(3235), + [anon_sym_LT_LT_LT] = ACTIONS(3235), + [sym_comment] = ACTIONS(56), + }, + [3000] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6956), + [sym_comment] = ACTIONS(56), + }, + [3001] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6958), + [sym_comment] = ACTIONS(56), + }, + [3002] = { + [anon_sym_RBRACE] = ACTIONS(6958), + [sym_comment] = ACTIONS(56), + }, + [3003] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3447), + [anon_sym_RBRACE] = ACTIONS(6960), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3004] = { + [sym_file_descriptor] = ACTIONS(3297), + [sym__concat] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(3297), + [anon_sym_PIPE_AMP] = ACTIONS(3297), + [anon_sym_AMP_AMP] = ACTIONS(3297), + [anon_sym_PIPE_PIPE] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4548), + [anon_sym_GT_GT] = ACTIONS(3297), + [anon_sym_AMP_GT] = ACTIONS(4548), + [anon_sym_AMP_GT_GT] = ACTIONS(3297), + [anon_sym_LT_AMP] = ACTIONS(3297), + [anon_sym_GT_AMP] = ACTIONS(3297), + [anon_sym_LT_LT] = ACTIONS(4548), + [anon_sym_LT_LT_DASH] = ACTIONS(3297), + [anon_sym_LT_LT_LT] = ACTIONS(3297), + [sym_comment] = ACTIONS(56), + }, + [3005] = { + [sym_concatenation] = STATE(3450), + [sym_string] = STATE(3449), + [sym_simple_expansion] = STATE(3449), + [sym_string_expansion] = STATE(3449), + [sym_expansion] = STATE(3449), + [sym_command_substitution] = STATE(3449), + [sym_process_substitution] = STATE(3449), + [anon_sym_RBRACE] = ACTIONS(6958), + [sym__special_characters] = ACTIONS(6962), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(6964), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6966), + }, + [3006] = { + [sym_file_descriptor] = ACTIONS(3342), + [sym__concat] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(3342), + [anon_sym_PIPE_AMP] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4556), + [anon_sym_GT_GT] = ACTIONS(3342), + [anon_sym_AMP_GT] = ACTIONS(4556), + [anon_sym_AMP_GT_GT] = ACTIONS(3342), + [anon_sym_LT_AMP] = ACTIONS(3342), + [anon_sym_GT_AMP] = ACTIONS(3342), + [anon_sym_LT_LT] = ACTIONS(4556), + [anon_sym_LT_LT_DASH] = ACTIONS(3342), + [anon_sym_LT_LT_LT] = ACTIONS(3342), + [sym_comment] = ACTIONS(56), + }, + [3007] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6968), + }, + [3008] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6970), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3009] = { + [sym_file_descriptor] = ACTIONS(3350), + [sym__concat] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(3350), + [anon_sym_PIPE_AMP] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_GT_GT] = ACTIONS(3350), + [anon_sym_AMP_GT] = ACTIONS(4562), + [anon_sym_AMP_GT_GT] = ACTIONS(3350), + [anon_sym_LT_AMP] = ACTIONS(3350), + [anon_sym_GT_AMP] = ACTIONS(3350), + [anon_sym_LT_LT] = ACTIONS(4562), + [anon_sym_LT_LT_DASH] = ACTIONS(3350), + [anon_sym_LT_LT_LT] = ACTIONS(3350), + [sym_comment] = ACTIONS(56), + }, + [3010] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6972), + }, + [3011] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6974), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3012] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6976), + }, + [3013] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6958), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3014] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3457), + [anon_sym_RBRACE] = ACTIONS(6978), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3015] = { + [sym_file_descriptor] = ACTIONS(3362), + [sym__concat] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(3362), + [anon_sym_PIPE_AMP] = ACTIONS(3362), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_PIPE_PIPE] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(4572), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_GT_GT] = ACTIONS(3362), + [anon_sym_AMP_GT] = ACTIONS(4572), + [anon_sym_AMP_GT_GT] = ACTIONS(3362), + [anon_sym_LT_AMP] = ACTIONS(3362), + [anon_sym_GT_AMP] = ACTIONS(3362), + [anon_sym_LT_LT] = ACTIONS(4572), + [anon_sym_LT_LT_DASH] = ACTIONS(3362), + [anon_sym_LT_LT_LT] = ACTIONS(3362), + [sym_comment] = ACTIONS(56), + }, + [3016] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3459), + [anon_sym_RBRACE] = ACTIONS(6980), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3017] = { + [sym_file_descriptor] = ACTIONS(3235), + [sym__concat] = ACTIONS(3235), + [sym_variable_name] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_PIPE_AMP] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_LT] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_GT_GT] = ACTIONS(3235), + [anon_sym_AMP_GT] = ACTIONS(4540), + [anon_sym_AMP_GT_GT] = ACTIONS(3235), + [anon_sym_LT_AMP] = ACTIONS(3235), + [anon_sym_GT_AMP] = ACTIONS(3235), + [sym__special_characters] = ACTIONS(4540), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_DOLLAR] = ACTIONS(4540), + [sym_raw_string] = ACTIONS(3235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3235), + [anon_sym_BQUOTE] = ACTIONS(3235), + [anon_sym_LT_LPAREN] = ACTIONS(3235), + [anon_sym_GT_LPAREN] = ACTIONS(3235), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4540), + }, + [3018] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6982), + [sym_comment] = ACTIONS(56), + }, + [3019] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(6984), + [sym_comment] = ACTIONS(56), + }, + [3020] = { + [anon_sym_RBRACE] = ACTIONS(6984), + [sym_comment] = ACTIONS(56), + }, + [3021] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3463), + [anon_sym_RBRACE] = ACTIONS(6986), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3022] = { + [sym_file_descriptor] = ACTIONS(3297), + [sym__concat] = ACTIONS(3297), + [sym_variable_name] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(4548), + [anon_sym_PIPE_AMP] = ACTIONS(3297), + [anon_sym_AMP_AMP] = ACTIONS(3297), + [anon_sym_PIPE_PIPE] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4548), + [anon_sym_GT_GT] = ACTIONS(3297), + [anon_sym_AMP_GT] = ACTIONS(4548), + [anon_sym_AMP_GT_GT] = ACTIONS(3297), + [anon_sym_LT_AMP] = ACTIONS(3297), + [anon_sym_GT_AMP] = ACTIONS(3297), + [sym__special_characters] = ACTIONS(4548), + [anon_sym_DQUOTE] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(4548), + [sym_raw_string] = ACTIONS(3297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3297), + [anon_sym_BQUOTE] = ACTIONS(3297), + [anon_sym_LT_LPAREN] = ACTIONS(3297), + [anon_sym_GT_LPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4548), + }, + [3023] = { + [sym_concatenation] = STATE(3466), + [sym_string] = STATE(3465), + [sym_simple_expansion] = STATE(3465), + [sym_string_expansion] = STATE(3465), + [sym_expansion] = STATE(3465), + [sym_command_substitution] = STATE(3465), + [sym_process_substitution] = STATE(3465), + [anon_sym_RBRACE] = ACTIONS(6984), + [sym__special_characters] = ACTIONS(6988), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(6990), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6992), + }, + [3024] = { + [sym_file_descriptor] = ACTIONS(3342), + [sym__concat] = ACTIONS(3342), + [sym_variable_name] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(4556), + [anon_sym_PIPE_AMP] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4556), + [anon_sym_GT_GT] = ACTIONS(3342), + [anon_sym_AMP_GT] = ACTIONS(4556), + [anon_sym_AMP_GT_GT] = ACTIONS(3342), + [anon_sym_LT_AMP] = ACTIONS(3342), + [anon_sym_GT_AMP] = ACTIONS(3342), + [sym__special_characters] = ACTIONS(4556), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(4556), + [sym_raw_string] = ACTIONS(3342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3342), + [anon_sym_BQUOTE] = ACTIONS(3342), + [anon_sym_LT_LPAREN] = ACTIONS(3342), + [anon_sym_GT_LPAREN] = ACTIONS(3342), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4556), + }, + [3025] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6994), + }, + [3026] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6996), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3027] = { + [sym_file_descriptor] = ACTIONS(3350), + [sym__concat] = ACTIONS(3350), + [sym_variable_name] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_PIPE_AMP] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_GT_GT] = ACTIONS(3350), + [anon_sym_AMP_GT] = ACTIONS(4562), + [anon_sym_AMP_GT_GT] = ACTIONS(3350), + [anon_sym_LT_AMP] = ACTIONS(3350), + [anon_sym_GT_AMP] = ACTIONS(3350), + [sym__special_characters] = ACTIONS(4562), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_DOLLAR] = ACTIONS(4562), + [sym_raw_string] = ACTIONS(3350), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3350), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3350), + [anon_sym_BQUOTE] = ACTIONS(3350), + [anon_sym_LT_LPAREN] = ACTIONS(3350), + [anon_sym_GT_LPAREN] = ACTIONS(3350), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4562), + }, + [3028] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6998), + }, + [3029] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7000), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3030] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7002), + }, + [3031] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(6984), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3032] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3473), + [anon_sym_RBRACE] = ACTIONS(7004), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3033] = { + [sym_file_descriptor] = ACTIONS(3362), + [sym__concat] = ACTIONS(3362), + [sym_variable_name] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_PIPE_AMP] = ACTIONS(3362), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_PIPE_PIPE] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(4572), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_GT_GT] = ACTIONS(3362), + [anon_sym_AMP_GT] = ACTIONS(4572), + [anon_sym_AMP_GT_GT] = ACTIONS(3362), + [anon_sym_LT_AMP] = ACTIONS(3362), + [anon_sym_GT_AMP] = ACTIONS(3362), + [sym__special_characters] = ACTIONS(4572), + [anon_sym_DQUOTE] = ACTIONS(3362), + [anon_sym_DOLLAR] = ACTIONS(4572), + [sym_raw_string] = ACTIONS(3362), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3362), + [anon_sym_BQUOTE] = ACTIONS(3362), + [anon_sym_LT_LPAREN] = ACTIONS(3362), + [anon_sym_GT_LPAREN] = ACTIONS(3362), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4572), + }, + [3034] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3475), + [anon_sym_RBRACE] = ACTIONS(7006), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3035] = { + [aux_sym_concatenation_repeat1] = STATE(3038), + [sym__concat] = ACTIONS(6208), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_PIPE_AMP] = ACTIONS(1219), + [anon_sym_AMP_AMP] = ACTIONS(1219), + [anon_sym_PIPE_PIPE] = ACTIONS(1219), + [anon_sym_BQUOTE] = ACTIONS(1219), + [sym_comment] = ACTIONS(56), + }, + [3036] = { + [aux_sym_concatenation_repeat1] = STATE(3038), + [sym__concat] = ACTIONS(6208), + [anon_sym_PIPE] = ACTIONS(1225), + [anon_sym_PIPE_AMP] = ACTIONS(1223), + [anon_sym_AMP_AMP] = ACTIONS(1223), + [anon_sym_PIPE_PIPE] = ACTIONS(1223), + [anon_sym_BQUOTE] = ACTIONS(1223), + [sym_comment] = ACTIONS(56), + }, + [3037] = { + [sym_string] = STATE(3476), + [sym_simple_expansion] = STATE(3476), + [sym_string_expansion] = STATE(3476), + [sym_expansion] = STATE(3476), + [sym_command_substitution] = STATE(3476), + [sym_process_substitution] = STATE(3476), + [sym__special_characters] = ACTIONS(7008), + [anon_sym_DQUOTE] = ACTIONS(5107), + [anon_sym_DOLLAR] = ACTIONS(5109), + [sym_raw_string] = ACTIONS(7010), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5115), + [anon_sym_BQUOTE] = ACTIONS(5117), + [anon_sym_LT_LPAREN] = ACTIONS(5119), + [anon_sym_GT_LPAREN] = ACTIONS(5119), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7008), + }, + [3038] = { + [aux_sym_concatenation_repeat1] = STATE(3477), + [sym__concat] = ACTIONS(6208), + [anon_sym_PIPE] = ACTIONS(1539), + [anon_sym_PIPE_AMP] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(772), + [anon_sym_PIPE_PIPE] = ACTIONS(772), + [anon_sym_BQUOTE] = ACTIONS(772), + [sym_comment] = ACTIONS(56), + }, + [3039] = { + [sym__concat] = ACTIONS(776), + [anon_sym_PIPE] = ACTIONS(1541), + [anon_sym_PIPE_AMP] = ACTIONS(776), + [anon_sym_AMP_AMP] = ACTIONS(776), + [anon_sym_PIPE_PIPE] = ACTIONS(776), + [anon_sym_BQUOTE] = ACTIONS(776), + [sym_comment] = ACTIONS(56), + }, + [3040] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(447), + [anon_sym_DQUOTE] = ACTIONS(7012), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [3041] = { + [sym__concat] = ACTIONS(808), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PIPE_AMP] = ACTIONS(808), + [anon_sym_AMP_AMP] = ACTIONS(808), + [anon_sym_PIPE_PIPE] = ACTIONS(808), + [anon_sym_BQUOTE] = ACTIONS(808), + [sym_comment] = ACTIONS(56), + }, + [3042] = { + [sym__concat] = ACTIONS(812), + [anon_sym_PIPE] = ACTIONS(1547), + [anon_sym_PIPE_AMP] = ACTIONS(812), + [anon_sym_AMP_AMP] = ACTIONS(812), + [anon_sym_PIPE_PIPE] = ACTIONS(812), + [anon_sym_BQUOTE] = ACTIONS(812), + [sym_comment] = ACTIONS(56), + }, + [3043] = { + [sym__concat] = ACTIONS(816), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_PIPE_AMP] = ACTIONS(816), + [anon_sym_AMP_AMP] = ACTIONS(816), + [anon_sym_PIPE_PIPE] = ACTIONS(816), + [anon_sym_BQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(56), + }, + [3044] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(7014), + [sym_comment] = ACTIONS(56), + }, + [3045] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3482), + [anon_sym_RBRACE] = ACTIONS(7016), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(7018), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3046] = { + [sym_subscript] = STATE(3486), + [sym_variable_name] = ACTIONS(7020), + [anon_sym_DOLLAR] = ACTIONS(7022), + [anon_sym_DASH] = ACTIONS(7022), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7024), + [anon_sym_STAR] = ACTIONS(7022), + [anon_sym_AT] = ACTIONS(7022), + [anon_sym_QMARK] = ACTIONS(7022), + [anon_sym_0] = ACTIONS(7026), + [anon_sym__] = ACTIONS(7026), + }, + [3047] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3489), + [anon_sym_RBRACE] = ACTIONS(7028), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(7030), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3048] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3492), + [anon_sym_RBRACE] = ACTIONS(7032), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(7034), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3049] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(7036), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [3050] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(7036), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [3051] = { + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(7036), + [sym_comment] = ACTIONS(56), + }, + [3052] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1052), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(7036), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [3053] = { + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(7038), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [sym_comment] = ACTIONS(56), + }, + [3054] = { + [sym_file_descriptor] = ACTIONS(378), + [sym_variable_name] = ACTIONS(378), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(7038), + [anon_sym_PIPE_AMP] = ACTIONS(958), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(378), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(378), + [anon_sym_LT_AMP] = ACTIONS(378), + [anon_sym_GT_AMP] = ACTIONS(378), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(378), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(378), + [anon_sym_BQUOTE] = ACTIONS(378), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(382), + }, + [3055] = { + [sym__concat] = ACTIONS(4728), + [sym_variable_name] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(5748), + [anon_sym_PIPE_AMP] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [sym__special_characters] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(5748), + [sym_raw_string] = ACTIONS(4728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LT_LPAREN] = ACTIONS(4728), + [anon_sym_GT_LPAREN] = ACTIONS(4728), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5748), + [sym_word] = ACTIONS(4730), + }, + [3056] = { + [sym__concat] = ACTIONS(4734), + [sym_variable_name] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(5750), + [anon_sym_PIPE_AMP] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [sym__special_characters] = ACTIONS(5750), + [anon_sym_DQUOTE] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(5750), + [sym_raw_string] = ACTIONS(4734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4734), + [anon_sym_BQUOTE] = ACTIONS(4734), + [anon_sym_LT_LPAREN] = ACTIONS(4734), + [anon_sym_GT_LPAREN] = ACTIONS(4734), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5750), + [sym_word] = ACTIONS(4736), + }, + [3057] = { + [sym__concat] = ACTIONS(4797), + [sym_variable_name] = ACTIONS(4797), + [anon_sym_PIPE] = ACTIONS(5752), + [anon_sym_PIPE_AMP] = ACTIONS(4797), + [anon_sym_AMP_AMP] = ACTIONS(4797), + [anon_sym_PIPE_PIPE] = ACTIONS(4797), + [sym__special_characters] = ACTIONS(5752), + [anon_sym_DQUOTE] = ACTIONS(4797), + [anon_sym_DOLLAR] = ACTIONS(5752), + [sym_raw_string] = ACTIONS(4797), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4797), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4797), + [anon_sym_BQUOTE] = ACTIONS(4797), + [anon_sym_LT_LPAREN] = ACTIONS(4797), + [anon_sym_GT_LPAREN] = ACTIONS(4797), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5752), + [sym_word] = ACTIONS(4799), + }, + [3058] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7040), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3059] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7042), + [sym_comment] = ACTIONS(56), + }, + [3060] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7044), + [sym_comment] = ACTIONS(56), + }, + [3061] = { + [anon_sym_RBRACE] = ACTIONS(7044), + [sym_comment] = ACTIONS(56), + }, + [3062] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3499), + [anon_sym_RBRACE] = ACTIONS(7046), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3063] = { + [sym__concat] = ACTIONS(4809), + [sym_variable_name] = ACTIONS(4809), + [anon_sym_PIPE] = ACTIONS(5762), + [anon_sym_PIPE_AMP] = ACTIONS(4809), + [anon_sym_AMP_AMP] = ACTIONS(4809), + [anon_sym_PIPE_PIPE] = ACTIONS(4809), + [sym__special_characters] = ACTIONS(5762), + [anon_sym_DQUOTE] = ACTIONS(4809), + [anon_sym_DOLLAR] = ACTIONS(5762), + [sym_raw_string] = ACTIONS(4809), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4809), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4809), + [anon_sym_BQUOTE] = ACTIONS(4809), + [anon_sym_LT_LPAREN] = ACTIONS(4809), + [anon_sym_GT_LPAREN] = ACTIONS(4809), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5762), + [sym_word] = ACTIONS(4811), + }, + [3064] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3501), + [anon_sym_RBRACE] = ACTIONS(7048), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3065] = { + [sym__concat] = ACTIONS(4815), + [sym_variable_name] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(5766), + [anon_sym_PIPE_AMP] = ACTIONS(4815), + [anon_sym_AMP_AMP] = ACTIONS(4815), + [anon_sym_PIPE_PIPE] = ACTIONS(4815), + [sym__special_characters] = ACTIONS(5766), + [anon_sym_DQUOTE] = ACTIONS(4815), + [anon_sym_DOLLAR] = ACTIONS(5766), + [sym_raw_string] = ACTIONS(4815), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4815), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4815), + [anon_sym_BQUOTE] = ACTIONS(4815), + [anon_sym_LT_LPAREN] = ACTIONS(4815), + [anon_sym_GT_LPAREN] = ACTIONS(4815), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5766), + [sym_word] = ACTIONS(4817), + }, + [3066] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3503), + [anon_sym_RBRACE] = ACTIONS(7050), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3067] = { + [sym__concat] = ACTIONS(4821), + [sym_variable_name] = ACTIONS(4821), + [anon_sym_PIPE] = ACTIONS(5770), + [anon_sym_PIPE_AMP] = ACTIONS(4821), + [anon_sym_AMP_AMP] = ACTIONS(4821), + [anon_sym_PIPE_PIPE] = ACTIONS(4821), + [sym__special_characters] = ACTIONS(5770), + [anon_sym_DQUOTE] = ACTIONS(4821), + [anon_sym_DOLLAR] = ACTIONS(5770), + [sym_raw_string] = ACTIONS(4821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4821), + [anon_sym_BQUOTE] = ACTIONS(4821), + [anon_sym_LT_LPAREN] = ACTIONS(4821), + [anon_sym_GT_LPAREN] = ACTIONS(4821), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5770), + [sym_word] = ACTIONS(4823), + }, + [3068] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7052), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3069] = { + [sym__concat] = ACTIONS(4827), + [sym_variable_name] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(5774), + [anon_sym_PIPE_AMP] = ACTIONS(4827), + [anon_sym_AMP_AMP] = ACTIONS(4827), + [anon_sym_PIPE_PIPE] = ACTIONS(4827), + [sym__special_characters] = ACTIONS(5774), + [anon_sym_DQUOTE] = ACTIONS(4827), + [anon_sym_DOLLAR] = ACTIONS(5774), + [sym_raw_string] = ACTIONS(4827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4827), + [anon_sym_BQUOTE] = ACTIONS(4827), + [anon_sym_LT_LPAREN] = ACTIONS(4827), + [anon_sym_GT_LPAREN] = ACTIONS(4827), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5774), + [sym_word] = ACTIONS(4829), + }, + [3070] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7054), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3071] = { + [sym__concat] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(5748), + [anon_sym_PIPE_AMP] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [sym__special_characters] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(5748), + [sym_raw_string] = ACTIONS(4728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LT_LPAREN] = ACTIONS(4728), + [anon_sym_GT_LPAREN] = ACTIONS(4728), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5748), + [sym_word] = ACTIONS(4730), + }, + [3072] = { + [sym__concat] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(5750), + [anon_sym_PIPE_AMP] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [sym__special_characters] = ACTIONS(5750), + [anon_sym_DQUOTE] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(5750), + [sym_raw_string] = ACTIONS(4734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4734), + [anon_sym_BQUOTE] = ACTIONS(4734), + [anon_sym_LT_LPAREN] = ACTIONS(4734), + [anon_sym_GT_LPAREN] = ACTIONS(4734), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5750), + [sym_word] = ACTIONS(4736), + }, + [3073] = { + [sym__concat] = ACTIONS(4797), + [anon_sym_PIPE] = ACTIONS(5752), + [anon_sym_PIPE_AMP] = ACTIONS(4797), + [anon_sym_AMP_AMP] = ACTIONS(4797), + [anon_sym_PIPE_PIPE] = ACTIONS(4797), + [sym__special_characters] = ACTIONS(5752), + [anon_sym_DQUOTE] = ACTIONS(4797), + [anon_sym_DOLLAR] = ACTIONS(5752), + [sym_raw_string] = ACTIONS(4797), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4797), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4797), + [anon_sym_BQUOTE] = ACTIONS(4797), + [anon_sym_LT_LPAREN] = ACTIONS(4797), + [anon_sym_GT_LPAREN] = ACTIONS(4797), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5752), + [sym_word] = ACTIONS(4799), + }, + [3074] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7056), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3075] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7058), + [sym_comment] = ACTIONS(56), + }, + [3076] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7060), + [sym_comment] = ACTIONS(56), + }, + [3077] = { + [anon_sym_RBRACE] = ACTIONS(7060), + [sym_comment] = ACTIONS(56), + }, + [3078] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3510), + [anon_sym_RBRACE] = ACTIONS(7062), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3079] = { + [sym__concat] = ACTIONS(4809), + [anon_sym_PIPE] = ACTIONS(5762), + [anon_sym_PIPE_AMP] = ACTIONS(4809), + [anon_sym_AMP_AMP] = ACTIONS(4809), + [anon_sym_PIPE_PIPE] = ACTIONS(4809), + [sym__special_characters] = ACTIONS(5762), + [anon_sym_DQUOTE] = ACTIONS(4809), + [anon_sym_DOLLAR] = ACTIONS(5762), + [sym_raw_string] = ACTIONS(4809), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4809), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4809), + [anon_sym_BQUOTE] = ACTIONS(4809), + [anon_sym_LT_LPAREN] = ACTIONS(4809), + [anon_sym_GT_LPAREN] = ACTIONS(4809), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5762), + [sym_word] = ACTIONS(4811), + }, + [3080] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3512), + [anon_sym_RBRACE] = ACTIONS(7064), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3081] = { + [sym__concat] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(5766), + [anon_sym_PIPE_AMP] = ACTIONS(4815), + [anon_sym_AMP_AMP] = ACTIONS(4815), + [anon_sym_PIPE_PIPE] = ACTIONS(4815), + [sym__special_characters] = ACTIONS(5766), + [anon_sym_DQUOTE] = ACTIONS(4815), + [anon_sym_DOLLAR] = ACTIONS(5766), + [sym_raw_string] = ACTIONS(4815), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4815), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4815), + [anon_sym_BQUOTE] = ACTIONS(4815), + [anon_sym_LT_LPAREN] = ACTIONS(4815), + [anon_sym_GT_LPAREN] = ACTIONS(4815), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5766), + [sym_word] = ACTIONS(4817), + }, + [3082] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3514), + [anon_sym_RBRACE] = ACTIONS(7066), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3083] = { + [sym__concat] = ACTIONS(4821), + [anon_sym_PIPE] = ACTIONS(5770), + [anon_sym_PIPE_AMP] = ACTIONS(4821), + [anon_sym_AMP_AMP] = ACTIONS(4821), + [anon_sym_PIPE_PIPE] = ACTIONS(4821), + [sym__special_characters] = ACTIONS(5770), + [anon_sym_DQUOTE] = ACTIONS(4821), + [anon_sym_DOLLAR] = ACTIONS(5770), + [sym_raw_string] = ACTIONS(4821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4821), + [anon_sym_BQUOTE] = ACTIONS(4821), + [anon_sym_LT_LPAREN] = ACTIONS(4821), + [anon_sym_GT_LPAREN] = ACTIONS(4821), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5770), + [sym_word] = ACTIONS(4823), + }, + [3084] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7068), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3085] = { + [sym__concat] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(5774), + [anon_sym_PIPE_AMP] = ACTIONS(4827), + [anon_sym_AMP_AMP] = ACTIONS(4827), + [anon_sym_PIPE_PIPE] = ACTIONS(4827), + [sym__special_characters] = ACTIONS(5774), + [anon_sym_DQUOTE] = ACTIONS(4827), + [anon_sym_DOLLAR] = ACTIONS(5774), + [sym_raw_string] = ACTIONS(4827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4827), + [anon_sym_BQUOTE] = ACTIONS(4827), + [anon_sym_LT_LPAREN] = ACTIONS(4827), + [anon_sym_GT_LPAREN] = ACTIONS(4827), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5774), + [sym_word] = ACTIONS(4829), + }, + [3086] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7070), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3087] = { + [sym_file_descriptor] = ACTIONS(5929), + [sym__concat] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(6710), + [anon_sym_PIPE_AMP] = ACTIONS(5929), + [anon_sym_AMP_AMP] = ACTIONS(5929), + [anon_sym_PIPE_PIPE] = ACTIONS(5929), + [anon_sym_EQ_TILDE] = ACTIONS(6710), + [anon_sym_LT] = ACTIONS(6710), + [anon_sym_GT] = ACTIONS(6710), + [anon_sym_GT_GT] = ACTIONS(5929), + [anon_sym_AMP_GT] = ACTIONS(6710), + [anon_sym_AMP_GT_GT] = ACTIONS(5929), + [anon_sym_LT_AMP] = ACTIONS(5929), + [anon_sym_GT_AMP] = ACTIONS(5929), + [anon_sym_LT_LT] = ACTIONS(6710), + [anon_sym_LT_LT_DASH] = ACTIONS(5929), + [anon_sym_LT_LT_LT] = ACTIONS(5929), + [sym__special_characters] = ACTIONS(6710), + [anon_sym_DQUOTE] = ACTIONS(5929), + [anon_sym_DOLLAR] = ACTIONS(6710), + [sym_raw_string] = ACTIONS(5929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5929), + [anon_sym_BQUOTE] = ACTIONS(5929), + [anon_sym_LT_LPAREN] = ACTIONS(5929), + [anon_sym_GT_LPAREN] = ACTIONS(5929), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5931), + }, + [3088] = { + [sym_file_descriptor] = ACTIONS(5933), + [sym__concat] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(6712), + [anon_sym_PIPE_AMP] = ACTIONS(5933), + [anon_sym_AMP_AMP] = ACTIONS(5933), + [anon_sym_PIPE_PIPE] = ACTIONS(5933), + [anon_sym_EQ_TILDE] = ACTIONS(6712), + [anon_sym_LT] = ACTIONS(6712), + [anon_sym_GT] = ACTIONS(6712), + [anon_sym_GT_GT] = ACTIONS(5933), + [anon_sym_AMP_GT] = ACTIONS(6712), + [anon_sym_AMP_GT_GT] = ACTIONS(5933), + [anon_sym_LT_AMP] = ACTIONS(5933), + [anon_sym_GT_AMP] = ACTIONS(5933), + [anon_sym_LT_LT] = ACTIONS(6712), + [anon_sym_LT_LT_DASH] = ACTIONS(5933), + [anon_sym_LT_LT_LT] = ACTIONS(5933), + [sym__special_characters] = ACTIONS(6712), + [anon_sym_DQUOTE] = ACTIONS(5933), + [anon_sym_DOLLAR] = ACTIONS(6712), + [sym_raw_string] = ACTIONS(5933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5933), + [anon_sym_BQUOTE] = ACTIONS(5933), + [anon_sym_LT_LPAREN] = ACTIONS(5933), + [anon_sym_GT_LPAREN] = ACTIONS(5933), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5935), + }, + [3089] = { + [sym_file_descriptor] = ACTIONS(5937), + [sym__concat] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(6714), + [anon_sym_PIPE_AMP] = ACTIONS(5937), + [anon_sym_AMP_AMP] = ACTIONS(5937), + [anon_sym_PIPE_PIPE] = ACTIONS(5937), + [anon_sym_EQ_TILDE] = ACTIONS(6714), + [anon_sym_LT] = ACTIONS(6714), + [anon_sym_GT] = ACTIONS(6714), + [anon_sym_GT_GT] = ACTIONS(5937), + [anon_sym_AMP_GT] = ACTIONS(6714), + [anon_sym_AMP_GT_GT] = ACTIONS(5937), + [anon_sym_LT_AMP] = ACTIONS(5937), + [anon_sym_GT_AMP] = ACTIONS(5937), + [anon_sym_LT_LT] = ACTIONS(6714), + [anon_sym_LT_LT_DASH] = ACTIONS(5937), + [anon_sym_LT_LT_LT] = ACTIONS(5937), + [sym__special_characters] = ACTIONS(6714), + [anon_sym_DQUOTE] = ACTIONS(5937), + [anon_sym_DOLLAR] = ACTIONS(6714), + [sym_raw_string] = ACTIONS(5937), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5937), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5937), + [anon_sym_BQUOTE] = ACTIONS(5937), + [anon_sym_LT_LPAREN] = ACTIONS(5937), + [anon_sym_GT_LPAREN] = ACTIONS(5937), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5939), + }, + [3090] = { + [sym_file_descriptor] = ACTIONS(5941), + [sym__concat] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_PIPE_AMP] = ACTIONS(5941), + [anon_sym_AMP_AMP] = ACTIONS(5941), + [anon_sym_PIPE_PIPE] = ACTIONS(5941), + [anon_sym_EQ_TILDE] = ACTIONS(6716), + [anon_sym_LT] = ACTIONS(6716), + [anon_sym_GT] = ACTIONS(6716), + [anon_sym_GT_GT] = ACTIONS(5941), + [anon_sym_AMP_GT] = ACTIONS(6716), + [anon_sym_AMP_GT_GT] = ACTIONS(5941), + [anon_sym_LT_AMP] = ACTIONS(5941), + [anon_sym_GT_AMP] = ACTIONS(5941), + [anon_sym_LT_LT] = ACTIONS(6716), + [anon_sym_LT_LT_DASH] = ACTIONS(5941), + [anon_sym_LT_LT_LT] = ACTIONS(5941), + [sym__special_characters] = ACTIONS(6716), + [anon_sym_DQUOTE] = ACTIONS(5941), + [anon_sym_DOLLAR] = ACTIONS(6716), + [sym_raw_string] = ACTIONS(5941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5941), + [anon_sym_BQUOTE] = ACTIONS(5941), + [anon_sym_LT_LPAREN] = ACTIONS(5941), + [anon_sym_GT_LPAREN] = ACTIONS(5941), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5943), + }, + [3091] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7072), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3092] = { + [sym_file_descriptor] = ACTIONS(5947), + [sym__concat] = ACTIONS(5947), + [anon_sym_PIPE] = ACTIONS(6720), + [anon_sym_PIPE_AMP] = ACTIONS(5947), + [anon_sym_AMP_AMP] = ACTIONS(5947), + [anon_sym_PIPE_PIPE] = ACTIONS(5947), + [anon_sym_EQ_TILDE] = ACTIONS(6720), + [anon_sym_LT] = ACTIONS(6720), + [anon_sym_GT] = ACTIONS(6720), + [anon_sym_GT_GT] = ACTIONS(5947), + [anon_sym_AMP_GT] = ACTIONS(6720), + [anon_sym_AMP_GT_GT] = ACTIONS(5947), + [anon_sym_LT_AMP] = ACTIONS(5947), + [anon_sym_GT_AMP] = ACTIONS(5947), + [anon_sym_LT_LT] = ACTIONS(6720), + [anon_sym_LT_LT_DASH] = ACTIONS(5947), + [anon_sym_LT_LT_LT] = ACTIONS(5947), + [sym__special_characters] = ACTIONS(6720), + [anon_sym_DQUOTE] = ACTIONS(5947), + [anon_sym_DOLLAR] = ACTIONS(6720), + [sym_raw_string] = ACTIONS(5947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5947), + [anon_sym_BQUOTE] = ACTIONS(5947), + [anon_sym_LT_LPAREN] = ACTIONS(5947), + [anon_sym_GT_LPAREN] = ACTIONS(5947), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5949), + }, + [3093] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7074), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3094] = { + [sym_file_descriptor] = ACTIONS(5953), + [sym__concat] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(6724), + [anon_sym_PIPE_AMP] = ACTIONS(5953), + [anon_sym_AMP_AMP] = ACTIONS(5953), + [anon_sym_PIPE_PIPE] = ACTIONS(5953), + [anon_sym_EQ_TILDE] = ACTIONS(6724), + [anon_sym_LT] = ACTIONS(6724), + [anon_sym_GT] = ACTIONS(6724), + [anon_sym_GT_GT] = ACTIONS(5953), + [anon_sym_AMP_GT] = ACTIONS(6724), + [anon_sym_AMP_GT_GT] = ACTIONS(5953), + [anon_sym_LT_AMP] = ACTIONS(5953), + [anon_sym_GT_AMP] = ACTIONS(5953), + [anon_sym_LT_LT] = ACTIONS(6724), + [anon_sym_LT_LT_DASH] = ACTIONS(5953), + [anon_sym_LT_LT_LT] = ACTIONS(5953), + [sym__special_characters] = ACTIONS(6724), + [anon_sym_DQUOTE] = ACTIONS(5953), + [anon_sym_DOLLAR] = ACTIONS(6724), + [sym_raw_string] = ACTIONS(5953), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5953), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5953), + [anon_sym_BQUOTE] = ACTIONS(5953), + [anon_sym_LT_LPAREN] = ACTIONS(5953), + [anon_sym_GT_LPAREN] = ACTIONS(5953), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5955), + }, + [3095] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7076), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3096] = { + [sym_file_descriptor] = ACTIONS(5959), + [sym__concat] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(6728), + [anon_sym_PIPE_AMP] = ACTIONS(5959), + [anon_sym_AMP_AMP] = ACTIONS(5959), + [anon_sym_PIPE_PIPE] = ACTIONS(5959), + [anon_sym_EQ_TILDE] = ACTIONS(6728), + [anon_sym_LT] = ACTIONS(6728), + [anon_sym_GT] = ACTIONS(6728), + [anon_sym_GT_GT] = ACTIONS(5959), + [anon_sym_AMP_GT] = ACTIONS(6728), + [anon_sym_AMP_GT_GT] = ACTIONS(5959), + [anon_sym_LT_AMP] = ACTIONS(5959), + [anon_sym_GT_AMP] = ACTIONS(5959), + [anon_sym_LT_LT] = ACTIONS(6728), + [anon_sym_LT_LT_DASH] = ACTIONS(5959), + [anon_sym_LT_LT_LT] = ACTIONS(5959), + [sym__special_characters] = ACTIONS(6728), + [anon_sym_DQUOTE] = ACTIONS(5959), + [anon_sym_DOLLAR] = ACTIONS(6728), + [sym_raw_string] = ACTIONS(5959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5959), + [anon_sym_BQUOTE] = ACTIONS(5959), + [anon_sym_LT_LPAREN] = ACTIONS(5959), + [anon_sym_GT_LPAREN] = ACTIONS(5959), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5961), + }, + [3097] = { + [sym_file_descriptor] = ACTIONS(5963), + [sym__concat] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(6730), + [anon_sym_PIPE_AMP] = ACTIONS(5963), + [anon_sym_AMP_AMP] = ACTIONS(5963), + [anon_sym_PIPE_PIPE] = ACTIONS(5963), + [anon_sym_EQ_TILDE] = ACTIONS(6730), + [anon_sym_LT] = ACTIONS(6730), + [anon_sym_GT] = ACTIONS(6730), + [anon_sym_GT_GT] = ACTIONS(5963), + [anon_sym_AMP_GT] = ACTIONS(6730), + [anon_sym_AMP_GT_GT] = ACTIONS(5963), + [anon_sym_LT_AMP] = ACTIONS(5963), + [anon_sym_GT_AMP] = ACTIONS(5963), + [anon_sym_LT_LT] = ACTIONS(6730), + [anon_sym_LT_LT_DASH] = ACTIONS(5963), + [anon_sym_LT_LT_LT] = ACTIONS(5963), + [sym__special_characters] = ACTIONS(6730), + [anon_sym_DQUOTE] = ACTIONS(5963), + [anon_sym_DOLLAR] = ACTIONS(6730), + [sym_raw_string] = ACTIONS(5963), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5963), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5963), + [anon_sym_BQUOTE] = ACTIONS(5963), + [anon_sym_LT_LPAREN] = ACTIONS(5963), + [anon_sym_GT_LPAREN] = ACTIONS(5963), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5965), + }, + [3098] = { + [sym_file_descriptor] = ACTIONS(3235), + [sym__concat] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_PIPE_AMP] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_LT] = ACTIONS(4540), + [anon_sym_GT] = ACTIONS(4540), + [anon_sym_GT_GT] = ACTIONS(3235), + [anon_sym_AMP_GT] = ACTIONS(4540), + [anon_sym_AMP_GT_GT] = ACTIONS(3235), + [anon_sym_LT_AMP] = ACTIONS(3235), + [anon_sym_GT_AMP] = ACTIONS(3235), + [anon_sym_LT_LT] = ACTIONS(4540), + [anon_sym_LT_LT_DASH] = ACTIONS(3235), + [anon_sym_LT_LT_LT] = ACTIONS(3235), + [anon_sym_BQUOTE] = ACTIONS(3235), + [sym_comment] = ACTIONS(56), + }, + [3099] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7078), + [sym_comment] = ACTIONS(56), + }, + [3100] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7080), + [sym_comment] = ACTIONS(56), + }, + [3101] = { + [anon_sym_RBRACE] = ACTIONS(7080), + [sym_comment] = ACTIONS(56), + }, + [3102] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3523), + [anon_sym_RBRACE] = ACTIONS(7082), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3103] = { + [sym_file_descriptor] = ACTIONS(3297), + [sym__concat] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(4548), + [anon_sym_PIPE_AMP] = ACTIONS(3297), + [anon_sym_AMP_AMP] = ACTIONS(3297), + [anon_sym_PIPE_PIPE] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(4548), + [anon_sym_GT] = ACTIONS(4548), + [anon_sym_GT_GT] = ACTIONS(3297), + [anon_sym_AMP_GT] = ACTIONS(4548), + [anon_sym_AMP_GT_GT] = ACTIONS(3297), + [anon_sym_LT_AMP] = ACTIONS(3297), + [anon_sym_GT_AMP] = ACTIONS(3297), + [anon_sym_LT_LT] = ACTIONS(4548), + [anon_sym_LT_LT_DASH] = ACTIONS(3297), + [anon_sym_LT_LT_LT] = ACTIONS(3297), + [anon_sym_BQUOTE] = ACTIONS(3297), + [sym_comment] = ACTIONS(56), + }, + [3104] = { + [sym_concatenation] = STATE(3526), + [sym_string] = STATE(3525), + [sym_simple_expansion] = STATE(3525), + [sym_string_expansion] = STATE(3525), + [sym_expansion] = STATE(3525), + [sym_command_substitution] = STATE(3525), + [sym_process_substitution] = STATE(3525), + [anon_sym_RBRACE] = ACTIONS(7080), + [sym__special_characters] = ACTIONS(7084), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(7086), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7088), + }, + [3105] = { + [sym_file_descriptor] = ACTIONS(3342), + [sym__concat] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(4556), + [anon_sym_PIPE_AMP] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(4556), + [anon_sym_GT] = ACTIONS(4556), + [anon_sym_GT_GT] = ACTIONS(3342), + [anon_sym_AMP_GT] = ACTIONS(4556), + [anon_sym_AMP_GT_GT] = ACTIONS(3342), + [anon_sym_LT_AMP] = ACTIONS(3342), + [anon_sym_GT_AMP] = ACTIONS(3342), + [anon_sym_LT_LT] = ACTIONS(4556), + [anon_sym_LT_LT_DASH] = ACTIONS(3342), + [anon_sym_LT_LT_LT] = ACTIONS(3342), + [anon_sym_BQUOTE] = ACTIONS(3342), + [sym_comment] = ACTIONS(56), + }, + [3106] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7090), + }, + [3107] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7092), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3108] = { + [sym_file_descriptor] = ACTIONS(3350), + [sym__concat] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_PIPE_AMP] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(4562), + [anon_sym_GT] = ACTIONS(4562), + [anon_sym_GT_GT] = ACTIONS(3350), + [anon_sym_AMP_GT] = ACTIONS(4562), + [anon_sym_AMP_GT_GT] = ACTIONS(3350), + [anon_sym_LT_AMP] = ACTIONS(3350), + [anon_sym_GT_AMP] = ACTIONS(3350), + [anon_sym_LT_LT] = ACTIONS(4562), + [anon_sym_LT_LT_DASH] = ACTIONS(3350), + [anon_sym_LT_LT_LT] = ACTIONS(3350), + [anon_sym_BQUOTE] = ACTIONS(3350), + [sym_comment] = ACTIONS(56), + }, + [3109] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7094), + }, + [3110] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7096), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3111] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7098), + }, + [3112] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7080), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3113] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3533), + [anon_sym_RBRACE] = ACTIONS(7100), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3114] = { + [sym_file_descriptor] = ACTIONS(3362), + [sym__concat] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_PIPE_AMP] = ACTIONS(3362), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_PIPE_PIPE] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(4572), + [anon_sym_GT] = ACTIONS(4572), + [anon_sym_GT_GT] = ACTIONS(3362), + [anon_sym_AMP_GT] = ACTIONS(4572), + [anon_sym_AMP_GT_GT] = ACTIONS(3362), + [anon_sym_LT_AMP] = ACTIONS(3362), + [anon_sym_GT_AMP] = ACTIONS(3362), + [anon_sym_LT_LT] = ACTIONS(4572), + [anon_sym_LT_LT_DASH] = ACTIONS(3362), + [anon_sym_LT_LT_LT] = ACTIONS(3362), + [anon_sym_BQUOTE] = ACTIONS(3362), + [sym_comment] = ACTIONS(56), + }, + [3115] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3535), + [anon_sym_RBRACE] = ACTIONS(7102), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3116] = { + [sym_file_descriptor] = ACTIONS(4728), + [sym__concat] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4730), + [anon_sym_SEMI_SEMI] = ACTIONS(4730), + [anon_sym_PIPE_AMP] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_GT] = ACTIONS(4730), + [anon_sym_GT_GT] = ACTIONS(4730), + [anon_sym_AMP_GT] = ACTIONS(4730), + [anon_sym_AMP_GT_GT] = ACTIONS(4730), + [anon_sym_LT_AMP] = ACTIONS(4730), + [anon_sym_GT_AMP] = ACTIONS(4730), + [anon_sym_LT_LT] = ACTIONS(4730), + [anon_sym_LT_LT_DASH] = ACTIONS(4730), + [anon_sym_LT_LT_LT] = ACTIONS(4730), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_LF] = ACTIONS(4730), + [anon_sym_AMP] = ACTIONS(4730), + }, + [3117] = { + [sym_file_descriptor] = ACTIONS(4734), + [sym__concat] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(4736), + [anon_sym_SEMI_SEMI] = ACTIONS(4736), + [anon_sym_PIPE_AMP] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_GT_GT] = ACTIONS(4736), + [anon_sym_AMP_GT] = ACTIONS(4736), + [anon_sym_AMP_GT_GT] = ACTIONS(4736), + [anon_sym_LT_AMP] = ACTIONS(4736), + [anon_sym_GT_AMP] = ACTIONS(4736), + [anon_sym_LT_LT] = ACTIONS(4736), + [anon_sym_LT_LT_DASH] = ACTIONS(4736), + [anon_sym_LT_LT_LT] = ACTIONS(4736), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_LF] = ACTIONS(4736), + [anon_sym_AMP] = ACTIONS(4736), + }, + [3118] = { + [sym_file_descriptor] = ACTIONS(4797), + [sym__concat] = ACTIONS(4797), + [anon_sym_PIPE] = ACTIONS(4799), + [anon_sym_SEMI_SEMI] = ACTIONS(4799), + [anon_sym_PIPE_AMP] = ACTIONS(4799), + [anon_sym_AMP_AMP] = ACTIONS(4799), + [anon_sym_PIPE_PIPE] = ACTIONS(4799), + [anon_sym_LT] = ACTIONS(4799), + [anon_sym_GT] = ACTIONS(4799), + [anon_sym_GT_GT] = ACTIONS(4799), + [anon_sym_AMP_GT] = ACTIONS(4799), + [anon_sym_AMP_GT_GT] = ACTIONS(4799), + [anon_sym_LT_AMP] = ACTIONS(4799), + [anon_sym_GT_AMP] = ACTIONS(4799), + [anon_sym_LT_LT] = ACTIONS(4799), + [anon_sym_LT_LT_DASH] = ACTIONS(4799), + [anon_sym_LT_LT_LT] = ACTIONS(4799), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4799), + [anon_sym_LF] = ACTIONS(4799), + [anon_sym_AMP] = ACTIONS(4799), + }, + [3119] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7104), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3120] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7106), + [sym_comment] = ACTIONS(56), + }, + [3121] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7108), + [sym_comment] = ACTIONS(56), + }, + [3122] = { + [anon_sym_RBRACE] = ACTIONS(7108), + [sym_comment] = ACTIONS(56), + }, + [3123] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3540), + [anon_sym_RBRACE] = ACTIONS(7110), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3124] = { + [sym_file_descriptor] = ACTIONS(4809), + [sym__concat] = ACTIONS(4809), + [anon_sym_PIPE] = ACTIONS(4811), + [anon_sym_SEMI_SEMI] = ACTIONS(4811), + [anon_sym_PIPE_AMP] = ACTIONS(4811), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4811), + [anon_sym_GT] = ACTIONS(4811), + [anon_sym_GT_GT] = ACTIONS(4811), + [anon_sym_AMP_GT] = ACTIONS(4811), + [anon_sym_AMP_GT_GT] = ACTIONS(4811), + [anon_sym_LT_AMP] = ACTIONS(4811), + [anon_sym_GT_AMP] = ACTIONS(4811), + [anon_sym_LT_LT] = ACTIONS(4811), + [anon_sym_LT_LT_DASH] = ACTIONS(4811), + [anon_sym_LT_LT_LT] = ACTIONS(4811), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym_LF] = ACTIONS(4811), + [anon_sym_AMP] = ACTIONS(4811), + }, + [3125] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3542), + [anon_sym_RBRACE] = ACTIONS(7112), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3126] = { + [sym_file_descriptor] = ACTIONS(4815), + [sym__concat] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(4817), + [anon_sym_SEMI_SEMI] = ACTIONS(4817), + [anon_sym_PIPE_AMP] = ACTIONS(4817), + [anon_sym_AMP_AMP] = ACTIONS(4817), + [anon_sym_PIPE_PIPE] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4817), + [anon_sym_GT] = ACTIONS(4817), + [anon_sym_GT_GT] = ACTIONS(4817), + [anon_sym_AMP_GT] = ACTIONS(4817), + [anon_sym_AMP_GT_GT] = ACTIONS(4817), + [anon_sym_LT_AMP] = ACTIONS(4817), + [anon_sym_GT_AMP] = ACTIONS(4817), + [anon_sym_LT_LT] = ACTIONS(4817), + [anon_sym_LT_LT_DASH] = ACTIONS(4817), + [anon_sym_LT_LT_LT] = ACTIONS(4817), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4817), + [anon_sym_LF] = ACTIONS(4817), + [anon_sym_AMP] = ACTIONS(4817), + }, + [3127] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3544), + [anon_sym_RBRACE] = ACTIONS(7114), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3128] = { + [sym_file_descriptor] = ACTIONS(4821), + [sym__concat] = ACTIONS(4821), + [anon_sym_PIPE] = ACTIONS(4823), + [anon_sym_SEMI_SEMI] = ACTIONS(4823), + [anon_sym_PIPE_AMP] = ACTIONS(4823), + [anon_sym_AMP_AMP] = ACTIONS(4823), + [anon_sym_PIPE_PIPE] = ACTIONS(4823), + [anon_sym_LT] = ACTIONS(4823), + [anon_sym_GT] = ACTIONS(4823), + [anon_sym_GT_GT] = ACTIONS(4823), + [anon_sym_AMP_GT] = ACTIONS(4823), + [anon_sym_AMP_GT_GT] = ACTIONS(4823), + [anon_sym_LT_AMP] = ACTIONS(4823), + [anon_sym_GT_AMP] = ACTIONS(4823), + [anon_sym_LT_LT] = ACTIONS(4823), + [anon_sym_LT_LT_DASH] = ACTIONS(4823), + [anon_sym_LT_LT_LT] = ACTIONS(4823), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4823), + [anon_sym_LF] = ACTIONS(4823), + [anon_sym_AMP] = ACTIONS(4823), + }, + [3129] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7116), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3130] = { + [sym_file_descriptor] = ACTIONS(4827), + [sym__concat] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_SEMI_SEMI] = ACTIONS(4829), + [anon_sym_PIPE_AMP] = ACTIONS(4829), + [anon_sym_AMP_AMP] = ACTIONS(4829), + [anon_sym_PIPE_PIPE] = ACTIONS(4829), + [anon_sym_LT] = ACTIONS(4829), + [anon_sym_GT] = ACTIONS(4829), + [anon_sym_GT_GT] = ACTIONS(4829), + [anon_sym_AMP_GT] = ACTIONS(4829), + [anon_sym_AMP_GT_GT] = ACTIONS(4829), + [anon_sym_LT_AMP] = ACTIONS(4829), + [anon_sym_GT_AMP] = ACTIONS(4829), + [anon_sym_LT_LT] = ACTIONS(4829), + [anon_sym_LT_LT_DASH] = ACTIONS(4829), + [anon_sym_LT_LT_LT] = ACTIONS(4829), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4829), + [anon_sym_LF] = ACTIONS(4829), + [anon_sym_AMP] = ACTIONS(4829), + }, + [3131] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7118), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3132] = { + [sym__heredoc_middle] = ACTIONS(3235), + [sym__heredoc_end] = ACTIONS(3235), + [anon_sym_DOLLAR] = ACTIONS(4540), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3235), + [sym_comment] = ACTIONS(56), + }, + [3133] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7120), + [sym_comment] = ACTIONS(56), + }, + [3134] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7122), + [sym_comment] = ACTIONS(56), + }, + [3135] = { + [anon_sym_RBRACE] = ACTIONS(7122), + [sym_comment] = ACTIONS(56), + }, + [3136] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3550), + [anon_sym_RBRACE] = ACTIONS(7124), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3137] = { + [sym__heredoc_middle] = ACTIONS(3297), + [sym__heredoc_end] = ACTIONS(3297), + [anon_sym_DOLLAR] = ACTIONS(4548), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3297), + [sym_comment] = ACTIONS(56), + }, + [3138] = { + [sym_concatenation] = STATE(3553), + [sym_string] = STATE(3552), + [sym_simple_expansion] = STATE(3552), + [sym_string_expansion] = STATE(3552), + [sym_expansion] = STATE(3552), + [sym_command_substitution] = STATE(3552), + [sym_process_substitution] = STATE(3552), + [anon_sym_RBRACE] = ACTIONS(7122), + [sym__special_characters] = ACTIONS(7126), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(7128), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7130), + }, + [3139] = { + [sym__heredoc_middle] = ACTIONS(3342), + [sym__heredoc_end] = ACTIONS(3342), + [anon_sym_DOLLAR] = ACTIONS(4556), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3342), + [sym_comment] = ACTIONS(56), + }, + [3140] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7132), + }, + [3141] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7134), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3142] = { + [sym__heredoc_middle] = ACTIONS(3350), + [sym__heredoc_end] = ACTIONS(3350), + [anon_sym_DOLLAR] = ACTIONS(4562), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3350), + [sym_comment] = ACTIONS(56), + }, + [3143] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7136), + }, + [3144] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7138), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3145] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7140), + }, + [3146] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7122), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3147] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3560), + [anon_sym_RBRACE] = ACTIONS(7142), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3148] = { + [sym__heredoc_middle] = ACTIONS(3362), + [sym__heredoc_end] = ACTIONS(3362), + [anon_sym_DOLLAR] = ACTIONS(4572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3362), + [sym_comment] = ACTIONS(56), + }, + [3149] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3562), + [anon_sym_RBRACE] = ACTIONS(7144), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3150] = { + [sym__concat] = ACTIONS(5929), + [anon_sym_RBRACK] = ACTIONS(5929), + [sym_comment] = ACTIONS(56), + }, + [3151] = { + [sym__concat] = ACTIONS(5933), + [anon_sym_RBRACK] = ACTIONS(5933), + [sym_comment] = ACTIONS(56), + }, + [3152] = { + [sym__concat] = ACTIONS(5937), + [anon_sym_RBRACK] = ACTIONS(5937), + [sym_comment] = ACTIONS(56), + }, + [3153] = { + [sym__concat] = ACTIONS(5941), + [anon_sym_RBRACK] = ACTIONS(5941), + [sym_comment] = ACTIONS(56), + }, + [3154] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7146), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3155] = { + [sym__concat] = ACTIONS(5947), + [anon_sym_RBRACK] = ACTIONS(5947), + [sym_comment] = ACTIONS(56), + }, + [3156] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7148), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3157] = { + [sym__concat] = ACTIONS(5953), + [anon_sym_RBRACK] = ACTIONS(5953), + [sym_comment] = ACTIONS(56), + }, + [3158] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7150), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3159] = { + [sym__concat] = ACTIONS(5959), + [anon_sym_RBRACK] = ACTIONS(5959), + [sym_comment] = ACTIONS(56), + }, + [3160] = { + [sym__concat] = ACTIONS(5963), + [anon_sym_RBRACK] = ACTIONS(5963), + [sym_comment] = ACTIONS(56), + }, + [3161] = { + [sym__concat] = ACTIONS(4728), + [anon_sym_RPAREN] = ACTIONS(4728), + [sym__special_characters] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(5748), + [sym_raw_string] = ACTIONS(4728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LT_LPAREN] = ACTIONS(4728), + [anon_sym_GT_LPAREN] = ACTIONS(4728), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5748), + }, + [3162] = { + [sym__concat] = ACTIONS(4734), + [anon_sym_RPAREN] = ACTIONS(4734), + [sym__special_characters] = ACTIONS(5750), + [anon_sym_DQUOTE] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(5750), + [sym_raw_string] = ACTIONS(4734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4734), + [anon_sym_BQUOTE] = ACTIONS(4734), + [anon_sym_LT_LPAREN] = ACTIONS(4734), + [anon_sym_GT_LPAREN] = ACTIONS(4734), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5750), + }, + [3163] = { + [sym__concat] = ACTIONS(4797), + [anon_sym_RPAREN] = ACTIONS(4797), + [sym__special_characters] = ACTIONS(5752), + [anon_sym_DQUOTE] = ACTIONS(4797), + [anon_sym_DOLLAR] = ACTIONS(5752), + [sym_raw_string] = ACTIONS(4797), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4797), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4797), + [anon_sym_BQUOTE] = ACTIONS(4797), + [anon_sym_LT_LPAREN] = ACTIONS(4797), + [anon_sym_GT_LPAREN] = ACTIONS(4797), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5752), + }, + [3164] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7152), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3165] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7154), + [sym_comment] = ACTIONS(56), + }, + [3166] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7156), + [sym_comment] = ACTIONS(56), + }, + [3167] = { + [anon_sym_RBRACE] = ACTIONS(7156), + [sym_comment] = ACTIONS(56), + }, + [3168] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3570), + [anon_sym_RBRACE] = ACTIONS(7158), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3169] = { + [sym__concat] = ACTIONS(4809), + [anon_sym_RPAREN] = ACTIONS(4809), + [sym__special_characters] = ACTIONS(5762), + [anon_sym_DQUOTE] = ACTIONS(4809), + [anon_sym_DOLLAR] = ACTIONS(5762), + [sym_raw_string] = ACTIONS(4809), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4809), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4809), + [anon_sym_BQUOTE] = ACTIONS(4809), + [anon_sym_LT_LPAREN] = ACTIONS(4809), + [anon_sym_GT_LPAREN] = ACTIONS(4809), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5762), + }, + [3170] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3572), + [anon_sym_RBRACE] = ACTIONS(7160), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3171] = { + [sym__concat] = ACTIONS(4815), + [anon_sym_RPAREN] = ACTIONS(4815), + [sym__special_characters] = ACTIONS(5766), + [anon_sym_DQUOTE] = ACTIONS(4815), + [anon_sym_DOLLAR] = ACTIONS(5766), + [sym_raw_string] = ACTIONS(4815), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4815), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4815), + [anon_sym_BQUOTE] = ACTIONS(4815), + [anon_sym_LT_LPAREN] = ACTIONS(4815), + [anon_sym_GT_LPAREN] = ACTIONS(4815), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5766), + }, + [3172] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3574), + [anon_sym_RBRACE] = ACTIONS(7162), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3173] = { + [sym__concat] = ACTIONS(4821), + [anon_sym_RPAREN] = ACTIONS(4821), + [sym__special_characters] = ACTIONS(5770), + [anon_sym_DQUOTE] = ACTIONS(4821), + [anon_sym_DOLLAR] = ACTIONS(5770), + [sym_raw_string] = ACTIONS(4821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4821), + [anon_sym_BQUOTE] = ACTIONS(4821), + [anon_sym_LT_LPAREN] = ACTIONS(4821), + [anon_sym_GT_LPAREN] = ACTIONS(4821), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5770), + }, + [3174] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7164), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3175] = { + [sym__concat] = ACTIONS(4827), + [anon_sym_RPAREN] = ACTIONS(4827), + [sym__special_characters] = ACTIONS(5774), + [anon_sym_DQUOTE] = ACTIONS(4827), + [anon_sym_DOLLAR] = ACTIONS(5774), + [sym_raw_string] = ACTIONS(4827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4827), + [anon_sym_BQUOTE] = ACTIONS(4827), + [anon_sym_LT_LPAREN] = ACTIONS(4827), + [anon_sym_GT_LPAREN] = ACTIONS(4827), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5774), + }, + [3176] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7166), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3177] = { + [sym_file_descriptor] = ACTIONS(5929), + [sym__concat] = ACTIONS(5929), + [sym_variable_name] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(5931), + [anon_sym_SEMI_SEMI] = ACTIONS(5931), + [anon_sym_PIPE_AMP] = ACTIONS(5931), + [anon_sym_AMP_AMP] = ACTIONS(5931), + [anon_sym_PIPE_PIPE] = ACTIONS(5931), + [anon_sym_LT] = ACTIONS(5931), + [anon_sym_GT] = ACTIONS(5931), + [anon_sym_GT_GT] = ACTIONS(5931), + [anon_sym_AMP_GT] = ACTIONS(5931), + [anon_sym_AMP_GT_GT] = ACTIONS(5931), + [anon_sym_LT_AMP] = ACTIONS(5931), + [anon_sym_GT_AMP] = ACTIONS(5931), + [sym__special_characters] = ACTIONS(5931), + [anon_sym_DQUOTE] = ACTIONS(5931), + [anon_sym_DOLLAR] = ACTIONS(5931), + [sym_raw_string] = ACTIONS(5931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5931), + [anon_sym_BQUOTE] = ACTIONS(5931), + [anon_sym_LT_LPAREN] = ACTIONS(5931), + [anon_sym_GT_LPAREN] = ACTIONS(5931), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5931), + [anon_sym_SEMI] = ACTIONS(5931), + [anon_sym_LF] = ACTIONS(5931), + [anon_sym_AMP] = ACTIONS(5931), + }, + [3178] = { + [sym_file_descriptor] = ACTIONS(5933), + [sym__concat] = ACTIONS(5933), + [sym_variable_name] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(5935), + [anon_sym_SEMI_SEMI] = ACTIONS(5935), + [anon_sym_PIPE_AMP] = ACTIONS(5935), + [anon_sym_AMP_AMP] = ACTIONS(5935), + [anon_sym_PIPE_PIPE] = ACTIONS(5935), + [anon_sym_LT] = ACTIONS(5935), + [anon_sym_GT] = ACTIONS(5935), + [anon_sym_GT_GT] = ACTIONS(5935), + [anon_sym_AMP_GT] = ACTIONS(5935), + [anon_sym_AMP_GT_GT] = ACTIONS(5935), + [anon_sym_LT_AMP] = ACTIONS(5935), + [anon_sym_GT_AMP] = ACTIONS(5935), + [sym__special_characters] = ACTIONS(5935), + [anon_sym_DQUOTE] = ACTIONS(5935), + [anon_sym_DOLLAR] = ACTIONS(5935), + [sym_raw_string] = ACTIONS(5935), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5935), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5935), + [anon_sym_BQUOTE] = ACTIONS(5935), + [anon_sym_LT_LPAREN] = ACTIONS(5935), + [anon_sym_GT_LPAREN] = ACTIONS(5935), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5935), + [anon_sym_SEMI] = ACTIONS(5935), + [anon_sym_LF] = ACTIONS(5935), + [anon_sym_AMP] = ACTIONS(5935), + }, + [3179] = { + [sym_file_descriptor] = ACTIONS(5937), + [sym__concat] = ACTIONS(5937), + [sym_variable_name] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(5939), + [anon_sym_SEMI_SEMI] = ACTIONS(5939), + [anon_sym_PIPE_AMP] = ACTIONS(5939), + [anon_sym_AMP_AMP] = ACTIONS(5939), + [anon_sym_PIPE_PIPE] = ACTIONS(5939), + [anon_sym_LT] = ACTIONS(5939), + [anon_sym_GT] = ACTIONS(5939), + [anon_sym_GT_GT] = ACTIONS(5939), + [anon_sym_AMP_GT] = ACTIONS(5939), + [anon_sym_AMP_GT_GT] = ACTIONS(5939), + [anon_sym_LT_AMP] = ACTIONS(5939), + [anon_sym_GT_AMP] = ACTIONS(5939), + [sym__special_characters] = ACTIONS(5939), + [anon_sym_DQUOTE] = ACTIONS(5939), + [anon_sym_DOLLAR] = ACTIONS(5939), + [sym_raw_string] = ACTIONS(5939), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5939), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5939), + [anon_sym_BQUOTE] = ACTIONS(5939), + [anon_sym_LT_LPAREN] = ACTIONS(5939), + [anon_sym_GT_LPAREN] = ACTIONS(5939), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5939), + [anon_sym_SEMI] = ACTIONS(5939), + [anon_sym_LF] = ACTIONS(5939), + [anon_sym_AMP] = ACTIONS(5939), + }, + [3180] = { + [sym_file_descriptor] = ACTIONS(5941), + [sym__concat] = ACTIONS(5941), + [sym_variable_name] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(5943), + [anon_sym_SEMI_SEMI] = ACTIONS(5943), + [anon_sym_PIPE_AMP] = ACTIONS(5943), + [anon_sym_AMP_AMP] = ACTIONS(5943), + [anon_sym_PIPE_PIPE] = ACTIONS(5943), + [anon_sym_LT] = ACTIONS(5943), + [anon_sym_GT] = ACTIONS(5943), + [anon_sym_GT_GT] = ACTIONS(5943), + [anon_sym_AMP_GT] = ACTIONS(5943), + [anon_sym_AMP_GT_GT] = ACTIONS(5943), + [anon_sym_LT_AMP] = ACTIONS(5943), + [anon_sym_GT_AMP] = ACTIONS(5943), + [sym__special_characters] = ACTIONS(5943), + [anon_sym_DQUOTE] = ACTIONS(5943), + [anon_sym_DOLLAR] = ACTIONS(5943), + [sym_raw_string] = ACTIONS(5943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5943), + [anon_sym_BQUOTE] = ACTIONS(5943), + [anon_sym_LT_LPAREN] = ACTIONS(5943), + [anon_sym_GT_LPAREN] = ACTIONS(5943), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5943), + [anon_sym_SEMI] = ACTIONS(5943), + [anon_sym_LF] = ACTIONS(5943), + [anon_sym_AMP] = ACTIONS(5943), + }, + [3181] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7168), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3182] = { + [sym_file_descriptor] = ACTIONS(5947), + [sym__concat] = ACTIONS(5947), + [sym_variable_name] = ACTIONS(5947), + [anon_sym_PIPE] = ACTIONS(5949), + [anon_sym_SEMI_SEMI] = ACTIONS(5949), + [anon_sym_PIPE_AMP] = ACTIONS(5949), + [anon_sym_AMP_AMP] = ACTIONS(5949), + [anon_sym_PIPE_PIPE] = ACTIONS(5949), + [anon_sym_LT] = ACTIONS(5949), + [anon_sym_GT] = ACTIONS(5949), + [anon_sym_GT_GT] = ACTIONS(5949), + [anon_sym_AMP_GT] = ACTIONS(5949), + [anon_sym_AMP_GT_GT] = ACTIONS(5949), + [anon_sym_LT_AMP] = ACTIONS(5949), + [anon_sym_GT_AMP] = ACTIONS(5949), + [sym__special_characters] = ACTIONS(5949), + [anon_sym_DQUOTE] = ACTIONS(5949), + [anon_sym_DOLLAR] = ACTIONS(5949), + [sym_raw_string] = ACTIONS(5949), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5949), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5949), + [anon_sym_BQUOTE] = ACTIONS(5949), + [anon_sym_LT_LPAREN] = ACTIONS(5949), + [anon_sym_GT_LPAREN] = ACTIONS(5949), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5949), + [anon_sym_SEMI] = ACTIONS(5949), + [anon_sym_LF] = ACTIONS(5949), + [anon_sym_AMP] = ACTIONS(5949), + }, + [3183] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7170), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3184] = { + [sym_file_descriptor] = ACTIONS(5953), + [sym__concat] = ACTIONS(5953), + [sym_variable_name] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(5955), + [anon_sym_SEMI_SEMI] = ACTIONS(5955), + [anon_sym_PIPE_AMP] = ACTIONS(5955), + [anon_sym_AMP_AMP] = ACTIONS(5955), + [anon_sym_PIPE_PIPE] = ACTIONS(5955), + [anon_sym_LT] = ACTIONS(5955), + [anon_sym_GT] = ACTIONS(5955), + [anon_sym_GT_GT] = ACTIONS(5955), + [anon_sym_AMP_GT] = ACTIONS(5955), + [anon_sym_AMP_GT_GT] = ACTIONS(5955), + [anon_sym_LT_AMP] = ACTIONS(5955), + [anon_sym_GT_AMP] = ACTIONS(5955), + [sym__special_characters] = ACTIONS(5955), + [anon_sym_DQUOTE] = ACTIONS(5955), + [anon_sym_DOLLAR] = ACTIONS(5955), + [sym_raw_string] = ACTIONS(5955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5955), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5955), + [anon_sym_BQUOTE] = ACTIONS(5955), + [anon_sym_LT_LPAREN] = ACTIONS(5955), + [anon_sym_GT_LPAREN] = ACTIONS(5955), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5955), + [anon_sym_SEMI] = ACTIONS(5955), + [anon_sym_LF] = ACTIONS(5955), + [anon_sym_AMP] = ACTIONS(5955), + }, + [3185] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7172), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3186] = { + [sym_file_descriptor] = ACTIONS(5959), + [sym__concat] = ACTIONS(5959), + [sym_variable_name] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_SEMI_SEMI] = ACTIONS(5961), + [anon_sym_PIPE_AMP] = ACTIONS(5961), + [anon_sym_AMP_AMP] = ACTIONS(5961), + [anon_sym_PIPE_PIPE] = ACTIONS(5961), + [anon_sym_LT] = ACTIONS(5961), + [anon_sym_GT] = ACTIONS(5961), + [anon_sym_GT_GT] = ACTIONS(5961), + [anon_sym_AMP_GT] = ACTIONS(5961), + [anon_sym_AMP_GT_GT] = ACTIONS(5961), + [anon_sym_LT_AMP] = ACTIONS(5961), + [anon_sym_GT_AMP] = ACTIONS(5961), + [sym__special_characters] = ACTIONS(5961), + [anon_sym_DQUOTE] = ACTIONS(5961), + [anon_sym_DOLLAR] = ACTIONS(5961), + [sym_raw_string] = ACTIONS(5961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5961), + [anon_sym_BQUOTE] = ACTIONS(5961), + [anon_sym_LT_LPAREN] = ACTIONS(5961), + [anon_sym_GT_LPAREN] = ACTIONS(5961), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5961), + [anon_sym_SEMI] = ACTIONS(5961), + [anon_sym_LF] = ACTIONS(5961), + [anon_sym_AMP] = ACTIONS(5961), + }, + [3187] = { + [sym_file_descriptor] = ACTIONS(5963), + [sym__concat] = ACTIONS(5963), + [sym_variable_name] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(5965), + [anon_sym_SEMI_SEMI] = ACTIONS(5965), + [anon_sym_PIPE_AMP] = ACTIONS(5965), + [anon_sym_AMP_AMP] = ACTIONS(5965), + [anon_sym_PIPE_PIPE] = ACTIONS(5965), + [anon_sym_LT] = ACTIONS(5965), + [anon_sym_GT] = ACTIONS(5965), + [anon_sym_GT_GT] = ACTIONS(5965), + [anon_sym_AMP_GT] = ACTIONS(5965), + [anon_sym_AMP_GT_GT] = ACTIONS(5965), + [anon_sym_LT_AMP] = ACTIONS(5965), + [anon_sym_GT_AMP] = ACTIONS(5965), + [sym__special_characters] = ACTIONS(5965), + [anon_sym_DQUOTE] = ACTIONS(5965), + [anon_sym_DOLLAR] = ACTIONS(5965), + [sym_raw_string] = ACTIONS(5965), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5965), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5965), + [anon_sym_BQUOTE] = ACTIONS(5965), + [anon_sym_LT_LPAREN] = ACTIONS(5965), + [anon_sym_GT_LPAREN] = ACTIONS(5965), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5965), + [anon_sym_SEMI] = ACTIONS(5965), + [anon_sym_LF] = ACTIONS(5965), + [anon_sym_AMP] = ACTIONS(5965), + }, + [3188] = { + [sym__concat] = ACTIONS(4728), + [anon_sym_SEMI_SEMI] = ACTIONS(4730), + [sym__special_characters] = ACTIONS(4730), + [anon_sym_DQUOTE] = ACTIONS(4730), + [anon_sym_DOLLAR] = ACTIONS(4730), + [sym_raw_string] = ACTIONS(4730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), + [anon_sym_BQUOTE] = ACTIONS(4730), + [anon_sym_LT_LPAREN] = ACTIONS(4730), + [anon_sym_GT_LPAREN] = ACTIONS(4730), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_LF] = ACTIONS(4730), + [anon_sym_AMP] = ACTIONS(4730), + }, + [3189] = { + [sym__concat] = ACTIONS(4734), + [anon_sym_SEMI_SEMI] = ACTIONS(4736), + [sym__special_characters] = ACTIONS(4736), + [anon_sym_DQUOTE] = ACTIONS(4736), + [anon_sym_DOLLAR] = ACTIONS(4736), + [sym_raw_string] = ACTIONS(4736), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), + [anon_sym_BQUOTE] = ACTIONS(4736), + [anon_sym_LT_LPAREN] = ACTIONS(4736), + [anon_sym_GT_LPAREN] = ACTIONS(4736), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_LF] = ACTIONS(4736), + [anon_sym_AMP] = ACTIONS(4736), + }, + [3190] = { + [sym__concat] = ACTIONS(4797), + [anon_sym_SEMI_SEMI] = ACTIONS(4799), + [sym__special_characters] = ACTIONS(4799), + [anon_sym_DQUOTE] = ACTIONS(4799), + [anon_sym_DOLLAR] = ACTIONS(4799), + [sym_raw_string] = ACTIONS(4799), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4799), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4799), + [anon_sym_BQUOTE] = ACTIONS(4799), + [anon_sym_LT_LPAREN] = ACTIONS(4799), + [anon_sym_GT_LPAREN] = ACTIONS(4799), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4799), + [anon_sym_SEMI] = ACTIONS(4799), + [anon_sym_LF] = ACTIONS(4799), + [anon_sym_AMP] = ACTIONS(4799), + }, + [3191] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7174), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3192] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7176), + [sym_comment] = ACTIONS(56), + }, + [3193] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7178), + [sym_comment] = ACTIONS(56), + }, + [3194] = { + [anon_sym_RBRACE] = ACTIONS(7178), + [sym_comment] = ACTIONS(56), + }, + [3195] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3584), + [anon_sym_RBRACE] = ACTIONS(7180), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3196] = { + [sym__concat] = ACTIONS(4809), + [anon_sym_SEMI_SEMI] = ACTIONS(4811), + [sym__special_characters] = ACTIONS(4811), + [anon_sym_DQUOTE] = ACTIONS(4811), + [anon_sym_DOLLAR] = ACTIONS(4811), + [sym_raw_string] = ACTIONS(4811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4811), + [anon_sym_BQUOTE] = ACTIONS(4811), + [anon_sym_LT_LPAREN] = ACTIONS(4811), + [anon_sym_GT_LPAREN] = ACTIONS(4811), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4811), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym_LF] = ACTIONS(4811), + [anon_sym_AMP] = ACTIONS(4811), + }, + [3197] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3586), + [anon_sym_RBRACE] = ACTIONS(7182), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3198] = { + [sym__concat] = ACTIONS(4815), + [anon_sym_SEMI_SEMI] = ACTIONS(4817), + [sym__special_characters] = ACTIONS(4817), + [anon_sym_DQUOTE] = ACTIONS(4817), + [anon_sym_DOLLAR] = ACTIONS(4817), + [sym_raw_string] = ACTIONS(4817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4817), + [anon_sym_BQUOTE] = ACTIONS(4817), + [anon_sym_LT_LPAREN] = ACTIONS(4817), + [anon_sym_GT_LPAREN] = ACTIONS(4817), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4817), + [anon_sym_SEMI] = ACTIONS(4817), + [anon_sym_LF] = ACTIONS(4817), + [anon_sym_AMP] = ACTIONS(4817), + }, + [3199] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3588), + [anon_sym_RBRACE] = ACTIONS(7184), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3200] = { + [sym__concat] = ACTIONS(4821), + [anon_sym_SEMI_SEMI] = ACTIONS(4823), + [sym__special_characters] = ACTIONS(4823), + [anon_sym_DQUOTE] = ACTIONS(4823), + [anon_sym_DOLLAR] = ACTIONS(4823), + [sym_raw_string] = ACTIONS(4823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4823), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4823), + [anon_sym_BQUOTE] = ACTIONS(4823), + [anon_sym_LT_LPAREN] = ACTIONS(4823), + [anon_sym_GT_LPAREN] = ACTIONS(4823), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4823), + [anon_sym_SEMI] = ACTIONS(4823), + [anon_sym_LF] = ACTIONS(4823), + [anon_sym_AMP] = ACTIONS(4823), + }, + [3201] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7186), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3202] = { + [sym__concat] = ACTIONS(4827), + [anon_sym_SEMI_SEMI] = ACTIONS(4829), + [sym__special_characters] = ACTIONS(4829), + [anon_sym_DQUOTE] = ACTIONS(4829), + [anon_sym_DOLLAR] = ACTIONS(4829), + [sym_raw_string] = ACTIONS(4829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4829), + [anon_sym_BQUOTE] = ACTIONS(4829), + [anon_sym_LT_LPAREN] = ACTIONS(4829), + [anon_sym_GT_LPAREN] = ACTIONS(4829), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4829), + [anon_sym_SEMI] = ACTIONS(4829), + [anon_sym_LF] = ACTIONS(4829), + [anon_sym_AMP] = ACTIONS(4829), + }, + [3203] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7188), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3204] = { + [anon_sym_PIPE] = ACTIONS(4239), + [anon_sym_RPAREN] = ACTIONS(4239), + [anon_sym_SEMI_SEMI] = ACTIONS(4239), + [anon_sym_PIPE_AMP] = ACTIONS(4239), + [anon_sym_AMP_AMP] = ACTIONS(4239), + [anon_sym_PIPE_PIPE] = ACTIONS(4239), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4239), + [anon_sym_LF] = ACTIONS(4239), + [anon_sym_AMP] = ACTIONS(4239), + }, + [3205] = { + [sym_file_descriptor] = ACTIONS(1080), + [sym_variable_name] = ACTIONS(1080), + [anon_sym_for] = ACTIONS(1082), + [anon_sym_while] = ACTIONS(1082), + [anon_sym_if] = ACTIONS(1082), + [anon_sym_case] = ACTIONS(1082), + [anon_sym_esac] = ACTIONS(1082), + [anon_sym_SEMI_SEMI] = ACTIONS(1080), + [anon_sym_function] = ACTIONS(1082), + [anon_sym_LPAREN] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1080), + [anon_sym_declare] = ACTIONS(1082), + [anon_sym_typeset] = ACTIONS(1082), + [anon_sym_export] = ACTIONS(1082), + [anon_sym_readonly] = ACTIONS(1082), + [anon_sym_local] = ACTIONS(1082), + [anon_sym_unset] = ACTIONS(1082), + [anon_sym_unsetenv] = ACTIONS(1082), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1080), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1080), + [anon_sym_LT_AMP] = ACTIONS(1080), + [anon_sym_GT_AMP] = ACTIONS(1080), + [sym__special_characters] = ACTIONS(1084), + [anon_sym_DQUOTE] = ACTIONS(1080), + [anon_sym_DOLLAR] = ACTIONS(1082), + [sym_raw_string] = ACTIONS(1080), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1080), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1080), + [anon_sym_BQUOTE] = ACTIONS(1080), + [anon_sym_LT_LPAREN] = ACTIONS(1080), + [anon_sym_GT_LPAREN] = ACTIONS(1080), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1084), + }, + [3206] = { + [anon_sym_esac] = ACTIONS(7190), + [sym__special_characters] = ACTIONS(7192), + [anon_sym_DQUOTE] = ACTIONS(7194), + [anon_sym_DOLLAR] = ACTIONS(7192), + [sym_raw_string] = ACTIONS(7194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7194), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7194), + [anon_sym_BQUOTE] = ACTIONS(7194), + [anon_sym_LT_LPAREN] = ACTIONS(7194), + [anon_sym_GT_LPAREN] = ACTIONS(7194), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7196), + }, + [3207] = { + [sym__terminated_statement] = STATE(2635), + [sym_for_statement] = STATE(2636), + [sym_while_statement] = STATE(2636), + [sym_if_statement] = STATE(2636), + [sym_case_statement] = STATE(2636), + [sym_function_definition] = STATE(2636), + [sym_subshell] = STATE(2636), + [sym_pipeline] = STATE(2636), + [sym_list] = STATE(2636), + [sym_command] = STATE(2636), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(2636), + [sym_variable_assignment] = STATE(2637), + [sym_declaration_command] = STATE(2636), + [sym_unset_command] = STATE(2636), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(3207), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(1130), + [sym_variable_name] = ACTIONS(1133), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_if] = ACTIONS(1144), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_esac] = ACTIONS(4241), + [anon_sym_SEMI_SEMI] = ACTIONS(1136), + [anon_sym_function] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1162), + [anon_sym_typeset] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(1162), + [anon_sym_readonly] = ACTIONS(1162), + [anon_sym_local] = ACTIONS(1162), + [anon_sym_unset] = ACTIONS(1165), + [anon_sym_unsetenv] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(1168), + [anon_sym_GT] = ACTIONS(1168), + [anon_sym_GT_GT] = ACTIONS(1171), + [anon_sym_AMP_GT] = ACTIONS(1168), + [anon_sym_AMP_GT_GT] = ACTIONS(1171), + [anon_sym_LT_AMP] = ACTIONS(1171), + [anon_sym_GT_AMP] = ACTIONS(1171), + [sym__special_characters] = ACTIONS(1174), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1180), + [sym_raw_string] = ACTIONS(1183), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1186), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1189), + [anon_sym_BQUOTE] = ACTIONS(1192), + [anon_sym_LT_LPAREN] = ACTIONS(1195), + [anon_sym_GT_LPAREN] = ACTIONS(1195), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1198), + }, + [3208] = { + [sym__terminated_statement] = STATE(2635), + [sym_for_statement] = STATE(2636), + [sym_while_statement] = STATE(2636), + [sym_if_statement] = STATE(2636), + [sym_case_statement] = STATE(2636), + [sym_function_definition] = STATE(2636), + [sym_subshell] = STATE(2636), + [sym_pipeline] = STATE(2636), + [sym_list] = STATE(2636), + [sym_command] = STATE(2636), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(2636), + [sym_variable_assignment] = STATE(2637), + [sym_declaration_command] = STATE(2636), + [sym_unset_command] = STATE(2636), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(3207), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_esac] = ACTIONS(7190), + [anon_sym_SEMI_SEMI] = ACTIONS(7198), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [3209] = { + [anon_sym_esac] = ACTIONS(7200), + [sym__special_characters] = ACTIONS(7202), + [anon_sym_DQUOTE] = ACTIONS(7204), + [anon_sym_DOLLAR] = ACTIONS(7202), + [sym_raw_string] = ACTIONS(7204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7204), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7204), + [anon_sym_BQUOTE] = ACTIONS(7204), + [anon_sym_LT_LPAREN] = ACTIONS(7204), + [anon_sym_GT_LPAREN] = ACTIONS(7204), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7206), + }, + [3210] = { + [sym__terminated_statement] = STATE(2635), + [sym_for_statement] = STATE(2636), + [sym_while_statement] = STATE(2636), + [sym_if_statement] = STATE(2636), + [sym_case_statement] = STATE(2636), + [sym_function_definition] = STATE(2636), + [sym_subshell] = STATE(2636), + [sym_pipeline] = STATE(2636), + [sym_list] = STATE(2636), + [sym_command] = STATE(2636), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(2636), + [sym_variable_assignment] = STATE(2637), + [sym_declaration_command] = STATE(2636), + [sym_unset_command] = STATE(2636), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(3207), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_esac] = ACTIONS(7200), + [anon_sym_SEMI_SEMI] = ACTIONS(7208), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [3211] = { + [sym__concat] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3235), + [anon_sym_RPAREN] = ACTIONS(3235), + [sym_comment] = ACTIONS(56), + }, + [3212] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7210), + [sym_comment] = ACTIONS(56), + }, + [3213] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7212), + [sym_comment] = ACTIONS(56), + }, + [3214] = { + [anon_sym_RBRACE] = ACTIONS(7212), + [sym_comment] = ACTIONS(56), + }, + [3215] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3596), + [anon_sym_RBRACE] = ACTIONS(7214), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3216] = { + [sym__concat] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(3297), + [anon_sym_RPAREN] = ACTIONS(3297), + [sym_comment] = ACTIONS(56), + }, + [3217] = { + [sym_concatenation] = STATE(3599), + [sym_string] = STATE(3598), + [sym_simple_expansion] = STATE(3598), + [sym_string_expansion] = STATE(3598), + [sym_expansion] = STATE(3598), + [sym_command_substitution] = STATE(3598), + [sym_process_substitution] = STATE(3598), + [anon_sym_RBRACE] = ACTIONS(7212), + [sym__special_characters] = ACTIONS(7216), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(7218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7220), + }, + [3218] = { + [sym__concat] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(3342), + [anon_sym_RPAREN] = ACTIONS(3342), + [sym_comment] = ACTIONS(56), + }, + [3219] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7222), + }, + [3220] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7224), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3221] = { + [sym__concat] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3350), + [anon_sym_RPAREN] = ACTIONS(3350), + [sym_comment] = ACTIONS(56), + }, + [3222] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7226), + }, + [3223] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7228), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3224] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7230), + }, + [3225] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7212), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3226] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3606), + [anon_sym_RBRACE] = ACTIONS(7232), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3227] = { + [sym__concat] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(3362), + [anon_sym_RPAREN] = ACTIONS(3362), + [sym_comment] = ACTIONS(56), + }, + [3228] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3608), + [anon_sym_RBRACE] = ACTIONS(7234), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3229] = { + [sym__terminated_statement] = STATE(25), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(26), + [sym_variable_assignment] = STATE(28), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(3610), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_SEMI_SEMI] = ACTIONS(7236), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [3230] = { + [aux_sym_case_item_repeat1] = STATE(2640), + [anon_sym_PIPE] = ACTIONS(4262), + [anon_sym_RPAREN] = ACTIONS(7238), + [sym_comment] = ACTIONS(56), + }, + [3231] = { + [sym__terminated_statement] = STATE(25), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(26), + [sym_variable_assignment] = STATE(28), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(3613), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_SEMI_SEMI] = ACTIONS(7240), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [3232] = { + [aux_sym_case_item_repeat1] = STATE(2640), + [anon_sym_PIPE] = ACTIONS(4262), + [anon_sym_RPAREN] = ACTIONS(7242), + [sym_comment] = ACTIONS(56), + }, + [3233] = { + [anon_sym_PIPE] = ACTIONS(7244), + [anon_sym_RPAREN] = ACTIONS(7244), + [anon_sym_SEMI_SEMI] = ACTIONS(7244), + [anon_sym_PIPE_AMP] = ACTIONS(7244), + [anon_sym_AMP_AMP] = ACTIONS(7244), + [anon_sym_PIPE_PIPE] = ACTIONS(7244), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(7244), + [anon_sym_LF] = ACTIONS(7244), + [anon_sym_AMP] = ACTIONS(7244), + }, + [3234] = { + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_RPAREN] = ACTIONS(7246), + [anon_sym_SEMI_SEMI] = ACTIONS(7246), + [anon_sym_PIPE_AMP] = ACTIONS(7246), + [anon_sym_AMP_AMP] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7246), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(7246), + [anon_sym_LF] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + }, + [3235] = { + [sym__concat] = ACTIONS(6812), + [anon_sym_in] = ACTIONS(6814), + [anon_sym_SEMI_SEMI] = ACTIONS(6814), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6814), + [anon_sym_LF] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6814), + }, + [3236] = { + [sym__concat] = ACTIONS(6816), + [anon_sym_in] = ACTIONS(6818), + [anon_sym_SEMI_SEMI] = ACTIONS(6818), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6818), + [anon_sym_LF] = ACTIONS(6818), + [anon_sym_AMP] = ACTIONS(6818), + }, + [3237] = { + [sym__concat] = ACTIONS(6820), + [anon_sym_in] = ACTIONS(6822), + [anon_sym_SEMI_SEMI] = ACTIONS(6822), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6822), + [anon_sym_LF] = ACTIONS(6822), + [anon_sym_AMP] = ACTIONS(6822), + }, + [3238] = { + [sym__concat] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3237), + [anon_sym_SEMI_SEMI] = ACTIONS(3237), + [anon_sym_PIPE_AMP] = ACTIONS(3237), + [anon_sym_AMP_AMP] = ACTIONS(3237), + [anon_sym_PIPE_PIPE] = ACTIONS(3237), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_LF] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), + }, + [3239] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7248), + [sym_comment] = ACTIONS(56), + }, + [3240] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7250), + [sym_comment] = ACTIONS(56), + }, + [3241] = { + [anon_sym_RBRACE] = ACTIONS(7250), + [sym_comment] = ACTIONS(56), + }, + [3242] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3618), + [anon_sym_RBRACE] = ACTIONS(7252), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3243] = { + [sym__concat] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_SEMI_SEMI] = ACTIONS(3299), + [anon_sym_PIPE_AMP] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_LF] = ACTIONS(3299), + [anon_sym_AMP] = ACTIONS(3299), + }, + [3244] = { + [sym_concatenation] = STATE(3621), + [sym_string] = STATE(3620), + [sym_simple_expansion] = STATE(3620), + [sym_string_expansion] = STATE(3620), + [sym_expansion] = STATE(3620), + [sym_command_substitution] = STATE(3620), + [sym_process_substitution] = STATE(3620), + [anon_sym_RBRACE] = ACTIONS(7250), + [sym__special_characters] = ACTIONS(7254), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(7256), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7258), + }, + [3245] = { + [sym__concat] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(3344), + [anon_sym_SEMI_SEMI] = ACTIONS(3344), + [anon_sym_PIPE_AMP] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_LF] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3344), + }, + [3246] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7260), + }, + [3247] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7262), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3248] = { + [sym__concat] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3352), + [anon_sym_SEMI_SEMI] = ACTIONS(3352), + [anon_sym_PIPE_AMP] = ACTIONS(3352), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_PIPE_PIPE] = ACTIONS(3352), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3352), + [anon_sym_LF] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3352), + }, + [3249] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7264), + }, + [3250] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7266), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3251] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7268), + }, + [3252] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7250), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3253] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3628), + [anon_sym_RBRACE] = ACTIONS(7270), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3254] = { + [sym__concat] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(3364), + [anon_sym_SEMI_SEMI] = ACTIONS(3364), + [anon_sym_PIPE_AMP] = ACTIONS(3364), + [anon_sym_AMP_AMP] = ACTIONS(3364), + [anon_sym_PIPE_PIPE] = ACTIONS(3364), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_LF] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3364), + }, + [3255] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3630), + [anon_sym_RBRACE] = ACTIONS(7272), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3256] = { + [sym_file_descriptor] = ACTIONS(4728), + [sym__concat] = ACTIONS(4728), + [sym_variable_name] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4730), + [anon_sym_RPAREN] = ACTIONS(4730), + [anon_sym_SEMI_SEMI] = ACTIONS(4730), + [anon_sym_PIPE_AMP] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_GT] = ACTIONS(4730), + [anon_sym_GT_GT] = ACTIONS(4730), + [anon_sym_AMP_GT] = ACTIONS(4730), + [anon_sym_AMP_GT_GT] = ACTIONS(4730), + [anon_sym_LT_AMP] = ACTIONS(4730), + [anon_sym_GT_AMP] = ACTIONS(4730), + [sym__special_characters] = ACTIONS(4730), + [anon_sym_DQUOTE] = ACTIONS(4730), + [anon_sym_DOLLAR] = ACTIONS(4730), + [sym_raw_string] = ACTIONS(4730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), + [anon_sym_BQUOTE] = ACTIONS(4730), + [anon_sym_LT_LPAREN] = ACTIONS(4730), + [anon_sym_GT_LPAREN] = ACTIONS(4730), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_LF] = ACTIONS(4730), + [anon_sym_AMP] = ACTIONS(4730), + }, + [3257] = { + [sym_file_descriptor] = ACTIONS(4734), + [sym__concat] = ACTIONS(4734), + [sym_variable_name] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(4736), + [anon_sym_RPAREN] = ACTIONS(4736), + [anon_sym_SEMI_SEMI] = ACTIONS(4736), + [anon_sym_PIPE_AMP] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_GT_GT] = ACTIONS(4736), + [anon_sym_AMP_GT] = ACTIONS(4736), + [anon_sym_AMP_GT_GT] = ACTIONS(4736), + [anon_sym_LT_AMP] = ACTIONS(4736), + [anon_sym_GT_AMP] = ACTIONS(4736), + [sym__special_characters] = ACTIONS(4736), + [anon_sym_DQUOTE] = ACTIONS(4736), + [anon_sym_DOLLAR] = ACTIONS(4736), + [sym_raw_string] = ACTIONS(4736), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), + [anon_sym_BQUOTE] = ACTIONS(4736), + [anon_sym_LT_LPAREN] = ACTIONS(4736), + [anon_sym_GT_LPAREN] = ACTIONS(4736), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_LF] = ACTIONS(4736), + [anon_sym_AMP] = ACTIONS(4736), + }, + [3258] = { + [sym_file_descriptor] = ACTIONS(4797), + [sym__concat] = ACTIONS(4797), + [sym_variable_name] = ACTIONS(4797), + [anon_sym_PIPE] = ACTIONS(4799), + [anon_sym_RPAREN] = ACTIONS(4799), + [anon_sym_SEMI_SEMI] = ACTIONS(4799), + [anon_sym_PIPE_AMP] = ACTIONS(4799), + [anon_sym_AMP_AMP] = ACTIONS(4799), + [anon_sym_PIPE_PIPE] = ACTIONS(4799), + [anon_sym_LT] = ACTIONS(4799), + [anon_sym_GT] = ACTIONS(4799), + [anon_sym_GT_GT] = ACTIONS(4799), + [anon_sym_AMP_GT] = ACTIONS(4799), + [anon_sym_AMP_GT_GT] = ACTIONS(4799), + [anon_sym_LT_AMP] = ACTIONS(4799), + [anon_sym_GT_AMP] = ACTIONS(4799), + [sym__special_characters] = ACTIONS(4799), + [anon_sym_DQUOTE] = ACTIONS(4799), + [anon_sym_DOLLAR] = ACTIONS(4799), + [sym_raw_string] = ACTIONS(4799), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4799), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4799), + [anon_sym_BQUOTE] = ACTIONS(4799), + [anon_sym_LT_LPAREN] = ACTIONS(4799), + [anon_sym_GT_LPAREN] = ACTIONS(4799), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4799), + [anon_sym_SEMI] = ACTIONS(4799), + [anon_sym_LF] = ACTIONS(4799), + [anon_sym_AMP] = ACTIONS(4799), + }, + [3259] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7274), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3260] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7276), + [sym_comment] = ACTIONS(56), + }, + [3261] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7278), + [sym_comment] = ACTIONS(56), + }, + [3262] = { + [anon_sym_RBRACE] = ACTIONS(7278), + [sym_comment] = ACTIONS(56), + }, + [3263] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3635), + [anon_sym_RBRACE] = ACTIONS(7280), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3264] = { + [sym_file_descriptor] = ACTIONS(4809), + [sym__concat] = ACTIONS(4809), + [sym_variable_name] = ACTIONS(4809), + [anon_sym_PIPE] = ACTIONS(4811), + [anon_sym_RPAREN] = ACTIONS(4811), + [anon_sym_SEMI_SEMI] = ACTIONS(4811), + [anon_sym_PIPE_AMP] = ACTIONS(4811), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4811), + [anon_sym_GT] = ACTIONS(4811), + [anon_sym_GT_GT] = ACTIONS(4811), + [anon_sym_AMP_GT] = ACTIONS(4811), + [anon_sym_AMP_GT_GT] = ACTIONS(4811), + [anon_sym_LT_AMP] = ACTIONS(4811), + [anon_sym_GT_AMP] = ACTIONS(4811), + [sym__special_characters] = ACTIONS(4811), + [anon_sym_DQUOTE] = ACTIONS(4811), + [anon_sym_DOLLAR] = ACTIONS(4811), + [sym_raw_string] = ACTIONS(4811), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4811), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4811), + [anon_sym_BQUOTE] = ACTIONS(4811), + [anon_sym_LT_LPAREN] = ACTIONS(4811), + [anon_sym_GT_LPAREN] = ACTIONS(4811), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4811), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym_LF] = ACTIONS(4811), + [anon_sym_AMP] = ACTIONS(4811), + }, + [3265] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3637), + [anon_sym_RBRACE] = ACTIONS(7282), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3266] = { + [sym_file_descriptor] = ACTIONS(4815), + [sym__concat] = ACTIONS(4815), + [sym_variable_name] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(4817), + [anon_sym_RPAREN] = ACTIONS(4817), + [anon_sym_SEMI_SEMI] = ACTIONS(4817), + [anon_sym_PIPE_AMP] = ACTIONS(4817), + [anon_sym_AMP_AMP] = ACTIONS(4817), + [anon_sym_PIPE_PIPE] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4817), + [anon_sym_GT] = ACTIONS(4817), + [anon_sym_GT_GT] = ACTIONS(4817), + [anon_sym_AMP_GT] = ACTIONS(4817), + [anon_sym_AMP_GT_GT] = ACTIONS(4817), + [anon_sym_LT_AMP] = ACTIONS(4817), + [anon_sym_GT_AMP] = ACTIONS(4817), + [sym__special_characters] = ACTIONS(4817), + [anon_sym_DQUOTE] = ACTIONS(4817), + [anon_sym_DOLLAR] = ACTIONS(4817), + [sym_raw_string] = ACTIONS(4817), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4817), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4817), + [anon_sym_BQUOTE] = ACTIONS(4817), + [anon_sym_LT_LPAREN] = ACTIONS(4817), + [anon_sym_GT_LPAREN] = ACTIONS(4817), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4817), + [anon_sym_SEMI] = ACTIONS(4817), + [anon_sym_LF] = ACTIONS(4817), + [anon_sym_AMP] = ACTIONS(4817), + }, + [3267] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3639), + [anon_sym_RBRACE] = ACTIONS(7284), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3268] = { + [sym_file_descriptor] = ACTIONS(4821), + [sym__concat] = ACTIONS(4821), + [sym_variable_name] = ACTIONS(4821), + [anon_sym_PIPE] = ACTIONS(4823), + [anon_sym_RPAREN] = ACTIONS(4823), + [anon_sym_SEMI_SEMI] = ACTIONS(4823), + [anon_sym_PIPE_AMP] = ACTIONS(4823), + [anon_sym_AMP_AMP] = ACTIONS(4823), + [anon_sym_PIPE_PIPE] = ACTIONS(4823), + [anon_sym_LT] = ACTIONS(4823), + [anon_sym_GT] = ACTIONS(4823), + [anon_sym_GT_GT] = ACTIONS(4823), + [anon_sym_AMP_GT] = ACTIONS(4823), + [anon_sym_AMP_GT_GT] = ACTIONS(4823), + [anon_sym_LT_AMP] = ACTIONS(4823), + [anon_sym_GT_AMP] = ACTIONS(4823), + [sym__special_characters] = ACTIONS(4823), + [anon_sym_DQUOTE] = ACTIONS(4823), + [anon_sym_DOLLAR] = ACTIONS(4823), + [sym_raw_string] = ACTIONS(4823), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4823), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4823), + [anon_sym_BQUOTE] = ACTIONS(4823), + [anon_sym_LT_LPAREN] = ACTIONS(4823), + [anon_sym_GT_LPAREN] = ACTIONS(4823), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4823), + [anon_sym_SEMI] = ACTIONS(4823), + [anon_sym_LF] = ACTIONS(4823), + [anon_sym_AMP] = ACTIONS(4823), + }, + [3269] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7286), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3270] = { + [sym_file_descriptor] = ACTIONS(4827), + [sym__concat] = ACTIONS(4827), + [sym_variable_name] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_RPAREN] = ACTIONS(4829), + [anon_sym_SEMI_SEMI] = ACTIONS(4829), + [anon_sym_PIPE_AMP] = ACTIONS(4829), + [anon_sym_AMP_AMP] = ACTIONS(4829), + [anon_sym_PIPE_PIPE] = ACTIONS(4829), + [anon_sym_LT] = ACTIONS(4829), + [anon_sym_GT] = ACTIONS(4829), + [anon_sym_GT_GT] = ACTIONS(4829), + [anon_sym_AMP_GT] = ACTIONS(4829), + [anon_sym_AMP_GT_GT] = ACTIONS(4829), + [anon_sym_LT_AMP] = ACTIONS(4829), + [anon_sym_GT_AMP] = ACTIONS(4829), + [sym__special_characters] = ACTIONS(4829), + [anon_sym_DQUOTE] = ACTIONS(4829), + [anon_sym_DOLLAR] = ACTIONS(4829), + [sym_raw_string] = ACTIONS(4829), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4829), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4829), + [anon_sym_BQUOTE] = ACTIONS(4829), + [anon_sym_LT_LPAREN] = ACTIONS(4829), + [anon_sym_GT_LPAREN] = ACTIONS(4829), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4829), + [anon_sym_SEMI] = ACTIONS(4829), + [anon_sym_LF] = ACTIONS(4829), + [anon_sym_AMP] = ACTIONS(4829), + }, + [3271] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7288), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3272] = { + [sym__concat] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [anon_sym_PIPE_AMP] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1860), + [anon_sym_PIPE_PIPE] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + }, + [3273] = { + [aux_sym_concatenation_repeat1] = STATE(3273), + [sym__concat] = ACTIONS(7290), + [anon_sym_PIPE] = ACTIONS(1860), + [anon_sym_RPAREN] = ACTIONS(1860), + [anon_sym_SEMI_SEMI] = ACTIONS(1860), + [anon_sym_PIPE_AMP] = ACTIONS(1860), + [anon_sym_AMP_AMP] = ACTIONS(1860), + [anon_sym_PIPE_PIPE] = ACTIONS(1860), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1860), + [anon_sym_LF] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(1860), + }, + [3274] = { + [sym__concat] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1897), + [anon_sym_RPAREN] = ACTIONS(1897), + [anon_sym_SEMI_SEMI] = ACTIONS(1897), + [anon_sym_PIPE_AMP] = ACTIONS(1897), + [anon_sym_AMP_AMP] = ACTIONS(1897), + [anon_sym_PIPE_PIPE] = ACTIONS(1897), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_LF] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1897), + }, + [3275] = { + [sym_concatenation] = STATE(3645), + [sym_string] = STATE(3644), + [sym_simple_expansion] = STATE(3644), + [sym_string_expansion] = STATE(3644), + [sym_expansion] = STATE(3644), + [sym_command_substitution] = STATE(3644), + [sym_process_substitution] = STATE(3644), + [anon_sym_RBRACE] = ACTIONS(7293), + [sym__special_characters] = ACTIONS(7295), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(7297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7299), + }, + [3276] = { + [sym__concat] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_RPAREN] = ACTIONS(1942), + [anon_sym_SEMI_SEMI] = ACTIONS(1942), + [anon_sym_PIPE_AMP] = ACTIONS(1942), + [anon_sym_AMP_AMP] = ACTIONS(1942), + [anon_sym_PIPE_PIPE] = ACTIONS(1942), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_LF] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + }, + [3277] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7301), + }, + [3278] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7303), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3279] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(7305), + [sym_comment] = ACTIONS(56), + }, + [3280] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3651), + [anon_sym_RBRACE] = ACTIONS(7307), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(7309), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3281] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3654), + [anon_sym_RBRACE] = ACTIONS(7311), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(7313), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3282] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3656), + [anon_sym_RBRACE] = ACTIONS(7293), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(7315), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3283] = { + [sym__concat] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(1994), + [anon_sym_RPAREN] = ACTIONS(1994), + [anon_sym_SEMI_SEMI] = ACTIONS(1994), + [anon_sym_PIPE_AMP] = ACTIONS(1994), + [anon_sym_AMP_AMP] = ACTIONS(1994), + [anon_sym_PIPE_PIPE] = ACTIONS(1994), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_LF] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + }, + [3284] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7317), + }, + [3285] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7319), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3286] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_RPAREN] = ACTIONS(2002), + [anon_sym_SEMI_SEMI] = ACTIONS(2002), + [anon_sym_PIPE_AMP] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_PIPE_PIPE] = ACTIONS(2002), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_LF] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2002), + }, + [3287] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7321), + }, + [3288] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7293), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3289] = { + [sym__concat] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_RPAREN] = ACTIONS(2158), + [anon_sym_SEMI_SEMI] = ACTIONS(2158), + [anon_sym_PIPE_AMP] = ACTIONS(2158), + [anon_sym_AMP_AMP] = ACTIONS(2158), + [anon_sym_PIPE_PIPE] = ACTIONS(2158), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym_LF] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2158), + }, + [3290] = { + [sym__concat] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_RPAREN] = ACTIONS(2360), + [anon_sym_SEMI_SEMI] = ACTIONS(2360), + [anon_sym_PIPE_AMP] = ACTIONS(2360), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_LF] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + }, + [3291] = { + [sym__concat] = ACTIONS(5929), + [sym_variable_name] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(5931), + [anon_sym_RPAREN] = ACTIONS(5931), + [anon_sym_SEMI_SEMI] = ACTIONS(5931), + [anon_sym_PIPE_AMP] = ACTIONS(5931), + [anon_sym_AMP_AMP] = ACTIONS(5931), + [anon_sym_PIPE_PIPE] = ACTIONS(5931), + [sym__special_characters] = ACTIONS(5931), + [anon_sym_DQUOTE] = ACTIONS(5931), + [anon_sym_DOLLAR] = ACTIONS(5931), + [sym_raw_string] = ACTIONS(5931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5931), + [anon_sym_BQUOTE] = ACTIONS(5931), + [anon_sym_LT_LPAREN] = ACTIONS(5931), + [anon_sym_GT_LPAREN] = ACTIONS(5931), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5931), + [sym_word] = ACTIONS(5931), + [anon_sym_SEMI] = ACTIONS(5931), + [anon_sym_LF] = ACTIONS(5931), + [anon_sym_AMP] = ACTIONS(5931), + }, + [3292] = { + [sym__concat] = ACTIONS(5933), + [sym_variable_name] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(5935), + [anon_sym_RPAREN] = ACTIONS(5935), + [anon_sym_SEMI_SEMI] = ACTIONS(5935), + [anon_sym_PIPE_AMP] = ACTIONS(5935), + [anon_sym_AMP_AMP] = ACTIONS(5935), + [anon_sym_PIPE_PIPE] = ACTIONS(5935), + [sym__special_characters] = ACTIONS(5935), + [anon_sym_DQUOTE] = ACTIONS(5935), + [anon_sym_DOLLAR] = ACTIONS(5935), + [sym_raw_string] = ACTIONS(5935), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5935), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5935), + [anon_sym_BQUOTE] = ACTIONS(5935), + [anon_sym_LT_LPAREN] = ACTIONS(5935), + [anon_sym_GT_LPAREN] = ACTIONS(5935), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5935), + [sym_word] = ACTIONS(5935), + [anon_sym_SEMI] = ACTIONS(5935), + [anon_sym_LF] = ACTIONS(5935), + [anon_sym_AMP] = ACTIONS(5935), + }, + [3293] = { + [sym__concat] = ACTIONS(5937), + [sym_variable_name] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(5939), + [anon_sym_RPAREN] = ACTIONS(5939), + [anon_sym_SEMI_SEMI] = ACTIONS(5939), + [anon_sym_PIPE_AMP] = ACTIONS(5939), + [anon_sym_AMP_AMP] = ACTIONS(5939), + [anon_sym_PIPE_PIPE] = ACTIONS(5939), + [sym__special_characters] = ACTIONS(5939), + [anon_sym_DQUOTE] = ACTIONS(5939), + [anon_sym_DOLLAR] = ACTIONS(5939), + [sym_raw_string] = ACTIONS(5939), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5939), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5939), + [anon_sym_BQUOTE] = ACTIONS(5939), + [anon_sym_LT_LPAREN] = ACTIONS(5939), + [anon_sym_GT_LPAREN] = ACTIONS(5939), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5939), + [sym_word] = ACTIONS(5939), + [anon_sym_SEMI] = ACTIONS(5939), + [anon_sym_LF] = ACTIONS(5939), + [anon_sym_AMP] = ACTIONS(5939), + }, + [3294] = { + [sym__concat] = ACTIONS(5941), + [sym_variable_name] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(5943), + [anon_sym_RPAREN] = ACTIONS(5943), + [anon_sym_SEMI_SEMI] = ACTIONS(5943), + [anon_sym_PIPE_AMP] = ACTIONS(5943), + [anon_sym_AMP_AMP] = ACTIONS(5943), + [anon_sym_PIPE_PIPE] = ACTIONS(5943), + [sym__special_characters] = ACTIONS(5943), + [anon_sym_DQUOTE] = ACTIONS(5943), + [anon_sym_DOLLAR] = ACTIONS(5943), + [sym_raw_string] = ACTIONS(5943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5943), + [anon_sym_BQUOTE] = ACTIONS(5943), + [anon_sym_LT_LPAREN] = ACTIONS(5943), + [anon_sym_GT_LPAREN] = ACTIONS(5943), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5943), + [sym_word] = ACTIONS(5943), + [anon_sym_SEMI] = ACTIONS(5943), + [anon_sym_LF] = ACTIONS(5943), + [anon_sym_AMP] = ACTIONS(5943), + }, + [3295] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7323), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3296] = { + [sym__concat] = ACTIONS(5947), + [sym_variable_name] = ACTIONS(5947), + [anon_sym_PIPE] = ACTIONS(5949), + [anon_sym_RPAREN] = ACTIONS(5949), + [anon_sym_SEMI_SEMI] = ACTIONS(5949), + [anon_sym_PIPE_AMP] = ACTIONS(5949), + [anon_sym_AMP_AMP] = ACTIONS(5949), + [anon_sym_PIPE_PIPE] = ACTIONS(5949), + [sym__special_characters] = ACTIONS(5949), + [anon_sym_DQUOTE] = ACTIONS(5949), + [anon_sym_DOLLAR] = ACTIONS(5949), + [sym_raw_string] = ACTIONS(5949), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5949), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5949), + [anon_sym_BQUOTE] = ACTIONS(5949), + [anon_sym_LT_LPAREN] = ACTIONS(5949), + [anon_sym_GT_LPAREN] = ACTIONS(5949), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5949), + [sym_word] = ACTIONS(5949), + [anon_sym_SEMI] = ACTIONS(5949), + [anon_sym_LF] = ACTIONS(5949), + [anon_sym_AMP] = ACTIONS(5949), + }, + [3297] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7325), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3298] = { + [sym__concat] = ACTIONS(5953), + [sym_variable_name] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(5955), + [anon_sym_RPAREN] = ACTIONS(5955), + [anon_sym_SEMI_SEMI] = ACTIONS(5955), + [anon_sym_PIPE_AMP] = ACTIONS(5955), + [anon_sym_AMP_AMP] = ACTIONS(5955), + [anon_sym_PIPE_PIPE] = ACTIONS(5955), + [sym__special_characters] = ACTIONS(5955), + [anon_sym_DQUOTE] = ACTIONS(5955), + [anon_sym_DOLLAR] = ACTIONS(5955), + [sym_raw_string] = ACTIONS(5955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5955), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5955), + [anon_sym_BQUOTE] = ACTIONS(5955), + [anon_sym_LT_LPAREN] = ACTIONS(5955), + [anon_sym_GT_LPAREN] = ACTIONS(5955), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5955), + [sym_word] = ACTIONS(5955), + [anon_sym_SEMI] = ACTIONS(5955), + [anon_sym_LF] = ACTIONS(5955), + [anon_sym_AMP] = ACTIONS(5955), + }, + [3299] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7327), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3300] = { + [sym__concat] = ACTIONS(5959), + [sym_variable_name] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_RPAREN] = ACTIONS(5961), + [anon_sym_SEMI_SEMI] = ACTIONS(5961), + [anon_sym_PIPE_AMP] = ACTIONS(5961), + [anon_sym_AMP_AMP] = ACTIONS(5961), + [anon_sym_PIPE_PIPE] = ACTIONS(5961), + [sym__special_characters] = ACTIONS(5961), + [anon_sym_DQUOTE] = ACTIONS(5961), + [anon_sym_DOLLAR] = ACTIONS(5961), + [sym_raw_string] = ACTIONS(5961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5961), + [anon_sym_BQUOTE] = ACTIONS(5961), + [anon_sym_LT_LPAREN] = ACTIONS(5961), + [anon_sym_GT_LPAREN] = ACTIONS(5961), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5961), + [sym_word] = ACTIONS(5961), + [anon_sym_SEMI] = ACTIONS(5961), + [anon_sym_LF] = ACTIONS(5961), + [anon_sym_AMP] = ACTIONS(5961), + }, + [3301] = { + [sym__concat] = ACTIONS(5963), + [sym_variable_name] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(5965), + [anon_sym_RPAREN] = ACTIONS(5965), + [anon_sym_SEMI_SEMI] = ACTIONS(5965), + [anon_sym_PIPE_AMP] = ACTIONS(5965), + [anon_sym_AMP_AMP] = ACTIONS(5965), + [anon_sym_PIPE_PIPE] = ACTIONS(5965), + [sym__special_characters] = ACTIONS(5965), + [anon_sym_DQUOTE] = ACTIONS(5965), + [anon_sym_DOLLAR] = ACTIONS(5965), + [sym_raw_string] = ACTIONS(5965), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5965), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5965), + [anon_sym_BQUOTE] = ACTIONS(5965), + [anon_sym_LT_LPAREN] = ACTIONS(5965), + [anon_sym_GT_LPAREN] = ACTIONS(5965), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5965), + [sym_word] = ACTIONS(5965), + [anon_sym_SEMI] = ACTIONS(5965), + [anon_sym_LF] = ACTIONS(5965), + [anon_sym_AMP] = ACTIONS(5965), + }, + [3302] = { + [sym__concat] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(5931), + [anon_sym_RPAREN] = ACTIONS(5931), + [anon_sym_SEMI_SEMI] = ACTIONS(5931), + [anon_sym_PIPE_AMP] = ACTIONS(5931), + [anon_sym_AMP_AMP] = ACTIONS(5931), + [anon_sym_PIPE_PIPE] = ACTIONS(5931), + [sym__special_characters] = ACTIONS(5931), + [anon_sym_DQUOTE] = ACTIONS(5931), + [anon_sym_DOLLAR] = ACTIONS(5931), + [sym_raw_string] = ACTIONS(5931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5931), + [anon_sym_BQUOTE] = ACTIONS(5931), + [anon_sym_LT_LPAREN] = ACTIONS(5931), + [anon_sym_GT_LPAREN] = ACTIONS(5931), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5931), + [sym_word] = ACTIONS(5931), + [anon_sym_SEMI] = ACTIONS(5931), + [anon_sym_LF] = ACTIONS(5931), + [anon_sym_AMP] = ACTIONS(5931), + }, + [3303] = { + [sym__concat] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(5935), + [anon_sym_RPAREN] = ACTIONS(5935), + [anon_sym_SEMI_SEMI] = ACTIONS(5935), + [anon_sym_PIPE_AMP] = ACTIONS(5935), + [anon_sym_AMP_AMP] = ACTIONS(5935), + [anon_sym_PIPE_PIPE] = ACTIONS(5935), + [sym__special_characters] = ACTIONS(5935), + [anon_sym_DQUOTE] = ACTIONS(5935), + [anon_sym_DOLLAR] = ACTIONS(5935), + [sym_raw_string] = ACTIONS(5935), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5935), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5935), + [anon_sym_BQUOTE] = ACTIONS(5935), + [anon_sym_LT_LPAREN] = ACTIONS(5935), + [anon_sym_GT_LPAREN] = ACTIONS(5935), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5935), + [sym_word] = ACTIONS(5935), + [anon_sym_SEMI] = ACTIONS(5935), + [anon_sym_LF] = ACTIONS(5935), + [anon_sym_AMP] = ACTIONS(5935), + }, + [3304] = { + [sym__concat] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(5939), + [anon_sym_RPAREN] = ACTIONS(5939), + [anon_sym_SEMI_SEMI] = ACTIONS(5939), + [anon_sym_PIPE_AMP] = ACTIONS(5939), + [anon_sym_AMP_AMP] = ACTIONS(5939), + [anon_sym_PIPE_PIPE] = ACTIONS(5939), + [sym__special_characters] = ACTIONS(5939), + [anon_sym_DQUOTE] = ACTIONS(5939), + [anon_sym_DOLLAR] = ACTIONS(5939), + [sym_raw_string] = ACTIONS(5939), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5939), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5939), + [anon_sym_BQUOTE] = ACTIONS(5939), + [anon_sym_LT_LPAREN] = ACTIONS(5939), + [anon_sym_GT_LPAREN] = ACTIONS(5939), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5939), + [sym_word] = ACTIONS(5939), + [anon_sym_SEMI] = ACTIONS(5939), + [anon_sym_LF] = ACTIONS(5939), + [anon_sym_AMP] = ACTIONS(5939), + }, + [3305] = { + [sym__concat] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(5943), + [anon_sym_RPAREN] = ACTIONS(5943), + [anon_sym_SEMI_SEMI] = ACTIONS(5943), + [anon_sym_PIPE_AMP] = ACTIONS(5943), + [anon_sym_AMP_AMP] = ACTIONS(5943), + [anon_sym_PIPE_PIPE] = ACTIONS(5943), + [sym__special_characters] = ACTIONS(5943), + [anon_sym_DQUOTE] = ACTIONS(5943), + [anon_sym_DOLLAR] = ACTIONS(5943), + [sym_raw_string] = ACTIONS(5943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5943), + [anon_sym_BQUOTE] = ACTIONS(5943), + [anon_sym_LT_LPAREN] = ACTIONS(5943), + [anon_sym_GT_LPAREN] = ACTIONS(5943), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5943), + [sym_word] = ACTIONS(5943), + [anon_sym_SEMI] = ACTIONS(5943), + [anon_sym_LF] = ACTIONS(5943), + [anon_sym_AMP] = ACTIONS(5943), + }, + [3306] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7329), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3307] = { + [sym__concat] = ACTIONS(5947), + [anon_sym_PIPE] = ACTIONS(5949), + [anon_sym_RPAREN] = ACTIONS(5949), + [anon_sym_SEMI_SEMI] = ACTIONS(5949), + [anon_sym_PIPE_AMP] = ACTIONS(5949), + [anon_sym_AMP_AMP] = ACTIONS(5949), + [anon_sym_PIPE_PIPE] = ACTIONS(5949), + [sym__special_characters] = ACTIONS(5949), + [anon_sym_DQUOTE] = ACTIONS(5949), + [anon_sym_DOLLAR] = ACTIONS(5949), + [sym_raw_string] = ACTIONS(5949), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5949), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5949), + [anon_sym_BQUOTE] = ACTIONS(5949), + [anon_sym_LT_LPAREN] = ACTIONS(5949), + [anon_sym_GT_LPAREN] = ACTIONS(5949), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5949), + [sym_word] = ACTIONS(5949), + [anon_sym_SEMI] = ACTIONS(5949), + [anon_sym_LF] = ACTIONS(5949), + [anon_sym_AMP] = ACTIONS(5949), + }, + [3308] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7331), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3309] = { + [sym__concat] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(5955), + [anon_sym_RPAREN] = ACTIONS(5955), + [anon_sym_SEMI_SEMI] = ACTIONS(5955), + [anon_sym_PIPE_AMP] = ACTIONS(5955), + [anon_sym_AMP_AMP] = ACTIONS(5955), + [anon_sym_PIPE_PIPE] = ACTIONS(5955), + [sym__special_characters] = ACTIONS(5955), + [anon_sym_DQUOTE] = ACTIONS(5955), + [anon_sym_DOLLAR] = ACTIONS(5955), + [sym_raw_string] = ACTIONS(5955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5955), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5955), + [anon_sym_BQUOTE] = ACTIONS(5955), + [anon_sym_LT_LPAREN] = ACTIONS(5955), + [anon_sym_GT_LPAREN] = ACTIONS(5955), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5955), + [sym_word] = ACTIONS(5955), + [anon_sym_SEMI] = ACTIONS(5955), + [anon_sym_LF] = ACTIONS(5955), + [anon_sym_AMP] = ACTIONS(5955), + }, + [3310] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7333), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3311] = { + [sym__concat] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_RPAREN] = ACTIONS(5961), + [anon_sym_SEMI_SEMI] = ACTIONS(5961), + [anon_sym_PIPE_AMP] = ACTIONS(5961), + [anon_sym_AMP_AMP] = ACTIONS(5961), + [anon_sym_PIPE_PIPE] = ACTIONS(5961), + [sym__special_characters] = ACTIONS(5961), + [anon_sym_DQUOTE] = ACTIONS(5961), + [anon_sym_DOLLAR] = ACTIONS(5961), + [sym_raw_string] = ACTIONS(5961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5961), + [anon_sym_BQUOTE] = ACTIONS(5961), + [anon_sym_LT_LPAREN] = ACTIONS(5961), + [anon_sym_GT_LPAREN] = ACTIONS(5961), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5961), + [sym_word] = ACTIONS(5961), + [anon_sym_SEMI] = ACTIONS(5961), + [anon_sym_LF] = ACTIONS(5961), + [anon_sym_AMP] = ACTIONS(5961), + }, + [3312] = { + [sym__concat] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(5965), + [anon_sym_RPAREN] = ACTIONS(5965), + [anon_sym_SEMI_SEMI] = ACTIONS(5965), + [anon_sym_PIPE_AMP] = ACTIONS(5965), + [anon_sym_AMP_AMP] = ACTIONS(5965), + [anon_sym_PIPE_PIPE] = ACTIONS(5965), + [sym__special_characters] = ACTIONS(5965), + [anon_sym_DQUOTE] = ACTIONS(5965), + [anon_sym_DOLLAR] = ACTIONS(5965), + [sym_raw_string] = ACTIONS(5965), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5965), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5965), + [anon_sym_BQUOTE] = ACTIONS(5965), + [anon_sym_LT_LPAREN] = ACTIONS(5965), + [anon_sym_GT_LPAREN] = ACTIONS(5965), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5965), + [sym_word] = ACTIONS(5965), + [anon_sym_SEMI] = ACTIONS(5965), + [anon_sym_LF] = ACTIONS(5965), + [anon_sym_AMP] = ACTIONS(5965), + }, + [3313] = { + [sym_file_descriptor] = ACTIONS(6812), + [sym__concat] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_RPAREN] = ACTIONS(6814), + [anon_sym_SEMI_SEMI] = ACTIONS(6814), + [anon_sym_PIPE_AMP] = ACTIONS(6814), + [anon_sym_AMP_AMP] = ACTIONS(6814), + [anon_sym_PIPE_PIPE] = ACTIONS(6814), + [anon_sym_EQ_TILDE] = ACTIONS(6814), + [anon_sym_LT] = ACTIONS(6814), + [anon_sym_GT] = ACTIONS(6814), + [anon_sym_GT_GT] = ACTIONS(6814), + [anon_sym_AMP_GT] = ACTIONS(6814), + [anon_sym_AMP_GT_GT] = ACTIONS(6814), + [anon_sym_LT_AMP] = ACTIONS(6814), + [anon_sym_GT_AMP] = ACTIONS(6814), + [anon_sym_LT_LT] = ACTIONS(6814), + [anon_sym_LT_LT_DASH] = ACTIONS(6814), + [anon_sym_LT_LT_LT] = ACTIONS(6814), + [sym__special_characters] = ACTIONS(6814), + [anon_sym_DQUOTE] = ACTIONS(6814), + [anon_sym_DOLLAR] = ACTIONS(6814), + [sym_raw_string] = ACTIONS(6814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6814), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6814), + [anon_sym_BQUOTE] = ACTIONS(6814), + [anon_sym_LT_LPAREN] = ACTIONS(6814), + [anon_sym_GT_LPAREN] = ACTIONS(6814), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6814), + [anon_sym_SEMI] = ACTIONS(6814), + [anon_sym_LF] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6814), + }, + [3314] = { + [sym_file_descriptor] = ACTIONS(6816), + [sym__concat] = ACTIONS(6816), + [anon_sym_PIPE] = ACTIONS(6818), + [anon_sym_RPAREN] = ACTIONS(6818), + [anon_sym_SEMI_SEMI] = ACTIONS(6818), + [anon_sym_PIPE_AMP] = ACTIONS(6818), + [anon_sym_AMP_AMP] = ACTIONS(6818), + [anon_sym_PIPE_PIPE] = ACTIONS(6818), + [anon_sym_EQ_TILDE] = ACTIONS(6818), + [anon_sym_LT] = ACTIONS(6818), + [anon_sym_GT] = ACTIONS(6818), + [anon_sym_GT_GT] = ACTIONS(6818), + [anon_sym_AMP_GT] = ACTIONS(6818), + [anon_sym_AMP_GT_GT] = ACTIONS(6818), + [anon_sym_LT_AMP] = ACTIONS(6818), + [anon_sym_GT_AMP] = ACTIONS(6818), + [anon_sym_LT_LT] = ACTIONS(6818), + [anon_sym_LT_LT_DASH] = ACTIONS(6818), + [anon_sym_LT_LT_LT] = ACTIONS(6818), + [sym__special_characters] = ACTIONS(6818), + [anon_sym_DQUOTE] = ACTIONS(6818), + [anon_sym_DOLLAR] = ACTIONS(6818), + [sym_raw_string] = ACTIONS(6818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6818), + [anon_sym_BQUOTE] = ACTIONS(6818), + [anon_sym_LT_LPAREN] = ACTIONS(6818), + [anon_sym_GT_LPAREN] = ACTIONS(6818), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6818), + [anon_sym_SEMI] = ACTIONS(6818), + [anon_sym_LF] = ACTIONS(6818), + [anon_sym_AMP] = ACTIONS(6818), + }, + [3315] = { + [sym_file_descriptor] = ACTIONS(6820), + [sym__concat] = ACTIONS(6820), + [anon_sym_PIPE] = ACTIONS(6822), + [anon_sym_RPAREN] = ACTIONS(6822), + [anon_sym_SEMI_SEMI] = ACTIONS(6822), + [anon_sym_PIPE_AMP] = ACTIONS(6822), + [anon_sym_AMP_AMP] = ACTIONS(6822), + [anon_sym_PIPE_PIPE] = ACTIONS(6822), + [anon_sym_EQ_TILDE] = ACTIONS(6822), + [anon_sym_LT] = ACTIONS(6822), + [anon_sym_GT] = ACTIONS(6822), + [anon_sym_GT_GT] = ACTIONS(6822), + [anon_sym_AMP_GT] = ACTIONS(6822), + [anon_sym_AMP_GT_GT] = ACTIONS(6822), + [anon_sym_LT_AMP] = ACTIONS(6822), + [anon_sym_GT_AMP] = ACTIONS(6822), + [anon_sym_LT_LT] = ACTIONS(6822), + [anon_sym_LT_LT_DASH] = ACTIONS(6822), + [anon_sym_LT_LT_LT] = ACTIONS(6822), + [sym__special_characters] = ACTIONS(6822), + [anon_sym_DQUOTE] = ACTIONS(6822), + [anon_sym_DOLLAR] = ACTIONS(6822), + [sym_raw_string] = ACTIONS(6822), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6822), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6822), + [anon_sym_BQUOTE] = ACTIONS(6822), + [anon_sym_LT_LPAREN] = ACTIONS(6822), + [anon_sym_GT_LPAREN] = ACTIONS(6822), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6822), + [anon_sym_SEMI] = ACTIONS(6822), + [anon_sym_LF] = ACTIONS(6822), + [anon_sym_AMP] = ACTIONS(6822), + }, + [3316] = { + [sym_file_descriptor] = ACTIONS(4728), + [sym__concat] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4730), + [anon_sym_RPAREN] = ACTIONS(4730), + [anon_sym_SEMI_SEMI] = ACTIONS(4730), + [anon_sym_PIPE_AMP] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_GT] = ACTIONS(4730), + [anon_sym_GT_GT] = ACTIONS(4730), + [anon_sym_AMP_GT] = ACTIONS(4730), + [anon_sym_AMP_GT_GT] = ACTIONS(4730), + [anon_sym_LT_AMP] = ACTIONS(4730), + [anon_sym_GT_AMP] = ACTIONS(4730), + [anon_sym_LT_LT] = ACTIONS(4730), + [anon_sym_LT_LT_DASH] = ACTIONS(4730), + [anon_sym_LT_LT_LT] = ACTIONS(4730), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_LF] = ACTIONS(4730), + [anon_sym_AMP] = ACTIONS(4730), + }, + [3317] = { + [sym_file_descriptor] = ACTIONS(4734), + [sym__concat] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(4736), + [anon_sym_RPAREN] = ACTIONS(4736), + [anon_sym_SEMI_SEMI] = ACTIONS(4736), + [anon_sym_PIPE_AMP] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_GT_GT] = ACTIONS(4736), + [anon_sym_AMP_GT] = ACTIONS(4736), + [anon_sym_AMP_GT_GT] = ACTIONS(4736), + [anon_sym_LT_AMP] = ACTIONS(4736), + [anon_sym_GT_AMP] = ACTIONS(4736), + [anon_sym_LT_LT] = ACTIONS(4736), + [anon_sym_LT_LT_DASH] = ACTIONS(4736), + [anon_sym_LT_LT_LT] = ACTIONS(4736), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_LF] = ACTIONS(4736), + [anon_sym_AMP] = ACTIONS(4736), + }, + [3318] = { + [sym_file_descriptor] = ACTIONS(4797), + [sym__concat] = ACTIONS(4797), + [anon_sym_PIPE] = ACTIONS(4799), + [anon_sym_RPAREN] = ACTIONS(4799), + [anon_sym_SEMI_SEMI] = ACTIONS(4799), + [anon_sym_PIPE_AMP] = ACTIONS(4799), + [anon_sym_AMP_AMP] = ACTIONS(4799), + [anon_sym_PIPE_PIPE] = ACTIONS(4799), + [anon_sym_LT] = ACTIONS(4799), + [anon_sym_GT] = ACTIONS(4799), + [anon_sym_GT_GT] = ACTIONS(4799), + [anon_sym_AMP_GT] = ACTIONS(4799), + [anon_sym_AMP_GT_GT] = ACTIONS(4799), + [anon_sym_LT_AMP] = ACTIONS(4799), + [anon_sym_GT_AMP] = ACTIONS(4799), + [anon_sym_LT_LT] = ACTIONS(4799), + [anon_sym_LT_LT_DASH] = ACTIONS(4799), + [anon_sym_LT_LT_LT] = ACTIONS(4799), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4799), + [anon_sym_LF] = ACTIONS(4799), + [anon_sym_AMP] = ACTIONS(4799), + }, + [3319] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7335), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3320] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7337), + [sym_comment] = ACTIONS(56), + }, + [3321] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7339), + [sym_comment] = ACTIONS(56), + }, + [3322] = { + [anon_sym_RBRACE] = ACTIONS(7339), + [sym_comment] = ACTIONS(56), + }, + [3323] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3670), + [anon_sym_RBRACE] = ACTIONS(7341), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3324] = { + [sym_file_descriptor] = ACTIONS(4809), + [sym__concat] = ACTIONS(4809), + [anon_sym_PIPE] = ACTIONS(4811), + [anon_sym_RPAREN] = ACTIONS(4811), + [anon_sym_SEMI_SEMI] = ACTIONS(4811), + [anon_sym_PIPE_AMP] = ACTIONS(4811), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [anon_sym_LT] = ACTIONS(4811), + [anon_sym_GT] = ACTIONS(4811), + [anon_sym_GT_GT] = ACTIONS(4811), + [anon_sym_AMP_GT] = ACTIONS(4811), + [anon_sym_AMP_GT_GT] = ACTIONS(4811), + [anon_sym_LT_AMP] = ACTIONS(4811), + [anon_sym_GT_AMP] = ACTIONS(4811), + [anon_sym_LT_LT] = ACTIONS(4811), + [anon_sym_LT_LT_DASH] = ACTIONS(4811), + [anon_sym_LT_LT_LT] = ACTIONS(4811), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym_LF] = ACTIONS(4811), + [anon_sym_AMP] = ACTIONS(4811), + }, + [3325] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3672), + [anon_sym_RBRACE] = ACTIONS(7343), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3326] = { + [sym_file_descriptor] = ACTIONS(4815), + [sym__concat] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(4817), + [anon_sym_RPAREN] = ACTIONS(4817), + [anon_sym_SEMI_SEMI] = ACTIONS(4817), + [anon_sym_PIPE_AMP] = ACTIONS(4817), + [anon_sym_AMP_AMP] = ACTIONS(4817), + [anon_sym_PIPE_PIPE] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4817), + [anon_sym_GT] = ACTIONS(4817), + [anon_sym_GT_GT] = ACTIONS(4817), + [anon_sym_AMP_GT] = ACTIONS(4817), + [anon_sym_AMP_GT_GT] = ACTIONS(4817), + [anon_sym_LT_AMP] = ACTIONS(4817), + [anon_sym_GT_AMP] = ACTIONS(4817), + [anon_sym_LT_LT] = ACTIONS(4817), + [anon_sym_LT_LT_DASH] = ACTIONS(4817), + [anon_sym_LT_LT_LT] = ACTIONS(4817), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4817), + [anon_sym_LF] = ACTIONS(4817), + [anon_sym_AMP] = ACTIONS(4817), + }, + [3327] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3674), + [anon_sym_RBRACE] = ACTIONS(7345), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3328] = { + [sym_file_descriptor] = ACTIONS(4821), + [sym__concat] = ACTIONS(4821), + [anon_sym_PIPE] = ACTIONS(4823), + [anon_sym_RPAREN] = ACTIONS(4823), + [anon_sym_SEMI_SEMI] = ACTIONS(4823), + [anon_sym_PIPE_AMP] = ACTIONS(4823), + [anon_sym_AMP_AMP] = ACTIONS(4823), + [anon_sym_PIPE_PIPE] = ACTIONS(4823), + [anon_sym_LT] = ACTIONS(4823), + [anon_sym_GT] = ACTIONS(4823), + [anon_sym_GT_GT] = ACTIONS(4823), + [anon_sym_AMP_GT] = ACTIONS(4823), + [anon_sym_AMP_GT_GT] = ACTIONS(4823), + [anon_sym_LT_AMP] = ACTIONS(4823), + [anon_sym_GT_AMP] = ACTIONS(4823), + [anon_sym_LT_LT] = ACTIONS(4823), + [anon_sym_LT_LT_DASH] = ACTIONS(4823), + [anon_sym_LT_LT_LT] = ACTIONS(4823), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4823), + [anon_sym_LF] = ACTIONS(4823), + [anon_sym_AMP] = ACTIONS(4823), + }, + [3329] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7347), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3330] = { + [sym_file_descriptor] = ACTIONS(4827), + [sym__concat] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_RPAREN] = ACTIONS(4829), + [anon_sym_SEMI_SEMI] = ACTIONS(4829), + [anon_sym_PIPE_AMP] = ACTIONS(4829), + [anon_sym_AMP_AMP] = ACTIONS(4829), + [anon_sym_PIPE_PIPE] = ACTIONS(4829), + [anon_sym_LT] = ACTIONS(4829), + [anon_sym_GT] = ACTIONS(4829), + [anon_sym_GT_GT] = ACTIONS(4829), + [anon_sym_AMP_GT] = ACTIONS(4829), + [anon_sym_AMP_GT_GT] = ACTIONS(4829), + [anon_sym_LT_AMP] = ACTIONS(4829), + [anon_sym_GT_AMP] = ACTIONS(4829), + [anon_sym_LT_LT] = ACTIONS(4829), + [anon_sym_LT_LT_DASH] = ACTIONS(4829), + [anon_sym_LT_LT_LT] = ACTIONS(4829), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4829), + [anon_sym_LF] = ACTIONS(4829), + [anon_sym_AMP] = ACTIONS(4829), + }, + [3331] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7349), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3332] = { + [sym__concat] = ACTIONS(6812), + [anon_sym_EQ_TILDE] = ACTIONS(7351), + [anon_sym_RBRACK] = ACTIONS(6812), + [sym__special_characters] = ACTIONS(6814), + [anon_sym_DQUOTE] = ACTIONS(6812), + [anon_sym_DOLLAR] = ACTIONS(7351), + [sym_raw_string] = ACTIONS(6812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6812), + [anon_sym_BQUOTE] = ACTIONS(6812), + [anon_sym_LT_LPAREN] = ACTIONS(6812), + [anon_sym_GT_LPAREN] = ACTIONS(6812), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6814), + }, + [3333] = { + [sym__concat] = ACTIONS(6816), + [anon_sym_EQ_TILDE] = ACTIONS(7353), + [anon_sym_RBRACK] = ACTIONS(6816), + [sym__special_characters] = ACTIONS(6818), + [anon_sym_DQUOTE] = ACTIONS(6816), + [anon_sym_DOLLAR] = ACTIONS(7353), + [sym_raw_string] = ACTIONS(6816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6816), + [anon_sym_BQUOTE] = ACTIONS(6816), + [anon_sym_LT_LPAREN] = ACTIONS(6816), + [anon_sym_GT_LPAREN] = ACTIONS(6816), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6818), + }, + [3334] = { + [sym__concat] = ACTIONS(6820), + [anon_sym_EQ_TILDE] = ACTIONS(7355), + [anon_sym_RBRACK] = ACTIONS(6820), + [sym__special_characters] = ACTIONS(6822), + [anon_sym_DQUOTE] = ACTIONS(6820), + [anon_sym_DOLLAR] = ACTIONS(7355), + [sym_raw_string] = ACTIONS(6820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6820), + [anon_sym_BQUOTE] = ACTIONS(6820), + [anon_sym_LT_LPAREN] = ACTIONS(6820), + [anon_sym_GT_LPAREN] = ACTIONS(6820), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6822), + }, + [3335] = { + [sym__concat] = ACTIONS(6812), + [anon_sym_EQ_TILDE] = ACTIONS(7351), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6812), + [sym__special_characters] = ACTIONS(6814), + [anon_sym_DQUOTE] = ACTIONS(6812), + [anon_sym_DOLLAR] = ACTIONS(7351), + [sym_raw_string] = ACTIONS(6812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6812), + [anon_sym_BQUOTE] = ACTIONS(6812), + [anon_sym_LT_LPAREN] = ACTIONS(6812), + [anon_sym_GT_LPAREN] = ACTIONS(6812), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6814), + }, + [3336] = { + [sym__concat] = ACTIONS(6816), + [anon_sym_EQ_TILDE] = ACTIONS(7353), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6816), + [sym__special_characters] = ACTIONS(6818), + [anon_sym_DQUOTE] = ACTIONS(6816), + [anon_sym_DOLLAR] = ACTIONS(7353), + [sym_raw_string] = ACTIONS(6816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6816), + [anon_sym_BQUOTE] = ACTIONS(6816), + [anon_sym_LT_LPAREN] = ACTIONS(6816), + [anon_sym_GT_LPAREN] = ACTIONS(6816), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6818), + }, + [3337] = { + [sym__concat] = ACTIONS(6820), + [anon_sym_EQ_TILDE] = ACTIONS(7355), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6820), + [sym__special_characters] = ACTIONS(6822), + [anon_sym_DQUOTE] = ACTIONS(6820), + [anon_sym_DOLLAR] = ACTIONS(7355), + [sym_raw_string] = ACTIONS(6820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6820), + [anon_sym_BQUOTE] = ACTIONS(6820), + [anon_sym_LT_LPAREN] = ACTIONS(6820), + [anon_sym_GT_LPAREN] = ACTIONS(6820), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6822), + }, + [3338] = { + [sym__concat] = ACTIONS(6812), + [sym_variable_name] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_SEMI_SEMI] = ACTIONS(6814), + [anon_sym_PIPE_AMP] = ACTIONS(6814), + [anon_sym_AMP_AMP] = ACTIONS(6814), + [anon_sym_PIPE_PIPE] = ACTIONS(6814), + [sym__special_characters] = ACTIONS(6814), + [anon_sym_DQUOTE] = ACTIONS(6814), + [anon_sym_DOLLAR] = ACTIONS(6814), + [sym_raw_string] = ACTIONS(6814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6814), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6814), + [anon_sym_BQUOTE] = ACTIONS(6814), + [anon_sym_LT_LPAREN] = ACTIONS(6814), + [anon_sym_GT_LPAREN] = ACTIONS(6814), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6814), + [sym_word] = ACTIONS(6814), + [anon_sym_SEMI] = ACTIONS(6814), + [anon_sym_LF] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6814), + }, + [3339] = { + [sym__concat] = ACTIONS(6816), + [sym_variable_name] = ACTIONS(6816), + [anon_sym_PIPE] = ACTIONS(6818), + [anon_sym_SEMI_SEMI] = ACTIONS(6818), + [anon_sym_PIPE_AMP] = ACTIONS(6818), + [anon_sym_AMP_AMP] = ACTIONS(6818), + [anon_sym_PIPE_PIPE] = ACTIONS(6818), + [sym__special_characters] = ACTIONS(6818), + [anon_sym_DQUOTE] = ACTIONS(6818), + [anon_sym_DOLLAR] = ACTIONS(6818), + [sym_raw_string] = ACTIONS(6818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6818), + [anon_sym_BQUOTE] = ACTIONS(6818), + [anon_sym_LT_LPAREN] = ACTIONS(6818), + [anon_sym_GT_LPAREN] = ACTIONS(6818), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6818), + [sym_word] = ACTIONS(6818), + [anon_sym_SEMI] = ACTIONS(6818), + [anon_sym_LF] = ACTIONS(6818), + [anon_sym_AMP] = ACTIONS(6818), + }, + [3340] = { + [sym__concat] = ACTIONS(6820), + [sym_variable_name] = ACTIONS(6820), + [anon_sym_PIPE] = ACTIONS(6822), + [anon_sym_SEMI_SEMI] = ACTIONS(6822), + [anon_sym_PIPE_AMP] = ACTIONS(6822), + [anon_sym_AMP_AMP] = ACTIONS(6822), + [anon_sym_PIPE_PIPE] = ACTIONS(6822), + [sym__special_characters] = ACTIONS(6822), + [anon_sym_DQUOTE] = ACTIONS(6822), + [anon_sym_DOLLAR] = ACTIONS(6822), + [sym_raw_string] = ACTIONS(6822), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6822), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6822), + [anon_sym_BQUOTE] = ACTIONS(6822), + [anon_sym_LT_LPAREN] = ACTIONS(6822), + [anon_sym_GT_LPAREN] = ACTIONS(6822), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6822), + [sym_word] = ACTIONS(6822), + [anon_sym_SEMI] = ACTIONS(6822), + [anon_sym_LF] = ACTIONS(6822), + [anon_sym_AMP] = ACTIONS(6822), + }, + [3341] = { + [sym__concat] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_SEMI_SEMI] = ACTIONS(6814), + [anon_sym_PIPE_AMP] = ACTIONS(6814), + [anon_sym_AMP_AMP] = ACTIONS(6814), + [anon_sym_PIPE_PIPE] = ACTIONS(6814), + [sym__special_characters] = ACTIONS(6814), + [anon_sym_DQUOTE] = ACTIONS(6814), + [anon_sym_DOLLAR] = ACTIONS(6814), + [sym_raw_string] = ACTIONS(6814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6814), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6814), + [anon_sym_BQUOTE] = ACTIONS(6814), + [anon_sym_LT_LPAREN] = ACTIONS(6814), + [anon_sym_GT_LPAREN] = ACTIONS(6814), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6814), + [sym_word] = ACTIONS(6814), + [anon_sym_SEMI] = ACTIONS(6814), + [anon_sym_LF] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6814), + }, + [3342] = { + [sym__concat] = ACTIONS(6816), + [anon_sym_PIPE] = ACTIONS(6818), + [anon_sym_SEMI_SEMI] = ACTIONS(6818), + [anon_sym_PIPE_AMP] = ACTIONS(6818), + [anon_sym_AMP_AMP] = ACTIONS(6818), + [anon_sym_PIPE_PIPE] = ACTIONS(6818), + [sym__special_characters] = ACTIONS(6818), + [anon_sym_DQUOTE] = ACTIONS(6818), + [anon_sym_DOLLAR] = ACTIONS(6818), + [sym_raw_string] = ACTIONS(6818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6818), + [anon_sym_BQUOTE] = ACTIONS(6818), + [anon_sym_LT_LPAREN] = ACTIONS(6818), + [anon_sym_GT_LPAREN] = ACTIONS(6818), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6818), + [sym_word] = ACTIONS(6818), + [anon_sym_SEMI] = ACTIONS(6818), + [anon_sym_LF] = ACTIONS(6818), + [anon_sym_AMP] = ACTIONS(6818), + }, + [3343] = { + [sym__concat] = ACTIONS(6820), + [anon_sym_PIPE] = ACTIONS(6822), + [anon_sym_SEMI_SEMI] = ACTIONS(6822), + [anon_sym_PIPE_AMP] = ACTIONS(6822), + [anon_sym_AMP_AMP] = ACTIONS(6822), + [anon_sym_PIPE_PIPE] = ACTIONS(6822), + [sym__special_characters] = ACTIONS(6822), + [anon_sym_DQUOTE] = ACTIONS(6822), + [anon_sym_DOLLAR] = ACTIONS(6822), + [sym_raw_string] = ACTIONS(6822), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6822), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6822), + [anon_sym_BQUOTE] = ACTIONS(6822), + [anon_sym_LT_LPAREN] = ACTIONS(6822), + [anon_sym_GT_LPAREN] = ACTIONS(6822), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6822), + [sym_word] = ACTIONS(6822), + [anon_sym_SEMI] = ACTIONS(6822), + [anon_sym_LF] = ACTIONS(6822), + [anon_sym_AMP] = ACTIONS(6822), + }, + [3344] = { + [sym_file_descriptor] = ACTIONS(6812), + [sym__concat] = ACTIONS(6812), + [sym_variable_name] = ACTIONS(6812), + [anon_sym_LT] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7351), + [anon_sym_GT_GT] = ACTIONS(6812), + [anon_sym_AMP_GT] = ACTIONS(7351), + [anon_sym_AMP_GT_GT] = ACTIONS(6812), + [anon_sym_LT_AMP] = ACTIONS(6812), + [anon_sym_GT_AMP] = ACTIONS(6812), + [sym__special_characters] = ACTIONS(7351), + [anon_sym_DQUOTE] = ACTIONS(6812), + [anon_sym_DOLLAR] = ACTIONS(7351), + [sym_raw_string] = ACTIONS(6812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6812), + [anon_sym_BQUOTE] = ACTIONS(6812), + [anon_sym_LT_LPAREN] = ACTIONS(6812), + [anon_sym_GT_LPAREN] = ACTIONS(6812), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7351), + }, + [3345] = { + [sym_file_descriptor] = ACTIONS(6816), + [sym__concat] = ACTIONS(6816), + [sym_variable_name] = ACTIONS(6816), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_GT] = ACTIONS(6816), + [anon_sym_AMP_GT] = ACTIONS(7353), + [anon_sym_AMP_GT_GT] = ACTIONS(6816), + [anon_sym_LT_AMP] = ACTIONS(6816), + [anon_sym_GT_AMP] = ACTIONS(6816), + [sym__special_characters] = ACTIONS(7353), + [anon_sym_DQUOTE] = ACTIONS(6816), + [anon_sym_DOLLAR] = ACTIONS(7353), + [sym_raw_string] = ACTIONS(6816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6816), + [anon_sym_BQUOTE] = ACTIONS(6816), + [anon_sym_LT_LPAREN] = ACTIONS(6816), + [anon_sym_GT_LPAREN] = ACTIONS(6816), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7353), + }, + [3346] = { + [sym_file_descriptor] = ACTIONS(6820), + [sym__concat] = ACTIONS(6820), + [sym_variable_name] = ACTIONS(6820), + [anon_sym_LT] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7355), + [anon_sym_GT_GT] = ACTIONS(6820), + [anon_sym_AMP_GT] = ACTIONS(7355), + [anon_sym_AMP_GT_GT] = ACTIONS(6820), + [anon_sym_LT_AMP] = ACTIONS(6820), + [anon_sym_GT_AMP] = ACTIONS(6820), + [sym__special_characters] = ACTIONS(7355), + [anon_sym_DQUOTE] = ACTIONS(6820), + [anon_sym_DOLLAR] = ACTIONS(7355), + [sym_raw_string] = ACTIONS(6820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6820), + [anon_sym_BQUOTE] = ACTIONS(6820), + [anon_sym_LT_LPAREN] = ACTIONS(6820), + [anon_sym_GT_LPAREN] = ACTIONS(6820), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7355), + }, + [3347] = { + [sym__concat] = ACTIONS(6812), + [anon_sym_DQUOTE] = ACTIONS(6814), + [anon_sym_DOLLAR] = ACTIONS(6814), + [sym__string_content] = ACTIONS(7351), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6814), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6814), + [anon_sym_BQUOTE] = ACTIONS(6814), + [sym_comment] = ACTIONS(182), + }, + [3348] = { + [sym__concat] = ACTIONS(6816), + [anon_sym_DQUOTE] = ACTIONS(6818), + [anon_sym_DOLLAR] = ACTIONS(6818), + [sym__string_content] = ACTIONS(7353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6818), + [anon_sym_BQUOTE] = ACTIONS(6818), + [sym_comment] = ACTIONS(182), + }, + [3349] = { + [sym__concat] = ACTIONS(6820), + [anon_sym_DQUOTE] = ACTIONS(6822), + [anon_sym_DOLLAR] = ACTIONS(6822), + [sym__string_content] = ACTIONS(7355), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6822), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6822), + [anon_sym_BQUOTE] = ACTIONS(6822), + [sym_comment] = ACTIONS(182), + }, + [3350] = { + [sym__concat] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [sym_comment] = ACTIONS(56), + }, + [3351] = { + [sym__concat] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(4734), + [sym_comment] = ACTIONS(56), + }, + [3352] = { + [sym__concat] = ACTIONS(4797), + [anon_sym_RBRACE] = ACTIONS(4797), + [sym_comment] = ACTIONS(56), + }, + [3353] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7357), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3354] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7359), + [sym_comment] = ACTIONS(56), + }, + [3355] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7361), + [sym_comment] = ACTIONS(56), + }, + [3356] = { + [anon_sym_RBRACE] = ACTIONS(7361), + [sym_comment] = ACTIONS(56), + }, + [3357] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3681), + [anon_sym_RBRACE] = ACTIONS(7363), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3358] = { + [sym__concat] = ACTIONS(4809), + [anon_sym_RBRACE] = ACTIONS(4809), + [sym_comment] = ACTIONS(56), + }, + [3359] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3683), + [anon_sym_RBRACE] = ACTIONS(7365), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3360] = { + [sym__concat] = ACTIONS(4815), + [anon_sym_RBRACE] = ACTIONS(4815), + [sym_comment] = ACTIONS(56), + }, + [3361] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3685), + [anon_sym_RBRACE] = ACTIONS(7367), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3362] = { + [sym__concat] = ACTIONS(4821), + [anon_sym_RBRACE] = ACTIONS(4821), + [sym_comment] = ACTIONS(56), + }, + [3363] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7369), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3364] = { + [sym__concat] = ACTIONS(4827), + [anon_sym_RBRACE] = ACTIONS(4827), + [sym_comment] = ACTIONS(56), + }, + [3365] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7371), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3366] = { + [sym__concat] = ACTIONS(5929), + [anon_sym_RBRACE] = ACTIONS(5929), + [anon_sym_EQ] = ACTIONS(6710), + [sym__special_characters] = ACTIONS(5931), + [anon_sym_DQUOTE] = ACTIONS(5929), + [anon_sym_DOLLAR] = ACTIONS(6710), + [sym_raw_string] = ACTIONS(5929), + [anon_sym_POUND] = ACTIONS(5929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5929), + [anon_sym_COLON] = ACTIONS(6710), + [anon_sym_COLON_QMARK] = ACTIONS(6710), + [anon_sym_COLON_DASH] = ACTIONS(6710), + [anon_sym_PERCENT] = ACTIONS(6710), + [anon_sym_DASH] = ACTIONS(6710), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5929), + [anon_sym_BQUOTE] = ACTIONS(5929), + [anon_sym_LT_LPAREN] = ACTIONS(5929), + [anon_sym_GT_LPAREN] = ACTIONS(5929), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5931), + }, + [3367] = { + [sym__concat] = ACTIONS(5933), + [anon_sym_RBRACE] = ACTIONS(5933), + [anon_sym_EQ] = ACTIONS(6712), + [sym__special_characters] = ACTIONS(5935), + [anon_sym_DQUOTE] = ACTIONS(5933), + [anon_sym_DOLLAR] = ACTIONS(6712), + [sym_raw_string] = ACTIONS(5933), + [anon_sym_POUND] = ACTIONS(5933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5933), + [anon_sym_COLON] = ACTIONS(6712), + [anon_sym_COLON_QMARK] = ACTIONS(6712), + [anon_sym_COLON_DASH] = ACTIONS(6712), + [anon_sym_PERCENT] = ACTIONS(6712), + [anon_sym_DASH] = ACTIONS(6712), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5933), + [anon_sym_BQUOTE] = ACTIONS(5933), + [anon_sym_LT_LPAREN] = ACTIONS(5933), + [anon_sym_GT_LPAREN] = ACTIONS(5933), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5935), + }, + [3368] = { + [sym__concat] = ACTIONS(5937), + [anon_sym_RBRACE] = ACTIONS(5937), + [anon_sym_EQ] = ACTIONS(6714), + [sym__special_characters] = ACTIONS(5939), + [anon_sym_DQUOTE] = ACTIONS(5937), + [anon_sym_DOLLAR] = ACTIONS(6714), + [sym_raw_string] = ACTIONS(5937), + [anon_sym_POUND] = ACTIONS(5937), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5937), + [anon_sym_COLON] = ACTIONS(6714), + [anon_sym_COLON_QMARK] = ACTIONS(6714), + [anon_sym_COLON_DASH] = ACTIONS(6714), + [anon_sym_PERCENT] = ACTIONS(6714), + [anon_sym_DASH] = ACTIONS(6714), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5937), + [anon_sym_BQUOTE] = ACTIONS(5937), + [anon_sym_LT_LPAREN] = ACTIONS(5937), + [anon_sym_GT_LPAREN] = ACTIONS(5937), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5939), + }, + [3369] = { + [sym__concat] = ACTIONS(5941), + [anon_sym_RBRACE] = ACTIONS(5941), + [anon_sym_EQ] = ACTIONS(6716), + [sym__special_characters] = ACTIONS(5943), + [anon_sym_DQUOTE] = ACTIONS(5941), + [anon_sym_DOLLAR] = ACTIONS(6716), + [sym_raw_string] = ACTIONS(5941), + [anon_sym_POUND] = ACTIONS(5941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5941), + [anon_sym_COLON] = ACTIONS(6716), + [anon_sym_COLON_QMARK] = ACTIONS(6716), + [anon_sym_COLON_DASH] = ACTIONS(6716), + [anon_sym_PERCENT] = ACTIONS(6716), + [anon_sym_DASH] = ACTIONS(6716), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5941), + [anon_sym_BQUOTE] = ACTIONS(5941), + [anon_sym_LT_LPAREN] = ACTIONS(5941), + [anon_sym_GT_LPAREN] = ACTIONS(5941), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5943), + }, + [3370] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7373), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3371] = { + [sym__concat] = ACTIONS(5947), + [anon_sym_RBRACE] = ACTIONS(5947), + [anon_sym_EQ] = ACTIONS(6720), + [sym__special_characters] = ACTIONS(5949), + [anon_sym_DQUOTE] = ACTIONS(5947), + [anon_sym_DOLLAR] = ACTIONS(6720), + [sym_raw_string] = ACTIONS(5947), + [anon_sym_POUND] = ACTIONS(5947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5947), + [anon_sym_COLON] = ACTIONS(6720), + [anon_sym_COLON_QMARK] = ACTIONS(6720), + [anon_sym_COLON_DASH] = ACTIONS(6720), + [anon_sym_PERCENT] = ACTIONS(6720), + [anon_sym_DASH] = ACTIONS(6720), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5947), + [anon_sym_BQUOTE] = ACTIONS(5947), + [anon_sym_LT_LPAREN] = ACTIONS(5947), + [anon_sym_GT_LPAREN] = ACTIONS(5947), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5949), + }, + [3372] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7375), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3373] = { + [sym__concat] = ACTIONS(5953), + [anon_sym_RBRACE] = ACTIONS(5953), + [anon_sym_EQ] = ACTIONS(6724), + [sym__special_characters] = ACTIONS(5955), + [anon_sym_DQUOTE] = ACTIONS(5953), + [anon_sym_DOLLAR] = ACTIONS(6724), + [sym_raw_string] = ACTIONS(5953), + [anon_sym_POUND] = ACTIONS(5953), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5953), + [anon_sym_COLON] = ACTIONS(6724), + [anon_sym_COLON_QMARK] = ACTIONS(6724), + [anon_sym_COLON_DASH] = ACTIONS(6724), + [anon_sym_PERCENT] = ACTIONS(6724), + [anon_sym_DASH] = ACTIONS(6724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5953), + [anon_sym_BQUOTE] = ACTIONS(5953), + [anon_sym_LT_LPAREN] = ACTIONS(5953), + [anon_sym_GT_LPAREN] = ACTIONS(5953), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5955), + }, + [3374] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7377), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3375] = { + [sym__concat] = ACTIONS(5959), + [anon_sym_RBRACE] = ACTIONS(5959), + [anon_sym_EQ] = ACTIONS(6728), + [sym__special_characters] = ACTIONS(5961), + [anon_sym_DQUOTE] = ACTIONS(5959), + [anon_sym_DOLLAR] = ACTIONS(6728), + [sym_raw_string] = ACTIONS(5959), + [anon_sym_POUND] = ACTIONS(5959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5959), + [anon_sym_COLON] = ACTIONS(6728), + [anon_sym_COLON_QMARK] = ACTIONS(6728), + [anon_sym_COLON_DASH] = ACTIONS(6728), + [anon_sym_PERCENT] = ACTIONS(6728), + [anon_sym_DASH] = ACTIONS(6728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5959), + [anon_sym_BQUOTE] = ACTIONS(5959), + [anon_sym_LT_LPAREN] = ACTIONS(5959), + [anon_sym_GT_LPAREN] = ACTIONS(5959), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5961), + }, + [3376] = { + [sym__concat] = ACTIONS(5963), + [anon_sym_RBRACE] = ACTIONS(5963), + [anon_sym_EQ] = ACTIONS(6730), + [sym__special_characters] = ACTIONS(5965), + [anon_sym_DQUOTE] = ACTIONS(5963), + [anon_sym_DOLLAR] = ACTIONS(6730), + [sym_raw_string] = ACTIONS(5963), + [anon_sym_POUND] = ACTIONS(5963), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5963), + [anon_sym_COLON] = ACTIONS(6730), + [anon_sym_COLON_QMARK] = ACTIONS(6730), + [anon_sym_COLON_DASH] = ACTIONS(6730), + [anon_sym_PERCENT] = ACTIONS(6730), + [anon_sym_DASH] = ACTIONS(6730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5963), + [anon_sym_BQUOTE] = ACTIONS(5963), + [anon_sym_LT_LPAREN] = ACTIONS(5963), + [anon_sym_GT_LPAREN] = ACTIONS(5963), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5965), + }, + [3377] = { + [sym_file_descriptor] = ACTIONS(4728), + [sym__concat] = ACTIONS(4728), + [sym_variable_name] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(5748), + [anon_sym_RPAREN] = ACTIONS(4728), + [anon_sym_PIPE_AMP] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(5748), + [anon_sym_GT] = ACTIONS(5748), + [anon_sym_GT_GT] = ACTIONS(4728), + [anon_sym_AMP_GT] = ACTIONS(5748), + [anon_sym_AMP_GT_GT] = ACTIONS(4728), + [anon_sym_LT_AMP] = ACTIONS(4728), + [anon_sym_GT_AMP] = ACTIONS(4728), + [sym__special_characters] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(5748), + [sym_raw_string] = ACTIONS(4728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LT_LPAREN] = ACTIONS(4728), + [anon_sym_GT_LPAREN] = ACTIONS(4728), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5748), + }, + [3378] = { + [sym_file_descriptor] = ACTIONS(4734), + [sym__concat] = ACTIONS(4734), + [sym_variable_name] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(5750), + [anon_sym_RPAREN] = ACTIONS(4734), + [anon_sym_PIPE_AMP] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [anon_sym_LT] = ACTIONS(5750), + [anon_sym_GT] = ACTIONS(5750), + [anon_sym_GT_GT] = ACTIONS(4734), + [anon_sym_AMP_GT] = ACTIONS(5750), + [anon_sym_AMP_GT_GT] = ACTIONS(4734), + [anon_sym_LT_AMP] = ACTIONS(4734), + [anon_sym_GT_AMP] = ACTIONS(4734), + [sym__special_characters] = ACTIONS(5750), + [anon_sym_DQUOTE] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(5750), + [sym_raw_string] = ACTIONS(4734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4734), + [anon_sym_BQUOTE] = ACTIONS(4734), + [anon_sym_LT_LPAREN] = ACTIONS(4734), + [anon_sym_GT_LPAREN] = ACTIONS(4734), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5750), + }, + [3379] = { + [sym_file_descriptor] = ACTIONS(4797), + [sym__concat] = ACTIONS(4797), + [sym_variable_name] = ACTIONS(4797), + [anon_sym_PIPE] = ACTIONS(5752), + [anon_sym_RPAREN] = ACTIONS(4797), + [anon_sym_PIPE_AMP] = ACTIONS(4797), + [anon_sym_AMP_AMP] = ACTIONS(4797), + [anon_sym_PIPE_PIPE] = ACTIONS(4797), + [anon_sym_LT] = ACTIONS(5752), + [anon_sym_GT] = ACTIONS(5752), + [anon_sym_GT_GT] = ACTIONS(4797), + [anon_sym_AMP_GT] = ACTIONS(5752), + [anon_sym_AMP_GT_GT] = ACTIONS(4797), + [anon_sym_LT_AMP] = ACTIONS(4797), + [anon_sym_GT_AMP] = ACTIONS(4797), + [sym__special_characters] = ACTIONS(5752), + [anon_sym_DQUOTE] = ACTIONS(4797), + [anon_sym_DOLLAR] = ACTIONS(5752), + [sym_raw_string] = ACTIONS(4797), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4797), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4797), + [anon_sym_BQUOTE] = ACTIONS(4797), + [anon_sym_LT_LPAREN] = ACTIONS(4797), + [anon_sym_GT_LPAREN] = ACTIONS(4797), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5752), + }, + [3380] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7379), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3381] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7381), + [sym_comment] = ACTIONS(56), + }, + [3382] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7383), + [sym_comment] = ACTIONS(56), + }, + [3383] = { + [anon_sym_RBRACE] = ACTIONS(7383), + [sym_comment] = ACTIONS(56), + }, + [3384] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3695), + [anon_sym_RBRACE] = ACTIONS(7385), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3385] = { + [sym_file_descriptor] = ACTIONS(4809), + [sym__concat] = ACTIONS(4809), + [sym_variable_name] = ACTIONS(4809), + [anon_sym_PIPE] = ACTIONS(5762), + [anon_sym_RPAREN] = ACTIONS(4809), + [anon_sym_PIPE_AMP] = ACTIONS(4809), + [anon_sym_AMP_AMP] = ACTIONS(4809), + [anon_sym_PIPE_PIPE] = ACTIONS(4809), + [anon_sym_LT] = ACTIONS(5762), + [anon_sym_GT] = ACTIONS(5762), + [anon_sym_GT_GT] = ACTIONS(4809), + [anon_sym_AMP_GT] = ACTIONS(5762), + [anon_sym_AMP_GT_GT] = ACTIONS(4809), + [anon_sym_LT_AMP] = ACTIONS(4809), + [anon_sym_GT_AMP] = ACTIONS(4809), + [sym__special_characters] = ACTIONS(5762), + [anon_sym_DQUOTE] = ACTIONS(4809), + [anon_sym_DOLLAR] = ACTIONS(5762), + [sym_raw_string] = ACTIONS(4809), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4809), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4809), + [anon_sym_BQUOTE] = ACTIONS(4809), + [anon_sym_LT_LPAREN] = ACTIONS(4809), + [anon_sym_GT_LPAREN] = ACTIONS(4809), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5762), + }, + [3386] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3697), + [anon_sym_RBRACE] = ACTIONS(7387), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3387] = { + [sym_file_descriptor] = ACTIONS(4815), + [sym__concat] = ACTIONS(4815), + [sym_variable_name] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(5766), + [anon_sym_RPAREN] = ACTIONS(4815), + [anon_sym_PIPE_AMP] = ACTIONS(4815), + [anon_sym_AMP_AMP] = ACTIONS(4815), + [anon_sym_PIPE_PIPE] = ACTIONS(4815), + [anon_sym_LT] = ACTIONS(5766), + [anon_sym_GT] = ACTIONS(5766), + [anon_sym_GT_GT] = ACTIONS(4815), + [anon_sym_AMP_GT] = ACTIONS(5766), + [anon_sym_AMP_GT_GT] = ACTIONS(4815), + [anon_sym_LT_AMP] = ACTIONS(4815), + [anon_sym_GT_AMP] = ACTIONS(4815), + [sym__special_characters] = ACTIONS(5766), + [anon_sym_DQUOTE] = ACTIONS(4815), + [anon_sym_DOLLAR] = ACTIONS(5766), + [sym_raw_string] = ACTIONS(4815), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4815), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4815), + [anon_sym_BQUOTE] = ACTIONS(4815), + [anon_sym_LT_LPAREN] = ACTIONS(4815), + [anon_sym_GT_LPAREN] = ACTIONS(4815), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5766), + }, + [3388] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3699), + [anon_sym_RBRACE] = ACTIONS(7389), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3389] = { + [sym_file_descriptor] = ACTIONS(4821), + [sym__concat] = ACTIONS(4821), + [sym_variable_name] = ACTIONS(4821), + [anon_sym_PIPE] = ACTIONS(5770), + [anon_sym_RPAREN] = ACTIONS(4821), + [anon_sym_PIPE_AMP] = ACTIONS(4821), + [anon_sym_AMP_AMP] = ACTIONS(4821), + [anon_sym_PIPE_PIPE] = ACTIONS(4821), + [anon_sym_LT] = ACTIONS(5770), + [anon_sym_GT] = ACTIONS(5770), + [anon_sym_GT_GT] = ACTIONS(4821), + [anon_sym_AMP_GT] = ACTIONS(5770), + [anon_sym_AMP_GT_GT] = ACTIONS(4821), + [anon_sym_LT_AMP] = ACTIONS(4821), + [anon_sym_GT_AMP] = ACTIONS(4821), + [sym__special_characters] = ACTIONS(5770), + [anon_sym_DQUOTE] = ACTIONS(4821), + [anon_sym_DOLLAR] = ACTIONS(5770), + [sym_raw_string] = ACTIONS(4821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4821), + [anon_sym_BQUOTE] = ACTIONS(4821), + [anon_sym_LT_LPAREN] = ACTIONS(4821), + [anon_sym_GT_LPAREN] = ACTIONS(4821), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5770), + }, + [3390] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7391), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3391] = { + [sym_file_descriptor] = ACTIONS(4827), + [sym__concat] = ACTIONS(4827), + [sym_variable_name] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(5774), + [anon_sym_RPAREN] = ACTIONS(4827), + [anon_sym_PIPE_AMP] = ACTIONS(4827), + [anon_sym_AMP_AMP] = ACTIONS(4827), + [anon_sym_PIPE_PIPE] = ACTIONS(4827), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(5774), + [anon_sym_GT_GT] = ACTIONS(4827), + [anon_sym_AMP_GT] = ACTIONS(5774), + [anon_sym_AMP_GT_GT] = ACTIONS(4827), + [anon_sym_LT_AMP] = ACTIONS(4827), + [anon_sym_GT_AMP] = ACTIONS(4827), + [sym__special_characters] = ACTIONS(5774), + [anon_sym_DQUOTE] = ACTIONS(4827), + [anon_sym_DOLLAR] = ACTIONS(5774), + [sym_raw_string] = ACTIONS(4827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4827), + [anon_sym_BQUOTE] = ACTIONS(4827), + [anon_sym_LT_LPAREN] = ACTIONS(4827), + [anon_sym_GT_LPAREN] = ACTIONS(4827), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5774), + }, + [3392] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7393), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3393] = { + [anon_sym_PIPE] = ACTIONS(4871), + [anon_sym_RPAREN] = ACTIONS(2625), + [anon_sym_PIPE_AMP] = ACTIONS(2625), + [anon_sym_AMP_AMP] = ACTIONS(2625), + [anon_sym_PIPE_PIPE] = ACTIONS(2625), + [anon_sym_BQUOTE] = ACTIONS(2625), + [sym_comment] = ACTIONS(56), + }, + [3394] = { + [sym__terminated_statement] = STATE(691), + [sym_for_statement] = STATE(692), + [sym_while_statement] = STATE(692), + [sym_if_statement] = STATE(692), + [sym_case_statement] = STATE(692), + [sym_function_definition] = STATE(692), + [sym_subshell] = STATE(692), + [sym_pipeline] = STATE(692), + [sym_list] = STATE(692), + [sym_command] = STATE(692), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(692), + [sym_variable_assignment] = STATE(693), + [sym_declaration_command] = STATE(692), + [sym_unset_command] = STATE(692), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1311), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_done] = ACTIONS(7395), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [3395] = { + [anon_sym_PIPE] = ACTIONS(7397), + [anon_sym_RPAREN] = ACTIONS(7399), + [anon_sym_PIPE_AMP] = ACTIONS(7399), + [anon_sym_AMP_AMP] = ACTIONS(7399), + [anon_sym_PIPE_PIPE] = ACTIONS(7399), + [anon_sym_BQUOTE] = ACTIONS(7399), + [sym_comment] = ACTIONS(56), + }, + [3396] = { + [anon_sym_PIPE] = ACTIONS(7401), + [anon_sym_RPAREN] = ACTIONS(7403), + [anon_sym_PIPE_AMP] = ACTIONS(7403), + [anon_sym_AMP_AMP] = ACTIONS(7403), + [anon_sym_PIPE_PIPE] = ACTIONS(7403), + [anon_sym_BQUOTE] = ACTIONS(7403), + [sym_comment] = ACTIONS(56), + }, + [3397] = { + [anon_sym_esac] = ACTIONS(7405), + [sym_comment] = ACTIONS(56), + }, + [3398] = { + [anon_sym_PIPE] = ACTIONS(7407), + [anon_sym_RPAREN] = ACTIONS(7409), + [anon_sym_PIPE_AMP] = ACTIONS(7409), + [anon_sym_AMP_AMP] = ACTIONS(7409), + [anon_sym_PIPE_PIPE] = ACTIONS(7409), + [anon_sym_BQUOTE] = ACTIONS(7409), + [sym_comment] = ACTIONS(56), + }, + [3399] = { + [anon_sym_esac] = ACTIONS(7411), + [sym_comment] = ACTIONS(56), + }, + [3400] = { + [sym__concat] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(1858), + [anon_sym_PIPE_AMP] = ACTIONS(1858), + [anon_sym_AMP_AMP] = ACTIONS(1858), + [anon_sym_PIPE_PIPE] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + }, + [3401] = { + [aux_sym_concatenation_repeat1] = STATE(3401), + [sym__concat] = ACTIONS(7413), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(1858), + [anon_sym_PIPE_AMP] = ACTIONS(1858), + [anon_sym_AMP_AMP] = ACTIONS(1858), + [anon_sym_PIPE_PIPE] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + }, + [3402] = { + [sym__concat] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_RPAREN] = ACTIONS(1895), + [anon_sym_PIPE_AMP] = ACTIONS(1895), + [anon_sym_AMP_AMP] = ACTIONS(1895), + [anon_sym_PIPE_PIPE] = ACTIONS(1895), + [sym_comment] = ACTIONS(56), + }, + [3403] = { + [sym_concatenation] = STATE(3708), + [sym_string] = STATE(3707), + [sym_simple_expansion] = STATE(3707), + [sym_string_expansion] = STATE(3707), + [sym_expansion] = STATE(3707), + [sym_command_substitution] = STATE(3707), + [sym_process_substitution] = STATE(3707), + [anon_sym_RBRACE] = ACTIONS(7416), + [sym__special_characters] = ACTIONS(7418), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(7420), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7422), + }, + [3404] = { + [sym__concat] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(3023), + [anon_sym_RPAREN] = ACTIONS(1940), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [sym_comment] = ACTIONS(56), + }, + [3405] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7424), + }, + [3406] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7426), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3407] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(7428), + [sym_comment] = ACTIONS(56), + }, + [3408] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3714), + [anon_sym_RBRACE] = ACTIONS(7430), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(7432), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3409] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3717), + [anon_sym_RBRACE] = ACTIONS(7434), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(7436), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3410] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3719), + [anon_sym_RBRACE] = ACTIONS(7416), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(7438), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3411] = { + [sym__concat] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(3041), + [anon_sym_RPAREN] = ACTIONS(1992), + [anon_sym_PIPE_AMP] = ACTIONS(1992), + [anon_sym_AMP_AMP] = ACTIONS(1992), + [anon_sym_PIPE_PIPE] = ACTIONS(1992), + [sym_comment] = ACTIONS(56), + }, + [3412] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7440), + }, + [3413] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7442), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3414] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(3047), + [anon_sym_RPAREN] = ACTIONS(2000), + [anon_sym_PIPE_AMP] = ACTIONS(2000), + [anon_sym_AMP_AMP] = ACTIONS(2000), + [anon_sym_PIPE_PIPE] = ACTIONS(2000), + [sym_comment] = ACTIONS(56), + }, + [3415] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7444), + }, + [3416] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7416), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3417] = { + [sym__concat] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_RPAREN] = ACTIONS(2156), + [anon_sym_PIPE_AMP] = ACTIONS(2156), + [anon_sym_AMP_AMP] = ACTIONS(2156), + [anon_sym_PIPE_PIPE] = ACTIONS(2156), + [sym_comment] = ACTIONS(56), + }, + [3418] = { + [sym__concat] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(3053), + [anon_sym_RPAREN] = ACTIONS(2358), + [anon_sym_PIPE_AMP] = ACTIONS(2358), + [anon_sym_AMP_AMP] = ACTIONS(2358), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [sym_comment] = ACTIONS(56), + }, + [3419] = { + [sym__concat] = ACTIONS(5929), + [sym_variable_name] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(6710), + [anon_sym_RPAREN] = ACTIONS(5929), + [anon_sym_PIPE_AMP] = ACTIONS(5929), + [anon_sym_AMP_AMP] = ACTIONS(5929), + [anon_sym_PIPE_PIPE] = ACTIONS(5929), + [sym__special_characters] = ACTIONS(6710), + [anon_sym_DQUOTE] = ACTIONS(5929), + [anon_sym_DOLLAR] = ACTIONS(6710), + [sym_raw_string] = ACTIONS(5929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5929), + [anon_sym_BQUOTE] = ACTIONS(5929), + [anon_sym_LT_LPAREN] = ACTIONS(5929), + [anon_sym_GT_LPAREN] = ACTIONS(5929), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6710), + [sym_word] = ACTIONS(5931), + }, + [3420] = { + [sym__concat] = ACTIONS(5933), + [sym_variable_name] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(6712), + [anon_sym_RPAREN] = ACTIONS(5933), + [anon_sym_PIPE_AMP] = ACTIONS(5933), + [anon_sym_AMP_AMP] = ACTIONS(5933), + [anon_sym_PIPE_PIPE] = ACTIONS(5933), + [sym__special_characters] = ACTIONS(6712), + [anon_sym_DQUOTE] = ACTIONS(5933), + [anon_sym_DOLLAR] = ACTIONS(6712), + [sym_raw_string] = ACTIONS(5933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5933), + [anon_sym_BQUOTE] = ACTIONS(5933), + [anon_sym_LT_LPAREN] = ACTIONS(5933), + [anon_sym_GT_LPAREN] = ACTIONS(5933), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6712), + [sym_word] = ACTIONS(5935), + }, + [3421] = { + [sym__concat] = ACTIONS(5937), + [sym_variable_name] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(6714), + [anon_sym_RPAREN] = ACTIONS(5937), + [anon_sym_PIPE_AMP] = ACTIONS(5937), + [anon_sym_AMP_AMP] = ACTIONS(5937), + [anon_sym_PIPE_PIPE] = ACTIONS(5937), + [sym__special_characters] = ACTIONS(6714), + [anon_sym_DQUOTE] = ACTIONS(5937), + [anon_sym_DOLLAR] = ACTIONS(6714), + [sym_raw_string] = ACTIONS(5937), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5937), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5937), + [anon_sym_BQUOTE] = ACTIONS(5937), + [anon_sym_LT_LPAREN] = ACTIONS(5937), + [anon_sym_GT_LPAREN] = ACTIONS(5937), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6714), + [sym_word] = ACTIONS(5939), + }, + [3422] = { + [sym__concat] = ACTIONS(5941), + [sym_variable_name] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_RPAREN] = ACTIONS(5941), + [anon_sym_PIPE_AMP] = ACTIONS(5941), + [anon_sym_AMP_AMP] = ACTIONS(5941), + [anon_sym_PIPE_PIPE] = ACTIONS(5941), + [sym__special_characters] = ACTIONS(6716), + [anon_sym_DQUOTE] = ACTIONS(5941), + [anon_sym_DOLLAR] = ACTIONS(6716), + [sym_raw_string] = ACTIONS(5941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5941), + [anon_sym_BQUOTE] = ACTIONS(5941), + [anon_sym_LT_LPAREN] = ACTIONS(5941), + [anon_sym_GT_LPAREN] = ACTIONS(5941), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6716), + [sym_word] = ACTIONS(5943), + }, + [3423] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7446), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3424] = { + [sym__concat] = ACTIONS(5947), + [sym_variable_name] = ACTIONS(5947), + [anon_sym_PIPE] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(5947), + [anon_sym_PIPE_AMP] = ACTIONS(5947), + [anon_sym_AMP_AMP] = ACTIONS(5947), + [anon_sym_PIPE_PIPE] = ACTIONS(5947), + [sym__special_characters] = ACTIONS(6720), + [anon_sym_DQUOTE] = ACTIONS(5947), + [anon_sym_DOLLAR] = ACTIONS(6720), + [sym_raw_string] = ACTIONS(5947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5947), + [anon_sym_BQUOTE] = ACTIONS(5947), + [anon_sym_LT_LPAREN] = ACTIONS(5947), + [anon_sym_GT_LPAREN] = ACTIONS(5947), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6720), + [sym_word] = ACTIONS(5949), + }, + [3425] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7448), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3426] = { + [sym__concat] = ACTIONS(5953), + [sym_variable_name] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(6724), + [anon_sym_RPAREN] = ACTIONS(5953), + [anon_sym_PIPE_AMP] = ACTIONS(5953), + [anon_sym_AMP_AMP] = ACTIONS(5953), + [anon_sym_PIPE_PIPE] = ACTIONS(5953), + [sym__special_characters] = ACTIONS(6724), + [anon_sym_DQUOTE] = ACTIONS(5953), + [anon_sym_DOLLAR] = ACTIONS(6724), + [sym_raw_string] = ACTIONS(5953), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5953), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5953), + [anon_sym_BQUOTE] = ACTIONS(5953), + [anon_sym_LT_LPAREN] = ACTIONS(5953), + [anon_sym_GT_LPAREN] = ACTIONS(5953), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6724), + [sym_word] = ACTIONS(5955), + }, + [3427] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7450), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3428] = { + [sym__concat] = ACTIONS(5959), + [sym_variable_name] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(6728), + [anon_sym_RPAREN] = ACTIONS(5959), + [anon_sym_PIPE_AMP] = ACTIONS(5959), + [anon_sym_AMP_AMP] = ACTIONS(5959), + [anon_sym_PIPE_PIPE] = ACTIONS(5959), + [sym__special_characters] = ACTIONS(6728), + [anon_sym_DQUOTE] = ACTIONS(5959), + [anon_sym_DOLLAR] = ACTIONS(6728), + [sym_raw_string] = ACTIONS(5959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5959), + [anon_sym_BQUOTE] = ACTIONS(5959), + [anon_sym_LT_LPAREN] = ACTIONS(5959), + [anon_sym_GT_LPAREN] = ACTIONS(5959), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6728), + [sym_word] = ACTIONS(5961), + }, + [3429] = { + [sym__concat] = ACTIONS(5963), + [sym_variable_name] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(6730), + [anon_sym_RPAREN] = ACTIONS(5963), + [anon_sym_PIPE_AMP] = ACTIONS(5963), + [anon_sym_AMP_AMP] = ACTIONS(5963), + [anon_sym_PIPE_PIPE] = ACTIONS(5963), + [sym__special_characters] = ACTIONS(6730), + [anon_sym_DQUOTE] = ACTIONS(5963), + [anon_sym_DOLLAR] = ACTIONS(6730), + [sym_raw_string] = ACTIONS(5963), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5963), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5963), + [anon_sym_BQUOTE] = ACTIONS(5963), + [anon_sym_LT_LPAREN] = ACTIONS(5963), + [anon_sym_GT_LPAREN] = ACTIONS(5963), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6730), + [sym_word] = ACTIONS(5965), + }, + [3430] = { + [sym__concat] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(6710), + [anon_sym_RPAREN] = ACTIONS(5929), + [anon_sym_PIPE_AMP] = ACTIONS(5929), + [anon_sym_AMP_AMP] = ACTIONS(5929), + [anon_sym_PIPE_PIPE] = ACTIONS(5929), + [sym__special_characters] = ACTIONS(6710), + [anon_sym_DQUOTE] = ACTIONS(5929), + [anon_sym_DOLLAR] = ACTIONS(6710), + [sym_raw_string] = ACTIONS(5929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5929), + [anon_sym_BQUOTE] = ACTIONS(5929), + [anon_sym_LT_LPAREN] = ACTIONS(5929), + [anon_sym_GT_LPAREN] = ACTIONS(5929), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6710), + [sym_word] = ACTIONS(5931), + }, + [3431] = { + [sym__concat] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(6712), + [anon_sym_RPAREN] = ACTIONS(5933), + [anon_sym_PIPE_AMP] = ACTIONS(5933), + [anon_sym_AMP_AMP] = ACTIONS(5933), + [anon_sym_PIPE_PIPE] = ACTIONS(5933), + [sym__special_characters] = ACTIONS(6712), + [anon_sym_DQUOTE] = ACTIONS(5933), + [anon_sym_DOLLAR] = ACTIONS(6712), + [sym_raw_string] = ACTIONS(5933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5933), + [anon_sym_BQUOTE] = ACTIONS(5933), + [anon_sym_LT_LPAREN] = ACTIONS(5933), + [anon_sym_GT_LPAREN] = ACTIONS(5933), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6712), + [sym_word] = ACTIONS(5935), + }, + [3432] = { + [sym__concat] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(6714), + [anon_sym_RPAREN] = ACTIONS(5937), + [anon_sym_PIPE_AMP] = ACTIONS(5937), + [anon_sym_AMP_AMP] = ACTIONS(5937), + [anon_sym_PIPE_PIPE] = ACTIONS(5937), + [sym__special_characters] = ACTIONS(6714), + [anon_sym_DQUOTE] = ACTIONS(5937), + [anon_sym_DOLLAR] = ACTIONS(6714), + [sym_raw_string] = ACTIONS(5937), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5937), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5937), + [anon_sym_BQUOTE] = ACTIONS(5937), + [anon_sym_LT_LPAREN] = ACTIONS(5937), + [anon_sym_GT_LPAREN] = ACTIONS(5937), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6714), + [sym_word] = ACTIONS(5939), + }, + [3433] = { + [sym__concat] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_RPAREN] = ACTIONS(5941), + [anon_sym_PIPE_AMP] = ACTIONS(5941), + [anon_sym_AMP_AMP] = ACTIONS(5941), + [anon_sym_PIPE_PIPE] = ACTIONS(5941), + [sym__special_characters] = ACTIONS(6716), + [anon_sym_DQUOTE] = ACTIONS(5941), + [anon_sym_DOLLAR] = ACTIONS(6716), + [sym_raw_string] = ACTIONS(5941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5941), + [anon_sym_BQUOTE] = ACTIONS(5941), + [anon_sym_LT_LPAREN] = ACTIONS(5941), + [anon_sym_GT_LPAREN] = ACTIONS(5941), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6716), + [sym_word] = ACTIONS(5943), + }, + [3434] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7452), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3435] = { + [sym__concat] = ACTIONS(5947), + [anon_sym_PIPE] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(5947), + [anon_sym_PIPE_AMP] = ACTIONS(5947), + [anon_sym_AMP_AMP] = ACTIONS(5947), + [anon_sym_PIPE_PIPE] = ACTIONS(5947), + [sym__special_characters] = ACTIONS(6720), + [anon_sym_DQUOTE] = ACTIONS(5947), + [anon_sym_DOLLAR] = ACTIONS(6720), + [sym_raw_string] = ACTIONS(5947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5947), + [anon_sym_BQUOTE] = ACTIONS(5947), + [anon_sym_LT_LPAREN] = ACTIONS(5947), + [anon_sym_GT_LPAREN] = ACTIONS(5947), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6720), + [sym_word] = ACTIONS(5949), + }, + [3436] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7454), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3437] = { + [sym__concat] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(6724), + [anon_sym_RPAREN] = ACTIONS(5953), + [anon_sym_PIPE_AMP] = ACTIONS(5953), + [anon_sym_AMP_AMP] = ACTIONS(5953), + [anon_sym_PIPE_PIPE] = ACTIONS(5953), + [sym__special_characters] = ACTIONS(6724), + [anon_sym_DQUOTE] = ACTIONS(5953), + [anon_sym_DOLLAR] = ACTIONS(6724), + [sym_raw_string] = ACTIONS(5953), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5953), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5953), + [anon_sym_BQUOTE] = ACTIONS(5953), + [anon_sym_LT_LPAREN] = ACTIONS(5953), + [anon_sym_GT_LPAREN] = ACTIONS(5953), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6724), + [sym_word] = ACTIONS(5955), + }, + [3438] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7456), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3439] = { + [sym__concat] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(6728), + [anon_sym_RPAREN] = ACTIONS(5959), + [anon_sym_PIPE_AMP] = ACTIONS(5959), + [anon_sym_AMP_AMP] = ACTIONS(5959), + [anon_sym_PIPE_PIPE] = ACTIONS(5959), + [sym__special_characters] = ACTIONS(6728), + [anon_sym_DQUOTE] = ACTIONS(5959), + [anon_sym_DOLLAR] = ACTIONS(6728), + [sym_raw_string] = ACTIONS(5959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5959), + [anon_sym_BQUOTE] = ACTIONS(5959), + [anon_sym_LT_LPAREN] = ACTIONS(5959), + [anon_sym_GT_LPAREN] = ACTIONS(5959), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6728), + [sym_word] = ACTIONS(5961), + }, + [3440] = { + [sym__concat] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(6730), + [anon_sym_RPAREN] = ACTIONS(5963), + [anon_sym_PIPE_AMP] = ACTIONS(5963), + [anon_sym_AMP_AMP] = ACTIONS(5963), + [anon_sym_PIPE_PIPE] = ACTIONS(5963), + [sym__special_characters] = ACTIONS(6730), + [anon_sym_DQUOTE] = ACTIONS(5963), + [anon_sym_DOLLAR] = ACTIONS(6730), + [sym_raw_string] = ACTIONS(5963), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5963), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5963), + [anon_sym_BQUOTE] = ACTIONS(5963), + [anon_sym_LT_LPAREN] = ACTIONS(5963), + [anon_sym_GT_LPAREN] = ACTIONS(5963), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6730), + [sym_word] = ACTIONS(5965), + }, + [3441] = { + [sym_file_descriptor] = ACTIONS(6812), + [sym__concat] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(7351), + [anon_sym_RPAREN] = ACTIONS(6812), + [anon_sym_PIPE_AMP] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_EQ_TILDE] = ACTIONS(7351), + [anon_sym_LT] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7351), + [anon_sym_GT_GT] = ACTIONS(6812), + [anon_sym_AMP_GT] = ACTIONS(7351), + [anon_sym_AMP_GT_GT] = ACTIONS(6812), + [anon_sym_LT_AMP] = ACTIONS(6812), + [anon_sym_GT_AMP] = ACTIONS(6812), + [anon_sym_LT_LT] = ACTIONS(7351), + [anon_sym_LT_LT_DASH] = ACTIONS(6812), + [anon_sym_LT_LT_LT] = ACTIONS(6812), + [sym__special_characters] = ACTIONS(7351), + [anon_sym_DQUOTE] = ACTIONS(6812), + [anon_sym_DOLLAR] = ACTIONS(7351), + [sym_raw_string] = ACTIONS(6812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6812), + [anon_sym_BQUOTE] = ACTIONS(6812), + [anon_sym_LT_LPAREN] = ACTIONS(6812), + [anon_sym_GT_LPAREN] = ACTIONS(6812), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6814), + }, + [3442] = { + [sym_file_descriptor] = ACTIONS(6816), + [sym__concat] = ACTIONS(6816), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_RPAREN] = ACTIONS(6816), + [anon_sym_PIPE_AMP] = ACTIONS(6816), + [anon_sym_AMP_AMP] = ACTIONS(6816), + [anon_sym_PIPE_PIPE] = ACTIONS(6816), + [anon_sym_EQ_TILDE] = ACTIONS(7353), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_GT] = ACTIONS(6816), + [anon_sym_AMP_GT] = ACTIONS(7353), + [anon_sym_AMP_GT_GT] = ACTIONS(6816), + [anon_sym_LT_AMP] = ACTIONS(6816), + [anon_sym_GT_AMP] = ACTIONS(6816), + [anon_sym_LT_LT] = ACTIONS(7353), + [anon_sym_LT_LT_DASH] = ACTIONS(6816), + [anon_sym_LT_LT_LT] = ACTIONS(6816), + [sym__special_characters] = ACTIONS(7353), + [anon_sym_DQUOTE] = ACTIONS(6816), + [anon_sym_DOLLAR] = ACTIONS(7353), + [sym_raw_string] = ACTIONS(6816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6816), + [anon_sym_BQUOTE] = ACTIONS(6816), + [anon_sym_LT_LPAREN] = ACTIONS(6816), + [anon_sym_GT_LPAREN] = ACTIONS(6816), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6818), + }, + [3443] = { + [sym_file_descriptor] = ACTIONS(6820), + [sym__concat] = ACTIONS(6820), + [anon_sym_PIPE] = ACTIONS(7355), + [anon_sym_RPAREN] = ACTIONS(6820), + [anon_sym_PIPE_AMP] = ACTIONS(6820), + [anon_sym_AMP_AMP] = ACTIONS(6820), + [anon_sym_PIPE_PIPE] = ACTIONS(6820), + [anon_sym_EQ_TILDE] = ACTIONS(7355), + [anon_sym_LT] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7355), + [anon_sym_GT_GT] = ACTIONS(6820), + [anon_sym_AMP_GT] = ACTIONS(7355), + [anon_sym_AMP_GT_GT] = ACTIONS(6820), + [anon_sym_LT_AMP] = ACTIONS(6820), + [anon_sym_GT_AMP] = ACTIONS(6820), + [anon_sym_LT_LT] = ACTIONS(7355), + [anon_sym_LT_LT_DASH] = ACTIONS(6820), + [anon_sym_LT_LT_LT] = ACTIONS(6820), + [sym__special_characters] = ACTIONS(7355), + [anon_sym_DQUOTE] = ACTIONS(6820), + [anon_sym_DOLLAR] = ACTIONS(7355), + [sym_raw_string] = ACTIONS(6820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6820), + [anon_sym_BQUOTE] = ACTIONS(6820), + [anon_sym_LT_LPAREN] = ACTIONS(6820), + [anon_sym_GT_LPAREN] = ACTIONS(6820), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6822), + }, + [3444] = { + [sym_file_descriptor] = ACTIONS(4728), + [sym__concat] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(5748), + [anon_sym_RPAREN] = ACTIONS(4728), + [anon_sym_PIPE_AMP] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(5748), + [anon_sym_GT] = ACTIONS(5748), + [anon_sym_GT_GT] = ACTIONS(4728), + [anon_sym_AMP_GT] = ACTIONS(5748), + [anon_sym_AMP_GT_GT] = ACTIONS(4728), + [anon_sym_LT_AMP] = ACTIONS(4728), + [anon_sym_GT_AMP] = ACTIONS(4728), + [anon_sym_LT_LT] = ACTIONS(5748), + [anon_sym_LT_LT_DASH] = ACTIONS(4728), + [anon_sym_LT_LT_LT] = ACTIONS(4728), + [sym_comment] = ACTIONS(56), + }, + [3445] = { + [sym_file_descriptor] = ACTIONS(4734), + [sym__concat] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(5750), + [anon_sym_RPAREN] = ACTIONS(4734), + [anon_sym_PIPE_AMP] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [anon_sym_LT] = ACTIONS(5750), + [anon_sym_GT] = ACTIONS(5750), + [anon_sym_GT_GT] = ACTIONS(4734), + [anon_sym_AMP_GT] = ACTIONS(5750), + [anon_sym_AMP_GT_GT] = ACTIONS(4734), + [anon_sym_LT_AMP] = ACTIONS(4734), + [anon_sym_GT_AMP] = ACTIONS(4734), + [anon_sym_LT_LT] = ACTIONS(5750), + [anon_sym_LT_LT_DASH] = ACTIONS(4734), + [anon_sym_LT_LT_LT] = ACTIONS(4734), + [sym_comment] = ACTIONS(56), + }, + [3446] = { + [sym_file_descriptor] = ACTIONS(4797), + [sym__concat] = ACTIONS(4797), + [anon_sym_PIPE] = ACTIONS(5752), + [anon_sym_RPAREN] = ACTIONS(4797), + [anon_sym_PIPE_AMP] = ACTIONS(4797), + [anon_sym_AMP_AMP] = ACTIONS(4797), + [anon_sym_PIPE_PIPE] = ACTIONS(4797), + [anon_sym_LT] = ACTIONS(5752), + [anon_sym_GT] = ACTIONS(5752), + [anon_sym_GT_GT] = ACTIONS(4797), + [anon_sym_AMP_GT] = ACTIONS(5752), + [anon_sym_AMP_GT_GT] = ACTIONS(4797), + [anon_sym_LT_AMP] = ACTIONS(4797), + [anon_sym_GT_AMP] = ACTIONS(4797), + [anon_sym_LT_LT] = ACTIONS(5752), + [anon_sym_LT_LT_DASH] = ACTIONS(4797), + [anon_sym_LT_LT_LT] = ACTIONS(4797), + [sym_comment] = ACTIONS(56), + }, + [3447] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7458), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3448] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7460), + [sym_comment] = ACTIONS(56), + }, + [3449] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7462), + [sym_comment] = ACTIONS(56), + }, + [3450] = { + [anon_sym_RBRACE] = ACTIONS(7462), + [sym_comment] = ACTIONS(56), + }, + [3451] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3733), + [anon_sym_RBRACE] = ACTIONS(7464), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3452] = { + [sym_file_descriptor] = ACTIONS(4809), + [sym__concat] = ACTIONS(4809), + [anon_sym_PIPE] = ACTIONS(5762), + [anon_sym_RPAREN] = ACTIONS(4809), + [anon_sym_PIPE_AMP] = ACTIONS(4809), + [anon_sym_AMP_AMP] = ACTIONS(4809), + [anon_sym_PIPE_PIPE] = ACTIONS(4809), + [anon_sym_LT] = ACTIONS(5762), + [anon_sym_GT] = ACTIONS(5762), + [anon_sym_GT_GT] = ACTIONS(4809), + [anon_sym_AMP_GT] = ACTIONS(5762), + [anon_sym_AMP_GT_GT] = ACTIONS(4809), + [anon_sym_LT_AMP] = ACTIONS(4809), + [anon_sym_GT_AMP] = ACTIONS(4809), + [anon_sym_LT_LT] = ACTIONS(5762), + [anon_sym_LT_LT_DASH] = ACTIONS(4809), + [anon_sym_LT_LT_LT] = ACTIONS(4809), + [sym_comment] = ACTIONS(56), + }, + [3453] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3735), + [anon_sym_RBRACE] = ACTIONS(7466), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3454] = { + [sym_file_descriptor] = ACTIONS(4815), + [sym__concat] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(5766), + [anon_sym_RPAREN] = ACTIONS(4815), + [anon_sym_PIPE_AMP] = ACTIONS(4815), + [anon_sym_AMP_AMP] = ACTIONS(4815), + [anon_sym_PIPE_PIPE] = ACTIONS(4815), + [anon_sym_LT] = ACTIONS(5766), + [anon_sym_GT] = ACTIONS(5766), + [anon_sym_GT_GT] = ACTIONS(4815), + [anon_sym_AMP_GT] = ACTIONS(5766), + [anon_sym_AMP_GT_GT] = ACTIONS(4815), + [anon_sym_LT_AMP] = ACTIONS(4815), + [anon_sym_GT_AMP] = ACTIONS(4815), + [anon_sym_LT_LT] = ACTIONS(5766), + [anon_sym_LT_LT_DASH] = ACTIONS(4815), + [anon_sym_LT_LT_LT] = ACTIONS(4815), + [sym_comment] = ACTIONS(56), + }, + [3455] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3737), + [anon_sym_RBRACE] = ACTIONS(7468), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3456] = { + [sym_file_descriptor] = ACTIONS(4821), + [sym__concat] = ACTIONS(4821), + [anon_sym_PIPE] = ACTIONS(5770), + [anon_sym_RPAREN] = ACTIONS(4821), + [anon_sym_PIPE_AMP] = ACTIONS(4821), + [anon_sym_AMP_AMP] = ACTIONS(4821), + [anon_sym_PIPE_PIPE] = ACTIONS(4821), + [anon_sym_LT] = ACTIONS(5770), + [anon_sym_GT] = ACTIONS(5770), + [anon_sym_GT_GT] = ACTIONS(4821), + [anon_sym_AMP_GT] = ACTIONS(5770), + [anon_sym_AMP_GT_GT] = ACTIONS(4821), + [anon_sym_LT_AMP] = ACTIONS(4821), + [anon_sym_GT_AMP] = ACTIONS(4821), + [anon_sym_LT_LT] = ACTIONS(5770), + [anon_sym_LT_LT_DASH] = ACTIONS(4821), + [anon_sym_LT_LT_LT] = ACTIONS(4821), + [sym_comment] = ACTIONS(56), + }, + [3457] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7470), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3458] = { + [sym_file_descriptor] = ACTIONS(4827), + [sym__concat] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(5774), + [anon_sym_RPAREN] = ACTIONS(4827), + [anon_sym_PIPE_AMP] = ACTIONS(4827), + [anon_sym_AMP_AMP] = ACTIONS(4827), + [anon_sym_PIPE_PIPE] = ACTIONS(4827), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(5774), + [anon_sym_GT_GT] = ACTIONS(4827), + [anon_sym_AMP_GT] = ACTIONS(5774), + [anon_sym_AMP_GT_GT] = ACTIONS(4827), + [anon_sym_LT_AMP] = ACTIONS(4827), + [anon_sym_GT_AMP] = ACTIONS(4827), + [anon_sym_LT_LT] = ACTIONS(5774), + [anon_sym_LT_LT_DASH] = ACTIONS(4827), + [anon_sym_LT_LT_LT] = ACTIONS(4827), + [sym_comment] = ACTIONS(56), + }, + [3459] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7472), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3460] = { + [sym_file_descriptor] = ACTIONS(4728), + [sym__concat] = ACTIONS(4728), + [sym_variable_name] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(5748), + [anon_sym_PIPE_AMP] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(5748), + [anon_sym_GT] = ACTIONS(5748), + [anon_sym_GT_GT] = ACTIONS(4728), + [anon_sym_AMP_GT] = ACTIONS(5748), + [anon_sym_AMP_GT_GT] = ACTIONS(4728), + [anon_sym_LT_AMP] = ACTIONS(4728), + [anon_sym_GT_AMP] = ACTIONS(4728), + [sym__special_characters] = ACTIONS(5748), + [anon_sym_DQUOTE] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(5748), + [sym_raw_string] = ACTIONS(4728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LT_LPAREN] = ACTIONS(4728), + [anon_sym_GT_LPAREN] = ACTIONS(4728), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5748), + }, + [3461] = { + [sym_file_descriptor] = ACTIONS(4734), + [sym__concat] = ACTIONS(4734), + [sym_variable_name] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(5750), + [anon_sym_PIPE_AMP] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [anon_sym_LT] = ACTIONS(5750), + [anon_sym_GT] = ACTIONS(5750), + [anon_sym_GT_GT] = ACTIONS(4734), + [anon_sym_AMP_GT] = ACTIONS(5750), + [anon_sym_AMP_GT_GT] = ACTIONS(4734), + [anon_sym_LT_AMP] = ACTIONS(4734), + [anon_sym_GT_AMP] = ACTIONS(4734), + [sym__special_characters] = ACTIONS(5750), + [anon_sym_DQUOTE] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(5750), + [sym_raw_string] = ACTIONS(4734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4734), + [anon_sym_BQUOTE] = ACTIONS(4734), + [anon_sym_LT_LPAREN] = ACTIONS(4734), + [anon_sym_GT_LPAREN] = ACTIONS(4734), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5750), + }, + [3462] = { + [sym_file_descriptor] = ACTIONS(4797), + [sym__concat] = ACTIONS(4797), + [sym_variable_name] = ACTIONS(4797), + [anon_sym_PIPE] = ACTIONS(5752), + [anon_sym_PIPE_AMP] = ACTIONS(4797), + [anon_sym_AMP_AMP] = ACTIONS(4797), + [anon_sym_PIPE_PIPE] = ACTIONS(4797), + [anon_sym_LT] = ACTIONS(5752), + [anon_sym_GT] = ACTIONS(5752), + [anon_sym_GT_GT] = ACTIONS(4797), + [anon_sym_AMP_GT] = ACTIONS(5752), + [anon_sym_AMP_GT_GT] = ACTIONS(4797), + [anon_sym_LT_AMP] = ACTIONS(4797), + [anon_sym_GT_AMP] = ACTIONS(4797), + [sym__special_characters] = ACTIONS(5752), + [anon_sym_DQUOTE] = ACTIONS(4797), + [anon_sym_DOLLAR] = ACTIONS(5752), + [sym_raw_string] = ACTIONS(4797), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4797), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4797), + [anon_sym_BQUOTE] = ACTIONS(4797), + [anon_sym_LT_LPAREN] = ACTIONS(4797), + [anon_sym_GT_LPAREN] = ACTIONS(4797), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5752), + }, + [3463] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7474), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3464] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7476), + [sym_comment] = ACTIONS(56), + }, + [3465] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7478), + [sym_comment] = ACTIONS(56), + }, + [3466] = { + [anon_sym_RBRACE] = ACTIONS(7478), + [sym_comment] = ACTIONS(56), + }, + [3467] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3744), + [anon_sym_RBRACE] = ACTIONS(7480), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3468] = { + [sym_file_descriptor] = ACTIONS(4809), + [sym__concat] = ACTIONS(4809), + [sym_variable_name] = ACTIONS(4809), + [anon_sym_PIPE] = ACTIONS(5762), + [anon_sym_PIPE_AMP] = ACTIONS(4809), + [anon_sym_AMP_AMP] = ACTIONS(4809), + [anon_sym_PIPE_PIPE] = ACTIONS(4809), + [anon_sym_LT] = ACTIONS(5762), + [anon_sym_GT] = ACTIONS(5762), + [anon_sym_GT_GT] = ACTIONS(4809), + [anon_sym_AMP_GT] = ACTIONS(5762), + [anon_sym_AMP_GT_GT] = ACTIONS(4809), + [anon_sym_LT_AMP] = ACTIONS(4809), + [anon_sym_GT_AMP] = ACTIONS(4809), + [sym__special_characters] = ACTIONS(5762), + [anon_sym_DQUOTE] = ACTIONS(4809), + [anon_sym_DOLLAR] = ACTIONS(5762), + [sym_raw_string] = ACTIONS(4809), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4809), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4809), + [anon_sym_BQUOTE] = ACTIONS(4809), + [anon_sym_LT_LPAREN] = ACTIONS(4809), + [anon_sym_GT_LPAREN] = ACTIONS(4809), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5762), + }, + [3469] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3746), + [anon_sym_RBRACE] = ACTIONS(7482), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3470] = { + [sym_file_descriptor] = ACTIONS(4815), + [sym__concat] = ACTIONS(4815), + [sym_variable_name] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(5766), + [anon_sym_PIPE_AMP] = ACTIONS(4815), + [anon_sym_AMP_AMP] = ACTIONS(4815), + [anon_sym_PIPE_PIPE] = ACTIONS(4815), + [anon_sym_LT] = ACTIONS(5766), + [anon_sym_GT] = ACTIONS(5766), + [anon_sym_GT_GT] = ACTIONS(4815), + [anon_sym_AMP_GT] = ACTIONS(5766), + [anon_sym_AMP_GT_GT] = ACTIONS(4815), + [anon_sym_LT_AMP] = ACTIONS(4815), + [anon_sym_GT_AMP] = ACTIONS(4815), + [sym__special_characters] = ACTIONS(5766), + [anon_sym_DQUOTE] = ACTIONS(4815), + [anon_sym_DOLLAR] = ACTIONS(5766), + [sym_raw_string] = ACTIONS(4815), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4815), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4815), + [anon_sym_BQUOTE] = ACTIONS(4815), + [anon_sym_LT_LPAREN] = ACTIONS(4815), + [anon_sym_GT_LPAREN] = ACTIONS(4815), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5766), + }, + [3471] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3748), + [anon_sym_RBRACE] = ACTIONS(7484), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3472] = { + [sym_file_descriptor] = ACTIONS(4821), + [sym__concat] = ACTIONS(4821), + [sym_variable_name] = ACTIONS(4821), + [anon_sym_PIPE] = ACTIONS(5770), + [anon_sym_PIPE_AMP] = ACTIONS(4821), + [anon_sym_AMP_AMP] = ACTIONS(4821), + [anon_sym_PIPE_PIPE] = ACTIONS(4821), + [anon_sym_LT] = ACTIONS(5770), + [anon_sym_GT] = ACTIONS(5770), + [anon_sym_GT_GT] = ACTIONS(4821), + [anon_sym_AMP_GT] = ACTIONS(5770), + [anon_sym_AMP_GT_GT] = ACTIONS(4821), + [anon_sym_LT_AMP] = ACTIONS(4821), + [anon_sym_GT_AMP] = ACTIONS(4821), + [sym__special_characters] = ACTIONS(5770), + [anon_sym_DQUOTE] = ACTIONS(4821), + [anon_sym_DOLLAR] = ACTIONS(5770), + [sym_raw_string] = ACTIONS(4821), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4821), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4821), + [anon_sym_BQUOTE] = ACTIONS(4821), + [anon_sym_LT_LPAREN] = ACTIONS(4821), + [anon_sym_GT_LPAREN] = ACTIONS(4821), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5770), + }, + [3473] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7486), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3474] = { + [sym_file_descriptor] = ACTIONS(4827), + [sym__concat] = ACTIONS(4827), + [sym_variable_name] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(5774), + [anon_sym_PIPE_AMP] = ACTIONS(4827), + [anon_sym_AMP_AMP] = ACTIONS(4827), + [anon_sym_PIPE_PIPE] = ACTIONS(4827), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(5774), + [anon_sym_GT_GT] = ACTIONS(4827), + [anon_sym_AMP_GT] = ACTIONS(5774), + [anon_sym_AMP_GT_GT] = ACTIONS(4827), + [anon_sym_LT_AMP] = ACTIONS(4827), + [anon_sym_GT_AMP] = ACTIONS(4827), + [sym__special_characters] = ACTIONS(5774), + [anon_sym_DQUOTE] = ACTIONS(4827), + [anon_sym_DOLLAR] = ACTIONS(5774), + [sym_raw_string] = ACTIONS(4827), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4827), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4827), + [anon_sym_BQUOTE] = ACTIONS(4827), + [anon_sym_LT_LPAREN] = ACTIONS(4827), + [anon_sym_GT_LPAREN] = ACTIONS(4827), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5774), + }, + [3475] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7488), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3476] = { + [sym__concat] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_PIPE_AMP] = ACTIONS(1858), + [anon_sym_AMP_AMP] = ACTIONS(1858), + [anon_sym_PIPE_PIPE] = ACTIONS(1858), + [anon_sym_BQUOTE] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + }, + [3477] = { + [aux_sym_concatenation_repeat1] = STATE(3477), + [sym__concat] = ACTIONS(7490), + [anon_sym_PIPE] = ACTIONS(3008), + [anon_sym_PIPE_AMP] = ACTIONS(1858), + [anon_sym_AMP_AMP] = ACTIONS(1858), + [anon_sym_PIPE_PIPE] = ACTIONS(1858), + [anon_sym_BQUOTE] = ACTIONS(1858), + [sym_comment] = ACTIONS(56), + }, + [3478] = { + [sym__concat] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_PIPE_AMP] = ACTIONS(1895), + [anon_sym_AMP_AMP] = ACTIONS(1895), + [anon_sym_PIPE_PIPE] = ACTIONS(1895), + [anon_sym_BQUOTE] = ACTIONS(1895), + [sym_comment] = ACTIONS(56), + }, + [3479] = { + [sym_concatenation] = STATE(3754), + [sym_string] = STATE(3753), + [sym_simple_expansion] = STATE(3753), + [sym_string_expansion] = STATE(3753), + [sym_expansion] = STATE(3753), + [sym_command_substitution] = STATE(3753), + [sym_process_substitution] = STATE(3753), + [anon_sym_RBRACE] = ACTIONS(7493), + [sym__special_characters] = ACTIONS(7495), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(7497), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7499), + }, + [3480] = { + [sym__concat] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(3023), + [anon_sym_PIPE_AMP] = ACTIONS(1940), + [anon_sym_AMP_AMP] = ACTIONS(1940), + [anon_sym_PIPE_PIPE] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1940), + [sym_comment] = ACTIONS(56), + }, + [3481] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7501), + }, + [3482] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7503), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3483] = { + [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_EQ] = ACTIONS(7505), + [sym_comment] = ACTIONS(56), + }, + [3484] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3760), + [anon_sym_RBRACE] = ACTIONS(7507), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(7509), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3485] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3763), + [anon_sym_RBRACE] = ACTIONS(7511), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(7513), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3486] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3765), + [anon_sym_RBRACE] = ACTIONS(7493), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [aux_sym_SLASH] = ACTIONS(7515), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3487] = { + [sym__concat] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(3041), + [anon_sym_PIPE_AMP] = ACTIONS(1992), + [anon_sym_AMP_AMP] = ACTIONS(1992), + [anon_sym_PIPE_PIPE] = ACTIONS(1992), + [anon_sym_BQUOTE] = ACTIONS(1992), + [sym_comment] = ACTIONS(56), + }, + [3488] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7517), + }, + [3489] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7519), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3490] = { + [sym__concat] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(3047), + [anon_sym_PIPE_AMP] = ACTIONS(2000), + [anon_sym_AMP_AMP] = ACTIONS(2000), + [anon_sym_PIPE_PIPE] = ACTIONS(2000), + [anon_sym_BQUOTE] = ACTIONS(2000), + [sym_comment] = ACTIONS(56), + }, + [3491] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7521), + }, + [3492] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7493), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3493] = { + [sym__concat] = ACTIONS(2156), + [anon_sym_PIPE] = ACTIONS(3051), + [anon_sym_PIPE_AMP] = ACTIONS(2156), + [anon_sym_AMP_AMP] = ACTIONS(2156), + [anon_sym_PIPE_PIPE] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2156), + [sym_comment] = ACTIONS(56), + }, + [3494] = { + [sym__concat] = ACTIONS(2358), + [anon_sym_PIPE] = ACTIONS(3053), + [anon_sym_PIPE_AMP] = ACTIONS(2358), + [anon_sym_AMP_AMP] = ACTIONS(2358), + [anon_sym_PIPE_PIPE] = ACTIONS(2358), + [anon_sym_BQUOTE] = ACTIONS(2358), + [sym_comment] = ACTIONS(56), + }, + [3495] = { + [sym__concat] = ACTIONS(5929), + [sym_variable_name] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(6710), + [anon_sym_PIPE_AMP] = ACTIONS(5929), + [anon_sym_AMP_AMP] = ACTIONS(5929), + [anon_sym_PIPE_PIPE] = ACTIONS(5929), + [sym__special_characters] = ACTIONS(6710), + [anon_sym_DQUOTE] = ACTIONS(5929), + [anon_sym_DOLLAR] = ACTIONS(6710), + [sym_raw_string] = ACTIONS(5929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5929), + [anon_sym_BQUOTE] = ACTIONS(5929), + [anon_sym_LT_LPAREN] = ACTIONS(5929), + [anon_sym_GT_LPAREN] = ACTIONS(5929), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6710), + [sym_word] = ACTIONS(5931), + }, + [3496] = { + [sym__concat] = ACTIONS(5933), + [sym_variable_name] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(6712), + [anon_sym_PIPE_AMP] = ACTIONS(5933), + [anon_sym_AMP_AMP] = ACTIONS(5933), + [anon_sym_PIPE_PIPE] = ACTIONS(5933), + [sym__special_characters] = ACTIONS(6712), + [anon_sym_DQUOTE] = ACTIONS(5933), + [anon_sym_DOLLAR] = ACTIONS(6712), + [sym_raw_string] = ACTIONS(5933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5933), + [anon_sym_BQUOTE] = ACTIONS(5933), + [anon_sym_LT_LPAREN] = ACTIONS(5933), + [anon_sym_GT_LPAREN] = ACTIONS(5933), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6712), + [sym_word] = ACTIONS(5935), + }, + [3497] = { + [sym__concat] = ACTIONS(5937), + [sym_variable_name] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(6714), + [anon_sym_PIPE_AMP] = ACTIONS(5937), + [anon_sym_AMP_AMP] = ACTIONS(5937), + [anon_sym_PIPE_PIPE] = ACTIONS(5937), + [sym__special_characters] = ACTIONS(6714), + [anon_sym_DQUOTE] = ACTIONS(5937), + [anon_sym_DOLLAR] = ACTIONS(6714), + [sym_raw_string] = ACTIONS(5937), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5937), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5937), + [anon_sym_BQUOTE] = ACTIONS(5937), + [anon_sym_LT_LPAREN] = ACTIONS(5937), + [anon_sym_GT_LPAREN] = ACTIONS(5937), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6714), + [sym_word] = ACTIONS(5939), + }, + [3498] = { + [sym__concat] = ACTIONS(5941), + [sym_variable_name] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_PIPE_AMP] = ACTIONS(5941), + [anon_sym_AMP_AMP] = ACTIONS(5941), + [anon_sym_PIPE_PIPE] = ACTIONS(5941), + [sym__special_characters] = ACTIONS(6716), + [anon_sym_DQUOTE] = ACTIONS(5941), + [anon_sym_DOLLAR] = ACTIONS(6716), + [sym_raw_string] = ACTIONS(5941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5941), + [anon_sym_BQUOTE] = ACTIONS(5941), + [anon_sym_LT_LPAREN] = ACTIONS(5941), + [anon_sym_GT_LPAREN] = ACTIONS(5941), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6716), + [sym_word] = ACTIONS(5943), + }, + [3499] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7523), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3500] = { + [sym__concat] = ACTIONS(5947), + [sym_variable_name] = ACTIONS(5947), + [anon_sym_PIPE] = ACTIONS(6720), + [anon_sym_PIPE_AMP] = ACTIONS(5947), + [anon_sym_AMP_AMP] = ACTIONS(5947), + [anon_sym_PIPE_PIPE] = ACTIONS(5947), + [sym__special_characters] = ACTIONS(6720), + [anon_sym_DQUOTE] = ACTIONS(5947), + [anon_sym_DOLLAR] = ACTIONS(6720), + [sym_raw_string] = ACTIONS(5947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5947), + [anon_sym_BQUOTE] = ACTIONS(5947), + [anon_sym_LT_LPAREN] = ACTIONS(5947), + [anon_sym_GT_LPAREN] = ACTIONS(5947), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6720), + [sym_word] = ACTIONS(5949), + }, + [3501] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7525), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3502] = { + [sym__concat] = ACTIONS(5953), + [sym_variable_name] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(6724), + [anon_sym_PIPE_AMP] = ACTIONS(5953), + [anon_sym_AMP_AMP] = ACTIONS(5953), + [anon_sym_PIPE_PIPE] = ACTIONS(5953), + [sym__special_characters] = ACTIONS(6724), + [anon_sym_DQUOTE] = ACTIONS(5953), + [anon_sym_DOLLAR] = ACTIONS(6724), + [sym_raw_string] = ACTIONS(5953), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5953), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5953), + [anon_sym_BQUOTE] = ACTIONS(5953), + [anon_sym_LT_LPAREN] = ACTIONS(5953), + [anon_sym_GT_LPAREN] = ACTIONS(5953), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6724), + [sym_word] = ACTIONS(5955), + }, + [3503] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7527), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3504] = { + [sym__concat] = ACTIONS(5959), + [sym_variable_name] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(6728), + [anon_sym_PIPE_AMP] = ACTIONS(5959), + [anon_sym_AMP_AMP] = ACTIONS(5959), + [anon_sym_PIPE_PIPE] = ACTIONS(5959), + [sym__special_characters] = ACTIONS(6728), + [anon_sym_DQUOTE] = ACTIONS(5959), + [anon_sym_DOLLAR] = ACTIONS(6728), + [sym_raw_string] = ACTIONS(5959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5959), + [anon_sym_BQUOTE] = ACTIONS(5959), + [anon_sym_LT_LPAREN] = ACTIONS(5959), + [anon_sym_GT_LPAREN] = ACTIONS(5959), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6728), + [sym_word] = ACTIONS(5961), + }, + [3505] = { + [sym__concat] = ACTIONS(5963), + [sym_variable_name] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(6730), + [anon_sym_PIPE_AMP] = ACTIONS(5963), + [anon_sym_AMP_AMP] = ACTIONS(5963), + [anon_sym_PIPE_PIPE] = ACTIONS(5963), + [sym__special_characters] = ACTIONS(6730), + [anon_sym_DQUOTE] = ACTIONS(5963), + [anon_sym_DOLLAR] = ACTIONS(6730), + [sym_raw_string] = ACTIONS(5963), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5963), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5963), + [anon_sym_BQUOTE] = ACTIONS(5963), + [anon_sym_LT_LPAREN] = ACTIONS(5963), + [anon_sym_GT_LPAREN] = ACTIONS(5963), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6730), + [sym_word] = ACTIONS(5965), + }, + [3506] = { + [sym__concat] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(6710), + [anon_sym_PIPE_AMP] = ACTIONS(5929), + [anon_sym_AMP_AMP] = ACTIONS(5929), + [anon_sym_PIPE_PIPE] = ACTIONS(5929), + [sym__special_characters] = ACTIONS(6710), + [anon_sym_DQUOTE] = ACTIONS(5929), + [anon_sym_DOLLAR] = ACTIONS(6710), + [sym_raw_string] = ACTIONS(5929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5929), + [anon_sym_BQUOTE] = ACTIONS(5929), + [anon_sym_LT_LPAREN] = ACTIONS(5929), + [anon_sym_GT_LPAREN] = ACTIONS(5929), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6710), + [sym_word] = ACTIONS(5931), + }, + [3507] = { + [sym__concat] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(6712), + [anon_sym_PIPE_AMP] = ACTIONS(5933), + [anon_sym_AMP_AMP] = ACTIONS(5933), + [anon_sym_PIPE_PIPE] = ACTIONS(5933), + [sym__special_characters] = ACTIONS(6712), + [anon_sym_DQUOTE] = ACTIONS(5933), + [anon_sym_DOLLAR] = ACTIONS(6712), + [sym_raw_string] = ACTIONS(5933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5933), + [anon_sym_BQUOTE] = ACTIONS(5933), + [anon_sym_LT_LPAREN] = ACTIONS(5933), + [anon_sym_GT_LPAREN] = ACTIONS(5933), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6712), + [sym_word] = ACTIONS(5935), + }, + [3508] = { + [sym__concat] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(6714), + [anon_sym_PIPE_AMP] = ACTIONS(5937), + [anon_sym_AMP_AMP] = ACTIONS(5937), + [anon_sym_PIPE_PIPE] = ACTIONS(5937), + [sym__special_characters] = ACTIONS(6714), + [anon_sym_DQUOTE] = ACTIONS(5937), + [anon_sym_DOLLAR] = ACTIONS(6714), + [sym_raw_string] = ACTIONS(5937), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5937), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5937), + [anon_sym_BQUOTE] = ACTIONS(5937), + [anon_sym_LT_LPAREN] = ACTIONS(5937), + [anon_sym_GT_LPAREN] = ACTIONS(5937), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6714), + [sym_word] = ACTIONS(5939), + }, + [3509] = { + [sym__concat] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_PIPE_AMP] = ACTIONS(5941), + [anon_sym_AMP_AMP] = ACTIONS(5941), + [anon_sym_PIPE_PIPE] = ACTIONS(5941), + [sym__special_characters] = ACTIONS(6716), + [anon_sym_DQUOTE] = ACTIONS(5941), + [anon_sym_DOLLAR] = ACTIONS(6716), + [sym_raw_string] = ACTIONS(5941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5941), + [anon_sym_BQUOTE] = ACTIONS(5941), + [anon_sym_LT_LPAREN] = ACTIONS(5941), + [anon_sym_GT_LPAREN] = ACTIONS(5941), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6716), + [sym_word] = ACTIONS(5943), + }, + [3510] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7529), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3511] = { + [sym__concat] = ACTIONS(5947), + [anon_sym_PIPE] = ACTIONS(6720), + [anon_sym_PIPE_AMP] = ACTIONS(5947), + [anon_sym_AMP_AMP] = ACTIONS(5947), + [anon_sym_PIPE_PIPE] = ACTIONS(5947), + [sym__special_characters] = ACTIONS(6720), + [anon_sym_DQUOTE] = ACTIONS(5947), + [anon_sym_DOLLAR] = ACTIONS(6720), + [sym_raw_string] = ACTIONS(5947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5947), + [anon_sym_BQUOTE] = ACTIONS(5947), + [anon_sym_LT_LPAREN] = ACTIONS(5947), + [anon_sym_GT_LPAREN] = ACTIONS(5947), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6720), + [sym_word] = ACTIONS(5949), + }, + [3512] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7531), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3513] = { + [sym__concat] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(6724), + [anon_sym_PIPE_AMP] = ACTIONS(5953), + [anon_sym_AMP_AMP] = ACTIONS(5953), + [anon_sym_PIPE_PIPE] = ACTIONS(5953), + [sym__special_characters] = ACTIONS(6724), + [anon_sym_DQUOTE] = ACTIONS(5953), + [anon_sym_DOLLAR] = ACTIONS(6724), + [sym_raw_string] = ACTIONS(5953), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5953), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5953), + [anon_sym_BQUOTE] = ACTIONS(5953), + [anon_sym_LT_LPAREN] = ACTIONS(5953), + [anon_sym_GT_LPAREN] = ACTIONS(5953), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6724), + [sym_word] = ACTIONS(5955), + }, + [3514] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7533), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3515] = { + [sym__concat] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(6728), + [anon_sym_PIPE_AMP] = ACTIONS(5959), + [anon_sym_AMP_AMP] = ACTIONS(5959), + [anon_sym_PIPE_PIPE] = ACTIONS(5959), + [sym__special_characters] = ACTIONS(6728), + [anon_sym_DQUOTE] = ACTIONS(5959), + [anon_sym_DOLLAR] = ACTIONS(6728), + [sym_raw_string] = ACTIONS(5959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5959), + [anon_sym_BQUOTE] = ACTIONS(5959), + [anon_sym_LT_LPAREN] = ACTIONS(5959), + [anon_sym_GT_LPAREN] = ACTIONS(5959), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6728), + [sym_word] = ACTIONS(5961), + }, + [3516] = { + [sym__concat] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(6730), + [anon_sym_PIPE_AMP] = ACTIONS(5963), + [anon_sym_AMP_AMP] = ACTIONS(5963), + [anon_sym_PIPE_PIPE] = ACTIONS(5963), + [sym__special_characters] = ACTIONS(6730), + [anon_sym_DQUOTE] = ACTIONS(5963), + [anon_sym_DOLLAR] = ACTIONS(6730), + [sym_raw_string] = ACTIONS(5963), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5963), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5963), + [anon_sym_BQUOTE] = ACTIONS(5963), + [anon_sym_LT_LPAREN] = ACTIONS(5963), + [anon_sym_GT_LPAREN] = ACTIONS(5963), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6730), + [sym_word] = ACTIONS(5965), + }, + [3517] = { + [sym_file_descriptor] = ACTIONS(6812), + [sym__concat] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(7351), + [anon_sym_PIPE_AMP] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_EQ_TILDE] = ACTIONS(7351), + [anon_sym_LT] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7351), + [anon_sym_GT_GT] = ACTIONS(6812), + [anon_sym_AMP_GT] = ACTIONS(7351), + [anon_sym_AMP_GT_GT] = ACTIONS(6812), + [anon_sym_LT_AMP] = ACTIONS(6812), + [anon_sym_GT_AMP] = ACTIONS(6812), + [anon_sym_LT_LT] = ACTIONS(7351), + [anon_sym_LT_LT_DASH] = ACTIONS(6812), + [anon_sym_LT_LT_LT] = ACTIONS(6812), + [sym__special_characters] = ACTIONS(7351), + [anon_sym_DQUOTE] = ACTIONS(6812), + [anon_sym_DOLLAR] = ACTIONS(7351), + [sym_raw_string] = ACTIONS(6812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6812), + [anon_sym_BQUOTE] = ACTIONS(6812), + [anon_sym_LT_LPAREN] = ACTIONS(6812), + [anon_sym_GT_LPAREN] = ACTIONS(6812), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6814), + }, + [3518] = { + [sym_file_descriptor] = ACTIONS(6816), + [sym__concat] = ACTIONS(6816), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_PIPE_AMP] = ACTIONS(6816), + [anon_sym_AMP_AMP] = ACTIONS(6816), + [anon_sym_PIPE_PIPE] = ACTIONS(6816), + [anon_sym_EQ_TILDE] = ACTIONS(7353), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_GT] = ACTIONS(6816), + [anon_sym_AMP_GT] = ACTIONS(7353), + [anon_sym_AMP_GT_GT] = ACTIONS(6816), + [anon_sym_LT_AMP] = ACTIONS(6816), + [anon_sym_GT_AMP] = ACTIONS(6816), + [anon_sym_LT_LT] = ACTIONS(7353), + [anon_sym_LT_LT_DASH] = ACTIONS(6816), + [anon_sym_LT_LT_LT] = ACTIONS(6816), + [sym__special_characters] = ACTIONS(7353), + [anon_sym_DQUOTE] = ACTIONS(6816), + [anon_sym_DOLLAR] = ACTIONS(7353), + [sym_raw_string] = ACTIONS(6816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6816), + [anon_sym_BQUOTE] = ACTIONS(6816), + [anon_sym_LT_LPAREN] = ACTIONS(6816), + [anon_sym_GT_LPAREN] = ACTIONS(6816), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6818), + }, + [3519] = { + [sym_file_descriptor] = ACTIONS(6820), + [sym__concat] = ACTIONS(6820), + [anon_sym_PIPE] = ACTIONS(7355), + [anon_sym_PIPE_AMP] = ACTIONS(6820), + [anon_sym_AMP_AMP] = ACTIONS(6820), + [anon_sym_PIPE_PIPE] = ACTIONS(6820), + [anon_sym_EQ_TILDE] = ACTIONS(7355), + [anon_sym_LT] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7355), + [anon_sym_GT_GT] = ACTIONS(6820), + [anon_sym_AMP_GT] = ACTIONS(7355), + [anon_sym_AMP_GT_GT] = ACTIONS(6820), + [anon_sym_LT_AMP] = ACTIONS(6820), + [anon_sym_GT_AMP] = ACTIONS(6820), + [anon_sym_LT_LT] = ACTIONS(7355), + [anon_sym_LT_LT_DASH] = ACTIONS(6820), + [anon_sym_LT_LT_LT] = ACTIONS(6820), + [sym__special_characters] = ACTIONS(7355), + [anon_sym_DQUOTE] = ACTIONS(6820), + [anon_sym_DOLLAR] = ACTIONS(7355), + [sym_raw_string] = ACTIONS(6820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6820), + [anon_sym_BQUOTE] = ACTIONS(6820), + [anon_sym_LT_LPAREN] = ACTIONS(6820), + [anon_sym_GT_LPAREN] = ACTIONS(6820), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6822), + }, + [3520] = { + [sym_file_descriptor] = ACTIONS(4728), + [sym__concat] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(5748), + [anon_sym_PIPE_AMP] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(5748), + [anon_sym_GT] = ACTIONS(5748), + [anon_sym_GT_GT] = ACTIONS(4728), + [anon_sym_AMP_GT] = ACTIONS(5748), + [anon_sym_AMP_GT_GT] = ACTIONS(4728), + [anon_sym_LT_AMP] = ACTIONS(4728), + [anon_sym_GT_AMP] = ACTIONS(4728), + [anon_sym_LT_LT] = ACTIONS(5748), + [anon_sym_LT_LT_DASH] = ACTIONS(4728), + [anon_sym_LT_LT_LT] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [sym_comment] = ACTIONS(56), + }, + [3521] = { + [sym_file_descriptor] = ACTIONS(4734), + [sym__concat] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(5750), + [anon_sym_PIPE_AMP] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [anon_sym_LT] = ACTIONS(5750), + [anon_sym_GT] = ACTIONS(5750), + [anon_sym_GT_GT] = ACTIONS(4734), + [anon_sym_AMP_GT] = ACTIONS(5750), + [anon_sym_AMP_GT_GT] = ACTIONS(4734), + [anon_sym_LT_AMP] = ACTIONS(4734), + [anon_sym_GT_AMP] = ACTIONS(4734), + [anon_sym_LT_LT] = ACTIONS(5750), + [anon_sym_LT_LT_DASH] = ACTIONS(4734), + [anon_sym_LT_LT_LT] = ACTIONS(4734), + [anon_sym_BQUOTE] = ACTIONS(4734), + [sym_comment] = ACTIONS(56), + }, + [3522] = { + [sym_file_descriptor] = ACTIONS(4797), + [sym__concat] = ACTIONS(4797), + [anon_sym_PIPE] = ACTIONS(5752), + [anon_sym_PIPE_AMP] = ACTIONS(4797), + [anon_sym_AMP_AMP] = ACTIONS(4797), + [anon_sym_PIPE_PIPE] = ACTIONS(4797), + [anon_sym_LT] = ACTIONS(5752), + [anon_sym_GT] = ACTIONS(5752), + [anon_sym_GT_GT] = ACTIONS(4797), + [anon_sym_AMP_GT] = ACTIONS(5752), + [anon_sym_AMP_GT_GT] = ACTIONS(4797), + [anon_sym_LT_AMP] = ACTIONS(4797), + [anon_sym_GT_AMP] = ACTIONS(4797), + [anon_sym_LT_LT] = ACTIONS(5752), + [anon_sym_LT_LT_DASH] = ACTIONS(4797), + [anon_sym_LT_LT_LT] = ACTIONS(4797), + [anon_sym_BQUOTE] = ACTIONS(4797), + [sym_comment] = ACTIONS(56), + }, + [3523] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7535), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3524] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7537), + [sym_comment] = ACTIONS(56), + }, + [3525] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7539), + [sym_comment] = ACTIONS(56), + }, + [3526] = { + [anon_sym_RBRACE] = ACTIONS(7539), + [sym_comment] = ACTIONS(56), + }, + [3527] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3779), + [anon_sym_RBRACE] = ACTIONS(7541), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3528] = { + [sym_file_descriptor] = ACTIONS(4809), + [sym__concat] = ACTIONS(4809), + [anon_sym_PIPE] = ACTIONS(5762), + [anon_sym_PIPE_AMP] = ACTIONS(4809), + [anon_sym_AMP_AMP] = ACTIONS(4809), + [anon_sym_PIPE_PIPE] = ACTIONS(4809), + [anon_sym_LT] = ACTIONS(5762), + [anon_sym_GT] = ACTIONS(5762), + [anon_sym_GT_GT] = ACTIONS(4809), + [anon_sym_AMP_GT] = ACTIONS(5762), + [anon_sym_AMP_GT_GT] = ACTIONS(4809), + [anon_sym_LT_AMP] = ACTIONS(4809), + [anon_sym_GT_AMP] = ACTIONS(4809), + [anon_sym_LT_LT] = ACTIONS(5762), + [anon_sym_LT_LT_DASH] = ACTIONS(4809), + [anon_sym_LT_LT_LT] = ACTIONS(4809), + [anon_sym_BQUOTE] = ACTIONS(4809), + [sym_comment] = ACTIONS(56), + }, + [3529] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3781), + [anon_sym_RBRACE] = ACTIONS(7543), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3530] = { + [sym_file_descriptor] = ACTIONS(4815), + [sym__concat] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(5766), + [anon_sym_PIPE_AMP] = ACTIONS(4815), + [anon_sym_AMP_AMP] = ACTIONS(4815), + [anon_sym_PIPE_PIPE] = ACTIONS(4815), + [anon_sym_LT] = ACTIONS(5766), + [anon_sym_GT] = ACTIONS(5766), + [anon_sym_GT_GT] = ACTIONS(4815), + [anon_sym_AMP_GT] = ACTIONS(5766), + [anon_sym_AMP_GT_GT] = ACTIONS(4815), + [anon_sym_LT_AMP] = ACTIONS(4815), + [anon_sym_GT_AMP] = ACTIONS(4815), + [anon_sym_LT_LT] = ACTIONS(5766), + [anon_sym_LT_LT_DASH] = ACTIONS(4815), + [anon_sym_LT_LT_LT] = ACTIONS(4815), + [anon_sym_BQUOTE] = ACTIONS(4815), + [sym_comment] = ACTIONS(56), + }, + [3531] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3783), + [anon_sym_RBRACE] = ACTIONS(7545), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3532] = { + [sym_file_descriptor] = ACTIONS(4821), + [sym__concat] = ACTIONS(4821), + [anon_sym_PIPE] = ACTIONS(5770), + [anon_sym_PIPE_AMP] = ACTIONS(4821), + [anon_sym_AMP_AMP] = ACTIONS(4821), + [anon_sym_PIPE_PIPE] = ACTIONS(4821), + [anon_sym_LT] = ACTIONS(5770), + [anon_sym_GT] = ACTIONS(5770), + [anon_sym_GT_GT] = ACTIONS(4821), + [anon_sym_AMP_GT] = ACTIONS(5770), + [anon_sym_AMP_GT_GT] = ACTIONS(4821), + [anon_sym_LT_AMP] = ACTIONS(4821), + [anon_sym_GT_AMP] = ACTIONS(4821), + [anon_sym_LT_LT] = ACTIONS(5770), + [anon_sym_LT_LT_DASH] = ACTIONS(4821), + [anon_sym_LT_LT_LT] = ACTIONS(4821), + [anon_sym_BQUOTE] = ACTIONS(4821), + [sym_comment] = ACTIONS(56), + }, + [3533] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7547), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3534] = { + [sym_file_descriptor] = ACTIONS(4827), + [sym__concat] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(5774), + [anon_sym_PIPE_AMP] = ACTIONS(4827), + [anon_sym_AMP_AMP] = ACTIONS(4827), + [anon_sym_PIPE_PIPE] = ACTIONS(4827), + [anon_sym_LT] = ACTIONS(5774), + [anon_sym_GT] = ACTIONS(5774), + [anon_sym_GT_GT] = ACTIONS(4827), + [anon_sym_AMP_GT] = ACTIONS(5774), + [anon_sym_AMP_GT_GT] = ACTIONS(4827), + [anon_sym_LT_AMP] = ACTIONS(4827), + [anon_sym_GT_AMP] = ACTIONS(4827), + [anon_sym_LT_LT] = ACTIONS(5774), + [anon_sym_LT_LT_DASH] = ACTIONS(4827), + [anon_sym_LT_LT_LT] = ACTIONS(4827), + [anon_sym_BQUOTE] = ACTIONS(4827), + [sym_comment] = ACTIONS(56), + }, + [3535] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7549), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3536] = { + [sym_file_descriptor] = ACTIONS(5929), + [sym__concat] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(5931), + [anon_sym_SEMI_SEMI] = ACTIONS(5931), + [anon_sym_PIPE_AMP] = ACTIONS(5931), + [anon_sym_AMP_AMP] = ACTIONS(5931), + [anon_sym_PIPE_PIPE] = ACTIONS(5931), + [anon_sym_LT] = ACTIONS(5931), + [anon_sym_GT] = ACTIONS(5931), + [anon_sym_GT_GT] = ACTIONS(5931), + [anon_sym_AMP_GT] = ACTIONS(5931), + [anon_sym_AMP_GT_GT] = ACTIONS(5931), + [anon_sym_LT_AMP] = ACTIONS(5931), + [anon_sym_GT_AMP] = ACTIONS(5931), + [anon_sym_LT_LT] = ACTIONS(5931), + [anon_sym_LT_LT_DASH] = ACTIONS(5931), + [anon_sym_LT_LT_LT] = ACTIONS(5931), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5931), + [anon_sym_LF] = ACTIONS(5931), + [anon_sym_AMP] = ACTIONS(5931), + }, + [3537] = { + [sym_file_descriptor] = ACTIONS(5933), + [sym__concat] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(5935), + [anon_sym_SEMI_SEMI] = ACTIONS(5935), + [anon_sym_PIPE_AMP] = ACTIONS(5935), + [anon_sym_AMP_AMP] = ACTIONS(5935), + [anon_sym_PIPE_PIPE] = ACTIONS(5935), + [anon_sym_LT] = ACTIONS(5935), + [anon_sym_GT] = ACTIONS(5935), + [anon_sym_GT_GT] = ACTIONS(5935), + [anon_sym_AMP_GT] = ACTIONS(5935), + [anon_sym_AMP_GT_GT] = ACTIONS(5935), + [anon_sym_LT_AMP] = ACTIONS(5935), + [anon_sym_GT_AMP] = ACTIONS(5935), + [anon_sym_LT_LT] = ACTIONS(5935), + [anon_sym_LT_LT_DASH] = ACTIONS(5935), + [anon_sym_LT_LT_LT] = ACTIONS(5935), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5935), + [anon_sym_LF] = ACTIONS(5935), + [anon_sym_AMP] = ACTIONS(5935), + }, + [3538] = { + [sym_file_descriptor] = ACTIONS(5937), + [sym__concat] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(5939), + [anon_sym_SEMI_SEMI] = ACTIONS(5939), + [anon_sym_PIPE_AMP] = ACTIONS(5939), + [anon_sym_AMP_AMP] = ACTIONS(5939), + [anon_sym_PIPE_PIPE] = ACTIONS(5939), + [anon_sym_LT] = ACTIONS(5939), + [anon_sym_GT] = ACTIONS(5939), + [anon_sym_GT_GT] = ACTIONS(5939), + [anon_sym_AMP_GT] = ACTIONS(5939), + [anon_sym_AMP_GT_GT] = ACTIONS(5939), + [anon_sym_LT_AMP] = ACTIONS(5939), + [anon_sym_GT_AMP] = ACTIONS(5939), + [anon_sym_LT_LT] = ACTIONS(5939), + [anon_sym_LT_LT_DASH] = ACTIONS(5939), + [anon_sym_LT_LT_LT] = ACTIONS(5939), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5939), + [anon_sym_LF] = ACTIONS(5939), + [anon_sym_AMP] = ACTIONS(5939), + }, + [3539] = { + [sym_file_descriptor] = ACTIONS(5941), + [sym__concat] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(5943), + [anon_sym_SEMI_SEMI] = ACTIONS(5943), + [anon_sym_PIPE_AMP] = ACTIONS(5943), + [anon_sym_AMP_AMP] = ACTIONS(5943), + [anon_sym_PIPE_PIPE] = ACTIONS(5943), + [anon_sym_LT] = ACTIONS(5943), + [anon_sym_GT] = ACTIONS(5943), + [anon_sym_GT_GT] = ACTIONS(5943), + [anon_sym_AMP_GT] = ACTIONS(5943), + [anon_sym_AMP_GT_GT] = ACTIONS(5943), + [anon_sym_LT_AMP] = ACTIONS(5943), + [anon_sym_GT_AMP] = ACTIONS(5943), + [anon_sym_LT_LT] = ACTIONS(5943), + [anon_sym_LT_LT_DASH] = ACTIONS(5943), + [anon_sym_LT_LT_LT] = ACTIONS(5943), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5943), + [anon_sym_LF] = ACTIONS(5943), + [anon_sym_AMP] = ACTIONS(5943), + }, + [3540] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7551), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3541] = { + [sym_file_descriptor] = ACTIONS(5947), + [sym__concat] = ACTIONS(5947), + [anon_sym_PIPE] = ACTIONS(5949), + [anon_sym_SEMI_SEMI] = ACTIONS(5949), + [anon_sym_PIPE_AMP] = ACTIONS(5949), + [anon_sym_AMP_AMP] = ACTIONS(5949), + [anon_sym_PIPE_PIPE] = ACTIONS(5949), + [anon_sym_LT] = ACTIONS(5949), + [anon_sym_GT] = ACTIONS(5949), + [anon_sym_GT_GT] = ACTIONS(5949), + [anon_sym_AMP_GT] = ACTIONS(5949), + [anon_sym_AMP_GT_GT] = ACTIONS(5949), + [anon_sym_LT_AMP] = ACTIONS(5949), + [anon_sym_GT_AMP] = ACTIONS(5949), + [anon_sym_LT_LT] = ACTIONS(5949), + [anon_sym_LT_LT_DASH] = ACTIONS(5949), + [anon_sym_LT_LT_LT] = ACTIONS(5949), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5949), + [anon_sym_LF] = ACTIONS(5949), + [anon_sym_AMP] = ACTIONS(5949), + }, + [3542] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7553), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3543] = { + [sym_file_descriptor] = ACTIONS(5953), + [sym__concat] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(5955), + [anon_sym_SEMI_SEMI] = ACTIONS(5955), + [anon_sym_PIPE_AMP] = ACTIONS(5955), + [anon_sym_AMP_AMP] = ACTIONS(5955), + [anon_sym_PIPE_PIPE] = ACTIONS(5955), + [anon_sym_LT] = ACTIONS(5955), + [anon_sym_GT] = ACTIONS(5955), + [anon_sym_GT_GT] = ACTIONS(5955), + [anon_sym_AMP_GT] = ACTIONS(5955), + [anon_sym_AMP_GT_GT] = ACTIONS(5955), + [anon_sym_LT_AMP] = ACTIONS(5955), + [anon_sym_GT_AMP] = ACTIONS(5955), + [anon_sym_LT_LT] = ACTIONS(5955), + [anon_sym_LT_LT_DASH] = ACTIONS(5955), + [anon_sym_LT_LT_LT] = ACTIONS(5955), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5955), + [anon_sym_LF] = ACTIONS(5955), + [anon_sym_AMP] = ACTIONS(5955), + }, + [3544] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7555), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3545] = { + [sym_file_descriptor] = ACTIONS(5959), + [sym__concat] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_SEMI_SEMI] = ACTIONS(5961), + [anon_sym_PIPE_AMP] = ACTIONS(5961), + [anon_sym_AMP_AMP] = ACTIONS(5961), + [anon_sym_PIPE_PIPE] = ACTIONS(5961), + [anon_sym_LT] = ACTIONS(5961), + [anon_sym_GT] = ACTIONS(5961), + [anon_sym_GT_GT] = ACTIONS(5961), + [anon_sym_AMP_GT] = ACTIONS(5961), + [anon_sym_AMP_GT_GT] = ACTIONS(5961), + [anon_sym_LT_AMP] = ACTIONS(5961), + [anon_sym_GT_AMP] = ACTIONS(5961), + [anon_sym_LT_LT] = ACTIONS(5961), + [anon_sym_LT_LT_DASH] = ACTIONS(5961), + [anon_sym_LT_LT_LT] = ACTIONS(5961), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5961), + [anon_sym_LF] = ACTIONS(5961), + [anon_sym_AMP] = ACTIONS(5961), + }, + [3546] = { + [sym_file_descriptor] = ACTIONS(5963), + [sym__concat] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(5965), + [anon_sym_SEMI_SEMI] = ACTIONS(5965), + [anon_sym_PIPE_AMP] = ACTIONS(5965), + [anon_sym_AMP_AMP] = ACTIONS(5965), + [anon_sym_PIPE_PIPE] = ACTIONS(5965), + [anon_sym_LT] = ACTIONS(5965), + [anon_sym_GT] = ACTIONS(5965), + [anon_sym_GT_GT] = ACTIONS(5965), + [anon_sym_AMP_GT] = ACTIONS(5965), + [anon_sym_AMP_GT_GT] = ACTIONS(5965), + [anon_sym_LT_AMP] = ACTIONS(5965), + [anon_sym_GT_AMP] = ACTIONS(5965), + [anon_sym_LT_LT] = ACTIONS(5965), + [anon_sym_LT_LT_DASH] = ACTIONS(5965), + [anon_sym_LT_LT_LT] = ACTIONS(5965), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5965), + [anon_sym_LF] = ACTIONS(5965), + [anon_sym_AMP] = ACTIONS(5965), + }, + [3547] = { + [sym__heredoc_middle] = ACTIONS(4728), + [sym__heredoc_end] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(5748), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4728), + [sym_comment] = ACTIONS(56), + }, + [3548] = { + [sym__heredoc_middle] = ACTIONS(4734), + [sym__heredoc_end] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(5750), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4734), + [sym_comment] = ACTIONS(56), + }, + [3549] = { + [sym__heredoc_middle] = ACTIONS(4797), + [sym__heredoc_end] = ACTIONS(4797), + [anon_sym_DOLLAR] = ACTIONS(5752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4797), + [sym_comment] = ACTIONS(56), + }, + [3550] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7557), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3551] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7559), + [sym_comment] = ACTIONS(56), + }, + [3552] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7561), + [sym_comment] = ACTIONS(56), + }, + [3553] = { + [anon_sym_RBRACE] = ACTIONS(7561), + [sym_comment] = ACTIONS(56), + }, + [3554] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3793), + [anon_sym_RBRACE] = ACTIONS(7563), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3555] = { + [sym__heredoc_middle] = ACTIONS(4809), + [sym__heredoc_end] = ACTIONS(4809), + [anon_sym_DOLLAR] = ACTIONS(5762), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4809), + [sym_comment] = ACTIONS(56), + }, + [3556] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3795), + [anon_sym_RBRACE] = ACTIONS(7565), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3557] = { + [sym__heredoc_middle] = ACTIONS(4815), + [sym__heredoc_end] = ACTIONS(4815), + [anon_sym_DOLLAR] = ACTIONS(5766), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4815), + [sym_comment] = ACTIONS(56), + }, + [3558] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3797), + [anon_sym_RBRACE] = ACTIONS(7567), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3559] = { + [sym__heredoc_middle] = ACTIONS(4821), + [sym__heredoc_end] = ACTIONS(4821), + [anon_sym_DOLLAR] = ACTIONS(5770), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4821), + [sym_comment] = ACTIONS(56), + }, + [3560] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7569), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3561] = { + [sym__heredoc_middle] = ACTIONS(4827), + [sym__heredoc_end] = ACTIONS(4827), + [anon_sym_DOLLAR] = ACTIONS(5774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4827), + [sym_comment] = ACTIONS(56), + }, + [3562] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7571), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3563] = { + [sym__concat] = ACTIONS(6812), + [anon_sym_RBRACK] = ACTIONS(6812), + [sym_comment] = ACTIONS(56), + }, + [3564] = { + [sym__concat] = ACTIONS(6816), + [anon_sym_RBRACK] = ACTIONS(6816), + [sym_comment] = ACTIONS(56), + }, + [3565] = { + [sym__concat] = ACTIONS(6820), + [anon_sym_RBRACK] = ACTIONS(6820), + [sym_comment] = ACTIONS(56), + }, + [3566] = { + [sym__concat] = ACTIONS(5929), + [anon_sym_RPAREN] = ACTIONS(5929), + [sym__special_characters] = ACTIONS(6710), + [anon_sym_DQUOTE] = ACTIONS(5929), + [anon_sym_DOLLAR] = ACTIONS(6710), + [sym_raw_string] = ACTIONS(5929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5929), + [anon_sym_BQUOTE] = ACTIONS(5929), + [anon_sym_LT_LPAREN] = ACTIONS(5929), + [anon_sym_GT_LPAREN] = ACTIONS(5929), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6710), + }, + [3567] = { + [sym__concat] = ACTIONS(5933), + [anon_sym_RPAREN] = ACTIONS(5933), + [sym__special_characters] = ACTIONS(6712), + [anon_sym_DQUOTE] = ACTIONS(5933), + [anon_sym_DOLLAR] = ACTIONS(6712), + [sym_raw_string] = ACTIONS(5933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5933), + [anon_sym_BQUOTE] = ACTIONS(5933), + [anon_sym_LT_LPAREN] = ACTIONS(5933), + [anon_sym_GT_LPAREN] = ACTIONS(5933), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6712), + }, + [3568] = { + [sym__concat] = ACTIONS(5937), + [anon_sym_RPAREN] = ACTIONS(5937), + [sym__special_characters] = ACTIONS(6714), + [anon_sym_DQUOTE] = ACTIONS(5937), + [anon_sym_DOLLAR] = ACTIONS(6714), + [sym_raw_string] = ACTIONS(5937), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5937), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5937), + [anon_sym_BQUOTE] = ACTIONS(5937), + [anon_sym_LT_LPAREN] = ACTIONS(5937), + [anon_sym_GT_LPAREN] = ACTIONS(5937), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6714), + }, + [3569] = { + [sym__concat] = ACTIONS(5941), + [anon_sym_RPAREN] = ACTIONS(5941), + [sym__special_characters] = ACTIONS(6716), + [anon_sym_DQUOTE] = ACTIONS(5941), + [anon_sym_DOLLAR] = ACTIONS(6716), + [sym_raw_string] = ACTIONS(5941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5941), + [anon_sym_BQUOTE] = ACTIONS(5941), + [anon_sym_LT_LPAREN] = ACTIONS(5941), + [anon_sym_GT_LPAREN] = ACTIONS(5941), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6716), + }, + [3570] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7573), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3571] = { + [sym__concat] = ACTIONS(5947), + [anon_sym_RPAREN] = ACTIONS(5947), + [sym__special_characters] = ACTIONS(6720), + [anon_sym_DQUOTE] = ACTIONS(5947), + [anon_sym_DOLLAR] = ACTIONS(6720), + [sym_raw_string] = ACTIONS(5947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5947), + [anon_sym_BQUOTE] = ACTIONS(5947), + [anon_sym_LT_LPAREN] = ACTIONS(5947), + [anon_sym_GT_LPAREN] = ACTIONS(5947), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6720), + }, + [3572] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7575), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3573] = { + [sym__concat] = ACTIONS(5953), + [anon_sym_RPAREN] = ACTIONS(5953), + [sym__special_characters] = ACTIONS(6724), + [anon_sym_DQUOTE] = ACTIONS(5953), + [anon_sym_DOLLAR] = ACTIONS(6724), + [sym_raw_string] = ACTIONS(5953), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5953), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5953), + [anon_sym_BQUOTE] = ACTIONS(5953), + [anon_sym_LT_LPAREN] = ACTIONS(5953), + [anon_sym_GT_LPAREN] = ACTIONS(5953), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6724), + }, + [3574] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7577), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3575] = { + [sym__concat] = ACTIONS(5959), + [anon_sym_RPAREN] = ACTIONS(5959), + [sym__special_characters] = ACTIONS(6728), + [anon_sym_DQUOTE] = ACTIONS(5959), + [anon_sym_DOLLAR] = ACTIONS(6728), + [sym_raw_string] = ACTIONS(5959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5959), + [anon_sym_BQUOTE] = ACTIONS(5959), + [anon_sym_LT_LPAREN] = ACTIONS(5959), + [anon_sym_GT_LPAREN] = ACTIONS(5959), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6728), + }, + [3576] = { + [sym__concat] = ACTIONS(5963), + [anon_sym_RPAREN] = ACTIONS(5963), + [sym__special_characters] = ACTIONS(6730), + [anon_sym_DQUOTE] = ACTIONS(5963), + [anon_sym_DOLLAR] = ACTIONS(6730), + [sym_raw_string] = ACTIONS(5963), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5963), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5963), + [anon_sym_BQUOTE] = ACTIONS(5963), + [anon_sym_LT_LPAREN] = ACTIONS(5963), + [anon_sym_GT_LPAREN] = ACTIONS(5963), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6730), + }, + [3577] = { + [sym_file_descriptor] = ACTIONS(6812), + [sym__concat] = ACTIONS(6812), + [sym_variable_name] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_SEMI_SEMI] = ACTIONS(6814), + [anon_sym_PIPE_AMP] = ACTIONS(6814), + [anon_sym_AMP_AMP] = ACTIONS(6814), + [anon_sym_PIPE_PIPE] = ACTIONS(6814), + [anon_sym_LT] = ACTIONS(6814), + [anon_sym_GT] = ACTIONS(6814), + [anon_sym_GT_GT] = ACTIONS(6814), + [anon_sym_AMP_GT] = ACTIONS(6814), + [anon_sym_AMP_GT_GT] = ACTIONS(6814), + [anon_sym_LT_AMP] = ACTIONS(6814), + [anon_sym_GT_AMP] = ACTIONS(6814), + [sym__special_characters] = ACTIONS(6814), + [anon_sym_DQUOTE] = ACTIONS(6814), + [anon_sym_DOLLAR] = ACTIONS(6814), + [sym_raw_string] = ACTIONS(6814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6814), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6814), + [anon_sym_BQUOTE] = ACTIONS(6814), + [anon_sym_LT_LPAREN] = ACTIONS(6814), + [anon_sym_GT_LPAREN] = ACTIONS(6814), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6814), + [anon_sym_SEMI] = ACTIONS(6814), + [anon_sym_LF] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6814), + }, + [3578] = { + [sym_file_descriptor] = ACTIONS(6816), + [sym__concat] = ACTIONS(6816), + [sym_variable_name] = ACTIONS(6816), + [anon_sym_PIPE] = ACTIONS(6818), + [anon_sym_SEMI_SEMI] = ACTIONS(6818), + [anon_sym_PIPE_AMP] = ACTIONS(6818), + [anon_sym_AMP_AMP] = ACTIONS(6818), + [anon_sym_PIPE_PIPE] = ACTIONS(6818), + [anon_sym_LT] = ACTIONS(6818), + [anon_sym_GT] = ACTIONS(6818), + [anon_sym_GT_GT] = ACTIONS(6818), + [anon_sym_AMP_GT] = ACTIONS(6818), + [anon_sym_AMP_GT_GT] = ACTIONS(6818), + [anon_sym_LT_AMP] = ACTIONS(6818), + [anon_sym_GT_AMP] = ACTIONS(6818), + [sym__special_characters] = ACTIONS(6818), + [anon_sym_DQUOTE] = ACTIONS(6818), + [anon_sym_DOLLAR] = ACTIONS(6818), + [sym_raw_string] = ACTIONS(6818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6818), + [anon_sym_BQUOTE] = ACTIONS(6818), + [anon_sym_LT_LPAREN] = ACTIONS(6818), + [anon_sym_GT_LPAREN] = ACTIONS(6818), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6818), + [anon_sym_SEMI] = ACTIONS(6818), + [anon_sym_LF] = ACTIONS(6818), + [anon_sym_AMP] = ACTIONS(6818), + }, + [3579] = { + [sym_file_descriptor] = ACTIONS(6820), + [sym__concat] = ACTIONS(6820), + [sym_variable_name] = ACTIONS(6820), + [anon_sym_PIPE] = ACTIONS(6822), + [anon_sym_SEMI_SEMI] = ACTIONS(6822), + [anon_sym_PIPE_AMP] = ACTIONS(6822), + [anon_sym_AMP_AMP] = ACTIONS(6822), + [anon_sym_PIPE_PIPE] = ACTIONS(6822), + [anon_sym_LT] = ACTIONS(6822), + [anon_sym_GT] = ACTIONS(6822), + [anon_sym_GT_GT] = ACTIONS(6822), + [anon_sym_AMP_GT] = ACTIONS(6822), + [anon_sym_AMP_GT_GT] = ACTIONS(6822), + [anon_sym_LT_AMP] = ACTIONS(6822), + [anon_sym_GT_AMP] = ACTIONS(6822), + [sym__special_characters] = ACTIONS(6822), + [anon_sym_DQUOTE] = ACTIONS(6822), + [anon_sym_DOLLAR] = ACTIONS(6822), + [sym_raw_string] = ACTIONS(6822), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6822), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6822), + [anon_sym_BQUOTE] = ACTIONS(6822), + [anon_sym_LT_LPAREN] = ACTIONS(6822), + [anon_sym_GT_LPAREN] = ACTIONS(6822), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6822), + [anon_sym_SEMI] = ACTIONS(6822), + [anon_sym_LF] = ACTIONS(6822), + [anon_sym_AMP] = ACTIONS(6822), + }, + [3580] = { + [sym__concat] = ACTIONS(5929), + [anon_sym_SEMI_SEMI] = ACTIONS(5931), + [sym__special_characters] = ACTIONS(5931), + [anon_sym_DQUOTE] = ACTIONS(5931), + [anon_sym_DOLLAR] = ACTIONS(5931), + [sym_raw_string] = ACTIONS(5931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5931), + [anon_sym_BQUOTE] = ACTIONS(5931), + [anon_sym_LT_LPAREN] = ACTIONS(5931), + [anon_sym_GT_LPAREN] = ACTIONS(5931), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5931), + [anon_sym_SEMI] = ACTIONS(5931), + [anon_sym_LF] = ACTIONS(5931), + [anon_sym_AMP] = ACTIONS(5931), + }, + [3581] = { + [sym__concat] = ACTIONS(5933), + [anon_sym_SEMI_SEMI] = ACTIONS(5935), + [sym__special_characters] = ACTIONS(5935), + [anon_sym_DQUOTE] = ACTIONS(5935), + [anon_sym_DOLLAR] = ACTIONS(5935), + [sym_raw_string] = ACTIONS(5935), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5935), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5935), + [anon_sym_BQUOTE] = ACTIONS(5935), + [anon_sym_LT_LPAREN] = ACTIONS(5935), + [anon_sym_GT_LPAREN] = ACTIONS(5935), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5935), + [anon_sym_SEMI] = ACTIONS(5935), + [anon_sym_LF] = ACTIONS(5935), + [anon_sym_AMP] = ACTIONS(5935), + }, + [3582] = { + [sym__concat] = ACTIONS(5937), + [anon_sym_SEMI_SEMI] = ACTIONS(5939), + [sym__special_characters] = ACTIONS(5939), + [anon_sym_DQUOTE] = ACTIONS(5939), + [anon_sym_DOLLAR] = ACTIONS(5939), + [sym_raw_string] = ACTIONS(5939), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5939), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5939), + [anon_sym_BQUOTE] = ACTIONS(5939), + [anon_sym_LT_LPAREN] = ACTIONS(5939), + [anon_sym_GT_LPAREN] = ACTIONS(5939), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5939), + [anon_sym_SEMI] = ACTIONS(5939), + [anon_sym_LF] = ACTIONS(5939), + [anon_sym_AMP] = ACTIONS(5939), + }, + [3583] = { + [sym__concat] = ACTIONS(5941), + [anon_sym_SEMI_SEMI] = ACTIONS(5943), + [sym__special_characters] = ACTIONS(5943), + [anon_sym_DQUOTE] = ACTIONS(5943), + [anon_sym_DOLLAR] = ACTIONS(5943), + [sym_raw_string] = ACTIONS(5943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5943), + [anon_sym_BQUOTE] = ACTIONS(5943), + [anon_sym_LT_LPAREN] = ACTIONS(5943), + [anon_sym_GT_LPAREN] = ACTIONS(5943), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5943), + [anon_sym_SEMI] = ACTIONS(5943), + [anon_sym_LF] = ACTIONS(5943), + [anon_sym_AMP] = ACTIONS(5943), + }, + [3584] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7579), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3585] = { + [sym__concat] = ACTIONS(5947), + [anon_sym_SEMI_SEMI] = ACTIONS(5949), + [sym__special_characters] = ACTIONS(5949), + [anon_sym_DQUOTE] = ACTIONS(5949), + [anon_sym_DOLLAR] = ACTIONS(5949), + [sym_raw_string] = ACTIONS(5949), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5949), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5949), + [anon_sym_BQUOTE] = ACTIONS(5949), + [anon_sym_LT_LPAREN] = ACTIONS(5949), + [anon_sym_GT_LPAREN] = ACTIONS(5949), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5949), + [anon_sym_SEMI] = ACTIONS(5949), + [anon_sym_LF] = ACTIONS(5949), + [anon_sym_AMP] = ACTIONS(5949), + }, + [3586] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7581), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3587] = { + [sym__concat] = ACTIONS(5953), + [anon_sym_SEMI_SEMI] = ACTIONS(5955), + [sym__special_characters] = ACTIONS(5955), + [anon_sym_DQUOTE] = ACTIONS(5955), + [anon_sym_DOLLAR] = ACTIONS(5955), + [sym_raw_string] = ACTIONS(5955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5955), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5955), + [anon_sym_BQUOTE] = ACTIONS(5955), + [anon_sym_LT_LPAREN] = ACTIONS(5955), + [anon_sym_GT_LPAREN] = ACTIONS(5955), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5955), + [anon_sym_SEMI] = ACTIONS(5955), + [anon_sym_LF] = ACTIONS(5955), + [anon_sym_AMP] = ACTIONS(5955), + }, + [3588] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7583), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3589] = { + [sym__concat] = ACTIONS(5959), + [anon_sym_SEMI_SEMI] = ACTIONS(5961), + [sym__special_characters] = ACTIONS(5961), + [anon_sym_DQUOTE] = ACTIONS(5961), + [anon_sym_DOLLAR] = ACTIONS(5961), + [sym_raw_string] = ACTIONS(5961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5961), + [anon_sym_BQUOTE] = ACTIONS(5961), + [anon_sym_LT_LPAREN] = ACTIONS(5961), + [anon_sym_GT_LPAREN] = ACTIONS(5961), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5961), + [anon_sym_SEMI] = ACTIONS(5961), + [anon_sym_LF] = ACTIONS(5961), + [anon_sym_AMP] = ACTIONS(5961), + }, + [3590] = { + [sym__concat] = ACTIONS(5963), + [anon_sym_SEMI_SEMI] = ACTIONS(5965), + [sym__special_characters] = ACTIONS(5965), + [anon_sym_DQUOTE] = ACTIONS(5965), + [anon_sym_DOLLAR] = ACTIONS(5965), + [sym_raw_string] = ACTIONS(5965), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5965), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5965), + [anon_sym_BQUOTE] = ACTIONS(5965), + [anon_sym_LT_LPAREN] = ACTIONS(5965), + [anon_sym_GT_LPAREN] = ACTIONS(5965), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5965), + [anon_sym_SEMI] = ACTIONS(5965), + [anon_sym_LF] = ACTIONS(5965), + [anon_sym_AMP] = ACTIONS(5965), + }, + [3591] = { + [anon_sym_esac] = ACTIONS(7585), + [sym__special_characters] = ACTIONS(7587), + [anon_sym_DQUOTE] = ACTIONS(7589), + [anon_sym_DOLLAR] = ACTIONS(7587), + [sym_raw_string] = ACTIONS(7589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7589), + [anon_sym_BQUOTE] = ACTIONS(7589), + [anon_sym_LT_LPAREN] = ACTIONS(7589), + [anon_sym_GT_LPAREN] = ACTIONS(7589), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7591), + }, + [3592] = { + [anon_sym_esac] = ACTIONS(7593), + [sym__special_characters] = ACTIONS(7595), + [anon_sym_DQUOTE] = ACTIONS(7597), + [anon_sym_DOLLAR] = ACTIONS(7595), + [sym_raw_string] = ACTIONS(7597), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7597), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7597), + [anon_sym_BQUOTE] = ACTIONS(7597), + [anon_sym_LT_LPAREN] = ACTIONS(7597), + [anon_sym_GT_LPAREN] = ACTIONS(7597), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7599), + }, + [3593] = { + [sym__concat] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4728), + [anon_sym_RPAREN] = ACTIONS(4728), + [sym_comment] = ACTIONS(56), + }, + [3594] = { + [sym__concat] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(4734), + [anon_sym_RPAREN] = ACTIONS(4734), + [sym_comment] = ACTIONS(56), + }, + [3595] = { + [sym__concat] = ACTIONS(4797), + [anon_sym_PIPE] = ACTIONS(4797), + [anon_sym_RPAREN] = ACTIONS(4797), + [sym_comment] = ACTIONS(56), + }, + [3596] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7601), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3597] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7603), + [sym_comment] = ACTIONS(56), + }, + [3598] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7605), + [sym_comment] = ACTIONS(56), + }, + [3599] = { + [anon_sym_RBRACE] = ACTIONS(7605), + [sym_comment] = ACTIONS(56), + }, + [3600] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3810), + [anon_sym_RBRACE] = ACTIONS(7607), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3601] = { + [sym__concat] = ACTIONS(4809), + [anon_sym_PIPE] = ACTIONS(4809), + [anon_sym_RPAREN] = ACTIONS(4809), + [sym_comment] = ACTIONS(56), + }, + [3602] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3812), + [anon_sym_RBRACE] = ACTIONS(7609), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3603] = { + [sym__concat] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(4815), + [anon_sym_RPAREN] = ACTIONS(4815), + [sym_comment] = ACTIONS(56), + }, + [3604] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3814), + [anon_sym_RBRACE] = ACTIONS(7611), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3605] = { + [sym__concat] = ACTIONS(4821), + [anon_sym_PIPE] = ACTIONS(4821), + [anon_sym_RPAREN] = ACTIONS(4821), + [sym_comment] = ACTIONS(56), + }, + [3606] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7613), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3607] = { + [sym__concat] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(4827), + [anon_sym_RPAREN] = ACTIONS(4827), + [sym_comment] = ACTIONS(56), + }, + [3608] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7615), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3609] = { + [sym__special_characters] = ACTIONS(6481), + [anon_sym_DQUOTE] = ACTIONS(6483), + [anon_sym_DOLLAR] = ACTIONS(6481), + [sym_raw_string] = ACTIONS(6483), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6483), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6483), + [anon_sym_BQUOTE] = ACTIONS(6483), + [anon_sym_LT_LPAREN] = ACTIONS(6483), + [anon_sym_GT_LPAREN] = ACTIONS(6483), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6481), + }, + [3610] = { + [sym__terminated_statement] = STATE(25), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(26), + [sym_variable_assignment] = STATE(28), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(3818), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_SEMI_SEMI] = ACTIONS(7617), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [3611] = { + [sym__terminated_statement] = STATE(25), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(26), + [sym_variable_assignment] = STATE(28), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(3819), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_SEMI_SEMI] = ACTIONS(7617), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [3612] = { + [sym__special_characters] = ACTIONS(6499), + [anon_sym_DQUOTE] = ACTIONS(6501), + [anon_sym_DOLLAR] = ACTIONS(6499), + [sym_raw_string] = ACTIONS(6501), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6501), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6501), + [anon_sym_BQUOTE] = ACTIONS(6501), + [anon_sym_LT_LPAREN] = ACTIONS(6501), + [anon_sym_GT_LPAREN] = ACTIONS(6501), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6499), + }, + [3613] = { + [sym__terminated_statement] = STATE(25), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(26), + [sym_variable_assignment] = STATE(28), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(3818), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_SEMI_SEMI] = ACTIONS(7619), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [3614] = { + [sym__terminated_statement] = STATE(25), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(26), + [sym_variable_assignment] = STATE(28), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(3821), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_SEMI_SEMI] = ACTIONS(7619), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [3615] = { + [sym__concat] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4730), + [anon_sym_SEMI_SEMI] = ACTIONS(4730), + [anon_sym_PIPE_AMP] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_LF] = ACTIONS(4730), + [anon_sym_AMP] = ACTIONS(4730), + }, + [3616] = { + [sym__concat] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(4736), + [anon_sym_SEMI_SEMI] = ACTIONS(4736), + [anon_sym_PIPE_AMP] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_LF] = ACTIONS(4736), + [anon_sym_AMP] = ACTIONS(4736), + }, + [3617] = { + [sym__concat] = ACTIONS(4797), + [anon_sym_PIPE] = ACTIONS(4799), + [anon_sym_SEMI_SEMI] = ACTIONS(4799), + [anon_sym_PIPE_AMP] = ACTIONS(4799), + [anon_sym_AMP_AMP] = ACTIONS(4799), + [anon_sym_PIPE_PIPE] = ACTIONS(4799), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4799), + [anon_sym_LF] = ACTIONS(4799), + [anon_sym_AMP] = ACTIONS(4799), + }, + [3618] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7621), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3619] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7623), + [sym_comment] = ACTIONS(56), + }, + [3620] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7625), + [sym_comment] = ACTIONS(56), + }, + [3621] = { + [anon_sym_RBRACE] = ACTIONS(7625), + [sym_comment] = ACTIONS(56), + }, + [3622] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3826), + [anon_sym_RBRACE] = ACTIONS(7627), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3623] = { + [sym__concat] = ACTIONS(4809), + [anon_sym_PIPE] = ACTIONS(4811), + [anon_sym_SEMI_SEMI] = ACTIONS(4811), + [anon_sym_PIPE_AMP] = ACTIONS(4811), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym_LF] = ACTIONS(4811), + [anon_sym_AMP] = ACTIONS(4811), + }, + [3624] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3828), + [anon_sym_RBRACE] = ACTIONS(7629), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3625] = { + [sym__concat] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(4817), + [anon_sym_SEMI_SEMI] = ACTIONS(4817), + [anon_sym_PIPE_AMP] = ACTIONS(4817), + [anon_sym_AMP_AMP] = ACTIONS(4817), + [anon_sym_PIPE_PIPE] = ACTIONS(4817), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4817), + [anon_sym_LF] = ACTIONS(4817), + [anon_sym_AMP] = ACTIONS(4817), + }, + [3626] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3830), + [anon_sym_RBRACE] = ACTIONS(7631), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3627] = { + [sym__concat] = ACTIONS(4821), + [anon_sym_PIPE] = ACTIONS(4823), + [anon_sym_SEMI_SEMI] = ACTIONS(4823), + [anon_sym_PIPE_AMP] = ACTIONS(4823), + [anon_sym_AMP_AMP] = ACTIONS(4823), + [anon_sym_PIPE_PIPE] = ACTIONS(4823), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4823), + [anon_sym_LF] = ACTIONS(4823), + [anon_sym_AMP] = ACTIONS(4823), + }, + [3628] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7633), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3629] = { + [sym__concat] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_SEMI_SEMI] = ACTIONS(4829), + [anon_sym_PIPE_AMP] = ACTIONS(4829), + [anon_sym_AMP_AMP] = ACTIONS(4829), + [anon_sym_PIPE_PIPE] = ACTIONS(4829), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4829), + [anon_sym_LF] = ACTIONS(4829), + [anon_sym_AMP] = ACTIONS(4829), + }, + [3630] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7635), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3631] = { + [sym_file_descriptor] = ACTIONS(5929), + [sym__concat] = ACTIONS(5929), + [sym_variable_name] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(5931), + [anon_sym_RPAREN] = ACTIONS(5931), + [anon_sym_SEMI_SEMI] = ACTIONS(5931), + [anon_sym_PIPE_AMP] = ACTIONS(5931), + [anon_sym_AMP_AMP] = ACTIONS(5931), + [anon_sym_PIPE_PIPE] = ACTIONS(5931), + [anon_sym_LT] = ACTIONS(5931), + [anon_sym_GT] = ACTIONS(5931), + [anon_sym_GT_GT] = ACTIONS(5931), + [anon_sym_AMP_GT] = ACTIONS(5931), + [anon_sym_AMP_GT_GT] = ACTIONS(5931), + [anon_sym_LT_AMP] = ACTIONS(5931), + [anon_sym_GT_AMP] = ACTIONS(5931), + [sym__special_characters] = ACTIONS(5931), + [anon_sym_DQUOTE] = ACTIONS(5931), + [anon_sym_DOLLAR] = ACTIONS(5931), + [sym_raw_string] = ACTIONS(5931), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5931), + [anon_sym_BQUOTE] = ACTIONS(5931), + [anon_sym_LT_LPAREN] = ACTIONS(5931), + [anon_sym_GT_LPAREN] = ACTIONS(5931), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5931), + [anon_sym_SEMI] = ACTIONS(5931), + [anon_sym_LF] = ACTIONS(5931), + [anon_sym_AMP] = ACTIONS(5931), + }, + [3632] = { + [sym_file_descriptor] = ACTIONS(5933), + [sym__concat] = ACTIONS(5933), + [sym_variable_name] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(5935), + [anon_sym_RPAREN] = ACTIONS(5935), + [anon_sym_SEMI_SEMI] = ACTIONS(5935), + [anon_sym_PIPE_AMP] = ACTIONS(5935), + [anon_sym_AMP_AMP] = ACTIONS(5935), + [anon_sym_PIPE_PIPE] = ACTIONS(5935), + [anon_sym_LT] = ACTIONS(5935), + [anon_sym_GT] = ACTIONS(5935), + [anon_sym_GT_GT] = ACTIONS(5935), + [anon_sym_AMP_GT] = ACTIONS(5935), + [anon_sym_AMP_GT_GT] = ACTIONS(5935), + [anon_sym_LT_AMP] = ACTIONS(5935), + [anon_sym_GT_AMP] = ACTIONS(5935), + [sym__special_characters] = ACTIONS(5935), + [anon_sym_DQUOTE] = ACTIONS(5935), + [anon_sym_DOLLAR] = ACTIONS(5935), + [sym_raw_string] = ACTIONS(5935), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5935), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5935), + [anon_sym_BQUOTE] = ACTIONS(5935), + [anon_sym_LT_LPAREN] = ACTIONS(5935), + [anon_sym_GT_LPAREN] = ACTIONS(5935), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5935), + [anon_sym_SEMI] = ACTIONS(5935), + [anon_sym_LF] = ACTIONS(5935), + [anon_sym_AMP] = ACTIONS(5935), + }, + [3633] = { + [sym_file_descriptor] = ACTIONS(5937), + [sym__concat] = ACTIONS(5937), + [sym_variable_name] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(5939), + [anon_sym_RPAREN] = ACTIONS(5939), + [anon_sym_SEMI_SEMI] = ACTIONS(5939), + [anon_sym_PIPE_AMP] = ACTIONS(5939), + [anon_sym_AMP_AMP] = ACTIONS(5939), + [anon_sym_PIPE_PIPE] = ACTIONS(5939), + [anon_sym_LT] = ACTIONS(5939), + [anon_sym_GT] = ACTIONS(5939), + [anon_sym_GT_GT] = ACTIONS(5939), + [anon_sym_AMP_GT] = ACTIONS(5939), + [anon_sym_AMP_GT_GT] = ACTIONS(5939), + [anon_sym_LT_AMP] = ACTIONS(5939), + [anon_sym_GT_AMP] = ACTIONS(5939), + [sym__special_characters] = ACTIONS(5939), + [anon_sym_DQUOTE] = ACTIONS(5939), + [anon_sym_DOLLAR] = ACTIONS(5939), + [sym_raw_string] = ACTIONS(5939), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5939), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5939), + [anon_sym_BQUOTE] = ACTIONS(5939), + [anon_sym_LT_LPAREN] = ACTIONS(5939), + [anon_sym_GT_LPAREN] = ACTIONS(5939), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5939), + [anon_sym_SEMI] = ACTIONS(5939), + [anon_sym_LF] = ACTIONS(5939), + [anon_sym_AMP] = ACTIONS(5939), + }, + [3634] = { + [sym_file_descriptor] = ACTIONS(5941), + [sym__concat] = ACTIONS(5941), + [sym_variable_name] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(5943), + [anon_sym_RPAREN] = ACTIONS(5943), + [anon_sym_SEMI_SEMI] = ACTIONS(5943), + [anon_sym_PIPE_AMP] = ACTIONS(5943), + [anon_sym_AMP_AMP] = ACTIONS(5943), + [anon_sym_PIPE_PIPE] = ACTIONS(5943), + [anon_sym_LT] = ACTIONS(5943), + [anon_sym_GT] = ACTIONS(5943), + [anon_sym_GT_GT] = ACTIONS(5943), + [anon_sym_AMP_GT] = ACTIONS(5943), + [anon_sym_AMP_GT_GT] = ACTIONS(5943), + [anon_sym_LT_AMP] = ACTIONS(5943), + [anon_sym_GT_AMP] = ACTIONS(5943), + [sym__special_characters] = ACTIONS(5943), + [anon_sym_DQUOTE] = ACTIONS(5943), + [anon_sym_DOLLAR] = ACTIONS(5943), + [sym_raw_string] = ACTIONS(5943), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5943), + [anon_sym_BQUOTE] = ACTIONS(5943), + [anon_sym_LT_LPAREN] = ACTIONS(5943), + [anon_sym_GT_LPAREN] = ACTIONS(5943), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5943), + [anon_sym_SEMI] = ACTIONS(5943), + [anon_sym_LF] = ACTIONS(5943), + [anon_sym_AMP] = ACTIONS(5943), + }, + [3635] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7637), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3636] = { + [sym_file_descriptor] = ACTIONS(5947), + [sym__concat] = ACTIONS(5947), + [sym_variable_name] = ACTIONS(5947), + [anon_sym_PIPE] = ACTIONS(5949), + [anon_sym_RPAREN] = ACTIONS(5949), + [anon_sym_SEMI_SEMI] = ACTIONS(5949), + [anon_sym_PIPE_AMP] = ACTIONS(5949), + [anon_sym_AMP_AMP] = ACTIONS(5949), + [anon_sym_PIPE_PIPE] = ACTIONS(5949), + [anon_sym_LT] = ACTIONS(5949), + [anon_sym_GT] = ACTIONS(5949), + [anon_sym_GT_GT] = ACTIONS(5949), + [anon_sym_AMP_GT] = ACTIONS(5949), + [anon_sym_AMP_GT_GT] = ACTIONS(5949), + [anon_sym_LT_AMP] = ACTIONS(5949), + [anon_sym_GT_AMP] = ACTIONS(5949), + [sym__special_characters] = ACTIONS(5949), + [anon_sym_DQUOTE] = ACTIONS(5949), + [anon_sym_DOLLAR] = ACTIONS(5949), + [sym_raw_string] = ACTIONS(5949), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5949), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5949), + [anon_sym_BQUOTE] = ACTIONS(5949), + [anon_sym_LT_LPAREN] = ACTIONS(5949), + [anon_sym_GT_LPAREN] = ACTIONS(5949), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5949), + [anon_sym_SEMI] = ACTIONS(5949), + [anon_sym_LF] = ACTIONS(5949), + [anon_sym_AMP] = ACTIONS(5949), + }, + [3637] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7639), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3638] = { + [sym_file_descriptor] = ACTIONS(5953), + [sym__concat] = ACTIONS(5953), + [sym_variable_name] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(5955), + [anon_sym_RPAREN] = ACTIONS(5955), + [anon_sym_SEMI_SEMI] = ACTIONS(5955), + [anon_sym_PIPE_AMP] = ACTIONS(5955), + [anon_sym_AMP_AMP] = ACTIONS(5955), + [anon_sym_PIPE_PIPE] = ACTIONS(5955), + [anon_sym_LT] = ACTIONS(5955), + [anon_sym_GT] = ACTIONS(5955), + [anon_sym_GT_GT] = ACTIONS(5955), + [anon_sym_AMP_GT] = ACTIONS(5955), + [anon_sym_AMP_GT_GT] = ACTIONS(5955), + [anon_sym_LT_AMP] = ACTIONS(5955), + [anon_sym_GT_AMP] = ACTIONS(5955), + [sym__special_characters] = ACTIONS(5955), + [anon_sym_DQUOTE] = ACTIONS(5955), + [anon_sym_DOLLAR] = ACTIONS(5955), + [sym_raw_string] = ACTIONS(5955), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5955), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5955), + [anon_sym_BQUOTE] = ACTIONS(5955), + [anon_sym_LT_LPAREN] = ACTIONS(5955), + [anon_sym_GT_LPAREN] = ACTIONS(5955), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5955), + [anon_sym_SEMI] = ACTIONS(5955), + [anon_sym_LF] = ACTIONS(5955), + [anon_sym_AMP] = ACTIONS(5955), + }, + [3639] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7641), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3640] = { + [sym_file_descriptor] = ACTIONS(5959), + [sym__concat] = ACTIONS(5959), + [sym_variable_name] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_RPAREN] = ACTIONS(5961), + [anon_sym_SEMI_SEMI] = ACTIONS(5961), + [anon_sym_PIPE_AMP] = ACTIONS(5961), + [anon_sym_AMP_AMP] = ACTIONS(5961), + [anon_sym_PIPE_PIPE] = ACTIONS(5961), + [anon_sym_LT] = ACTIONS(5961), + [anon_sym_GT] = ACTIONS(5961), + [anon_sym_GT_GT] = ACTIONS(5961), + [anon_sym_AMP_GT] = ACTIONS(5961), + [anon_sym_AMP_GT_GT] = ACTIONS(5961), + [anon_sym_LT_AMP] = ACTIONS(5961), + [anon_sym_GT_AMP] = ACTIONS(5961), + [sym__special_characters] = ACTIONS(5961), + [anon_sym_DQUOTE] = ACTIONS(5961), + [anon_sym_DOLLAR] = ACTIONS(5961), + [sym_raw_string] = ACTIONS(5961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5961), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5961), + [anon_sym_BQUOTE] = ACTIONS(5961), + [anon_sym_LT_LPAREN] = ACTIONS(5961), + [anon_sym_GT_LPAREN] = ACTIONS(5961), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5961), + [anon_sym_SEMI] = ACTIONS(5961), + [anon_sym_LF] = ACTIONS(5961), + [anon_sym_AMP] = ACTIONS(5961), + }, + [3641] = { + [sym_file_descriptor] = ACTIONS(5963), + [sym__concat] = ACTIONS(5963), + [sym_variable_name] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(5965), + [anon_sym_RPAREN] = ACTIONS(5965), + [anon_sym_SEMI_SEMI] = ACTIONS(5965), + [anon_sym_PIPE_AMP] = ACTIONS(5965), + [anon_sym_AMP_AMP] = ACTIONS(5965), + [anon_sym_PIPE_PIPE] = ACTIONS(5965), + [anon_sym_LT] = ACTIONS(5965), + [anon_sym_GT] = ACTIONS(5965), + [anon_sym_GT_GT] = ACTIONS(5965), + [anon_sym_AMP_GT] = ACTIONS(5965), + [anon_sym_AMP_GT_GT] = ACTIONS(5965), + [anon_sym_LT_AMP] = ACTIONS(5965), + [anon_sym_GT_AMP] = ACTIONS(5965), + [sym__special_characters] = ACTIONS(5965), + [anon_sym_DQUOTE] = ACTIONS(5965), + [anon_sym_DOLLAR] = ACTIONS(5965), + [sym_raw_string] = ACTIONS(5965), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5965), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5965), + [anon_sym_BQUOTE] = ACTIONS(5965), + [anon_sym_LT_LPAREN] = ACTIONS(5965), + [anon_sym_GT_LPAREN] = ACTIONS(5965), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5965), + [anon_sym_SEMI] = ACTIONS(5965), + [anon_sym_LF] = ACTIONS(5965), + [anon_sym_AMP] = ACTIONS(5965), + }, + [3642] = { + [sym__concat] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3237), + [anon_sym_RPAREN] = ACTIONS(3237), + [anon_sym_SEMI_SEMI] = ACTIONS(3237), + [anon_sym_PIPE_AMP] = ACTIONS(3237), + [anon_sym_AMP_AMP] = ACTIONS(3237), + [anon_sym_PIPE_PIPE] = ACTIONS(3237), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_LF] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), + }, + [3643] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7643), + [sym_comment] = ACTIONS(56), + }, + [3644] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7645), + [sym_comment] = ACTIONS(56), + }, + [3645] = { + [anon_sym_RBRACE] = ACTIONS(7645), + [sym_comment] = ACTIONS(56), + }, + [3646] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3839), + [anon_sym_RBRACE] = ACTIONS(7647), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3647] = { + [sym__concat] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_RPAREN] = ACTIONS(3299), + [anon_sym_SEMI_SEMI] = ACTIONS(3299), + [anon_sym_PIPE_AMP] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_LF] = ACTIONS(3299), + [anon_sym_AMP] = ACTIONS(3299), + }, + [3648] = { + [sym_concatenation] = STATE(3842), + [sym_string] = STATE(3841), + [sym_simple_expansion] = STATE(3841), + [sym_string_expansion] = STATE(3841), + [sym_expansion] = STATE(3841), + [sym_command_substitution] = STATE(3841), + [sym_process_substitution] = STATE(3841), + [anon_sym_RBRACE] = ACTIONS(7645), + [sym__special_characters] = ACTIONS(7649), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(7651), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7653), + }, + [3649] = { + [sym__concat] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(3344), + [anon_sym_RPAREN] = ACTIONS(3344), + [anon_sym_SEMI_SEMI] = ACTIONS(3344), + [anon_sym_PIPE_AMP] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_LF] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3344), + }, + [3650] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7655), + }, + [3651] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7657), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3652] = { + [sym__concat] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3352), + [anon_sym_RPAREN] = ACTIONS(3352), + [anon_sym_SEMI_SEMI] = ACTIONS(3352), + [anon_sym_PIPE_AMP] = ACTIONS(3352), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_PIPE_PIPE] = ACTIONS(3352), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3352), + [anon_sym_LF] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3352), + }, + [3653] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7659), + }, + [3654] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7661), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3655] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7663), + }, + [3656] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7645), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3657] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3849), + [anon_sym_RBRACE] = ACTIONS(7665), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3658] = { + [sym__concat] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(3364), + [anon_sym_RPAREN] = ACTIONS(3364), + [anon_sym_SEMI_SEMI] = ACTIONS(3364), + [anon_sym_PIPE_AMP] = ACTIONS(3364), + [anon_sym_AMP_AMP] = ACTIONS(3364), + [anon_sym_PIPE_PIPE] = ACTIONS(3364), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_LF] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3364), + }, + [3659] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3851), + [anon_sym_RBRACE] = ACTIONS(7667), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3660] = { + [sym__concat] = ACTIONS(6812), + [sym_variable_name] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_RPAREN] = ACTIONS(6814), + [anon_sym_SEMI_SEMI] = ACTIONS(6814), + [anon_sym_PIPE_AMP] = ACTIONS(6814), + [anon_sym_AMP_AMP] = ACTIONS(6814), + [anon_sym_PIPE_PIPE] = ACTIONS(6814), + [sym__special_characters] = ACTIONS(6814), + [anon_sym_DQUOTE] = ACTIONS(6814), + [anon_sym_DOLLAR] = ACTIONS(6814), + [sym_raw_string] = ACTIONS(6814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6814), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6814), + [anon_sym_BQUOTE] = ACTIONS(6814), + [anon_sym_LT_LPAREN] = ACTIONS(6814), + [anon_sym_GT_LPAREN] = ACTIONS(6814), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6814), + [sym_word] = ACTIONS(6814), + [anon_sym_SEMI] = ACTIONS(6814), + [anon_sym_LF] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6814), + }, + [3661] = { + [sym__concat] = ACTIONS(6816), + [sym_variable_name] = ACTIONS(6816), + [anon_sym_PIPE] = ACTIONS(6818), + [anon_sym_RPAREN] = ACTIONS(6818), + [anon_sym_SEMI_SEMI] = ACTIONS(6818), + [anon_sym_PIPE_AMP] = ACTIONS(6818), + [anon_sym_AMP_AMP] = ACTIONS(6818), + [anon_sym_PIPE_PIPE] = ACTIONS(6818), + [sym__special_characters] = ACTIONS(6818), + [anon_sym_DQUOTE] = ACTIONS(6818), + [anon_sym_DOLLAR] = ACTIONS(6818), + [sym_raw_string] = ACTIONS(6818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6818), + [anon_sym_BQUOTE] = ACTIONS(6818), + [anon_sym_LT_LPAREN] = ACTIONS(6818), + [anon_sym_GT_LPAREN] = ACTIONS(6818), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6818), + [sym_word] = ACTIONS(6818), + [anon_sym_SEMI] = ACTIONS(6818), + [anon_sym_LF] = ACTIONS(6818), + [anon_sym_AMP] = ACTIONS(6818), + }, + [3662] = { + [sym__concat] = ACTIONS(6820), + [sym_variable_name] = ACTIONS(6820), + [anon_sym_PIPE] = ACTIONS(6822), + [anon_sym_RPAREN] = ACTIONS(6822), + [anon_sym_SEMI_SEMI] = ACTIONS(6822), + [anon_sym_PIPE_AMP] = ACTIONS(6822), + [anon_sym_AMP_AMP] = ACTIONS(6822), + [anon_sym_PIPE_PIPE] = ACTIONS(6822), + [sym__special_characters] = ACTIONS(6822), + [anon_sym_DQUOTE] = ACTIONS(6822), + [anon_sym_DOLLAR] = ACTIONS(6822), + [sym_raw_string] = ACTIONS(6822), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6822), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6822), + [anon_sym_BQUOTE] = ACTIONS(6822), + [anon_sym_LT_LPAREN] = ACTIONS(6822), + [anon_sym_GT_LPAREN] = ACTIONS(6822), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6822), + [sym_word] = ACTIONS(6822), + [anon_sym_SEMI] = ACTIONS(6822), + [anon_sym_LF] = ACTIONS(6822), + [anon_sym_AMP] = ACTIONS(6822), + }, + [3663] = { + [sym__concat] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_RPAREN] = ACTIONS(6814), + [anon_sym_SEMI_SEMI] = ACTIONS(6814), + [anon_sym_PIPE_AMP] = ACTIONS(6814), + [anon_sym_AMP_AMP] = ACTIONS(6814), + [anon_sym_PIPE_PIPE] = ACTIONS(6814), + [sym__special_characters] = ACTIONS(6814), + [anon_sym_DQUOTE] = ACTIONS(6814), + [anon_sym_DOLLAR] = ACTIONS(6814), + [sym_raw_string] = ACTIONS(6814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6814), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6814), + [anon_sym_BQUOTE] = ACTIONS(6814), + [anon_sym_LT_LPAREN] = ACTIONS(6814), + [anon_sym_GT_LPAREN] = ACTIONS(6814), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6814), + [sym_word] = ACTIONS(6814), + [anon_sym_SEMI] = ACTIONS(6814), + [anon_sym_LF] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6814), + }, + [3664] = { + [sym__concat] = ACTIONS(6816), + [anon_sym_PIPE] = ACTIONS(6818), + [anon_sym_RPAREN] = ACTIONS(6818), + [anon_sym_SEMI_SEMI] = ACTIONS(6818), + [anon_sym_PIPE_AMP] = ACTIONS(6818), + [anon_sym_AMP_AMP] = ACTIONS(6818), + [anon_sym_PIPE_PIPE] = ACTIONS(6818), + [sym__special_characters] = ACTIONS(6818), + [anon_sym_DQUOTE] = ACTIONS(6818), + [anon_sym_DOLLAR] = ACTIONS(6818), + [sym_raw_string] = ACTIONS(6818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6818), + [anon_sym_BQUOTE] = ACTIONS(6818), + [anon_sym_LT_LPAREN] = ACTIONS(6818), + [anon_sym_GT_LPAREN] = ACTIONS(6818), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6818), + [sym_word] = ACTIONS(6818), + [anon_sym_SEMI] = ACTIONS(6818), + [anon_sym_LF] = ACTIONS(6818), + [anon_sym_AMP] = ACTIONS(6818), + }, + [3665] = { + [sym__concat] = ACTIONS(6820), + [anon_sym_PIPE] = ACTIONS(6822), + [anon_sym_RPAREN] = ACTIONS(6822), + [anon_sym_SEMI_SEMI] = ACTIONS(6822), + [anon_sym_PIPE_AMP] = ACTIONS(6822), + [anon_sym_AMP_AMP] = ACTIONS(6822), + [anon_sym_PIPE_PIPE] = ACTIONS(6822), + [sym__special_characters] = ACTIONS(6822), + [anon_sym_DQUOTE] = ACTIONS(6822), + [anon_sym_DOLLAR] = ACTIONS(6822), + [sym_raw_string] = ACTIONS(6822), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6822), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6822), + [anon_sym_BQUOTE] = ACTIONS(6822), + [anon_sym_LT_LPAREN] = ACTIONS(6822), + [anon_sym_GT_LPAREN] = ACTIONS(6822), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6822), + [sym_word] = ACTIONS(6822), + [anon_sym_SEMI] = ACTIONS(6822), + [anon_sym_LF] = ACTIONS(6822), + [anon_sym_AMP] = ACTIONS(6822), + }, + [3666] = { + [sym_file_descriptor] = ACTIONS(5929), + [sym__concat] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(5931), + [anon_sym_RPAREN] = ACTIONS(5931), + [anon_sym_SEMI_SEMI] = ACTIONS(5931), + [anon_sym_PIPE_AMP] = ACTIONS(5931), + [anon_sym_AMP_AMP] = ACTIONS(5931), + [anon_sym_PIPE_PIPE] = ACTIONS(5931), + [anon_sym_LT] = ACTIONS(5931), + [anon_sym_GT] = ACTIONS(5931), + [anon_sym_GT_GT] = ACTIONS(5931), + [anon_sym_AMP_GT] = ACTIONS(5931), + [anon_sym_AMP_GT_GT] = ACTIONS(5931), + [anon_sym_LT_AMP] = ACTIONS(5931), + [anon_sym_GT_AMP] = ACTIONS(5931), + [anon_sym_LT_LT] = ACTIONS(5931), + [anon_sym_LT_LT_DASH] = ACTIONS(5931), + [anon_sym_LT_LT_LT] = ACTIONS(5931), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5931), + [anon_sym_LF] = ACTIONS(5931), + [anon_sym_AMP] = ACTIONS(5931), + }, + [3667] = { + [sym_file_descriptor] = ACTIONS(5933), + [sym__concat] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(5935), + [anon_sym_RPAREN] = ACTIONS(5935), + [anon_sym_SEMI_SEMI] = ACTIONS(5935), + [anon_sym_PIPE_AMP] = ACTIONS(5935), + [anon_sym_AMP_AMP] = ACTIONS(5935), + [anon_sym_PIPE_PIPE] = ACTIONS(5935), + [anon_sym_LT] = ACTIONS(5935), + [anon_sym_GT] = ACTIONS(5935), + [anon_sym_GT_GT] = ACTIONS(5935), + [anon_sym_AMP_GT] = ACTIONS(5935), + [anon_sym_AMP_GT_GT] = ACTIONS(5935), + [anon_sym_LT_AMP] = ACTIONS(5935), + [anon_sym_GT_AMP] = ACTIONS(5935), + [anon_sym_LT_LT] = ACTIONS(5935), + [anon_sym_LT_LT_DASH] = ACTIONS(5935), + [anon_sym_LT_LT_LT] = ACTIONS(5935), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5935), + [anon_sym_LF] = ACTIONS(5935), + [anon_sym_AMP] = ACTIONS(5935), + }, + [3668] = { + [sym_file_descriptor] = ACTIONS(5937), + [sym__concat] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(5939), + [anon_sym_RPAREN] = ACTIONS(5939), + [anon_sym_SEMI_SEMI] = ACTIONS(5939), + [anon_sym_PIPE_AMP] = ACTIONS(5939), + [anon_sym_AMP_AMP] = ACTIONS(5939), + [anon_sym_PIPE_PIPE] = ACTIONS(5939), + [anon_sym_LT] = ACTIONS(5939), + [anon_sym_GT] = ACTIONS(5939), + [anon_sym_GT_GT] = ACTIONS(5939), + [anon_sym_AMP_GT] = ACTIONS(5939), + [anon_sym_AMP_GT_GT] = ACTIONS(5939), + [anon_sym_LT_AMP] = ACTIONS(5939), + [anon_sym_GT_AMP] = ACTIONS(5939), + [anon_sym_LT_LT] = ACTIONS(5939), + [anon_sym_LT_LT_DASH] = ACTIONS(5939), + [anon_sym_LT_LT_LT] = ACTIONS(5939), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5939), + [anon_sym_LF] = ACTIONS(5939), + [anon_sym_AMP] = ACTIONS(5939), + }, + [3669] = { + [sym_file_descriptor] = ACTIONS(5941), + [sym__concat] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(5943), + [anon_sym_RPAREN] = ACTIONS(5943), + [anon_sym_SEMI_SEMI] = ACTIONS(5943), + [anon_sym_PIPE_AMP] = ACTIONS(5943), + [anon_sym_AMP_AMP] = ACTIONS(5943), + [anon_sym_PIPE_PIPE] = ACTIONS(5943), + [anon_sym_LT] = ACTIONS(5943), + [anon_sym_GT] = ACTIONS(5943), + [anon_sym_GT_GT] = ACTIONS(5943), + [anon_sym_AMP_GT] = ACTIONS(5943), + [anon_sym_AMP_GT_GT] = ACTIONS(5943), + [anon_sym_LT_AMP] = ACTIONS(5943), + [anon_sym_GT_AMP] = ACTIONS(5943), + [anon_sym_LT_LT] = ACTIONS(5943), + [anon_sym_LT_LT_DASH] = ACTIONS(5943), + [anon_sym_LT_LT_LT] = ACTIONS(5943), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5943), + [anon_sym_LF] = ACTIONS(5943), + [anon_sym_AMP] = ACTIONS(5943), + }, + [3670] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7669), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3671] = { + [sym_file_descriptor] = ACTIONS(5947), + [sym__concat] = ACTIONS(5947), + [anon_sym_PIPE] = ACTIONS(5949), + [anon_sym_RPAREN] = ACTIONS(5949), + [anon_sym_SEMI_SEMI] = ACTIONS(5949), + [anon_sym_PIPE_AMP] = ACTIONS(5949), + [anon_sym_AMP_AMP] = ACTIONS(5949), + [anon_sym_PIPE_PIPE] = ACTIONS(5949), + [anon_sym_LT] = ACTIONS(5949), + [anon_sym_GT] = ACTIONS(5949), + [anon_sym_GT_GT] = ACTIONS(5949), + [anon_sym_AMP_GT] = ACTIONS(5949), + [anon_sym_AMP_GT_GT] = ACTIONS(5949), + [anon_sym_LT_AMP] = ACTIONS(5949), + [anon_sym_GT_AMP] = ACTIONS(5949), + [anon_sym_LT_LT] = ACTIONS(5949), + [anon_sym_LT_LT_DASH] = ACTIONS(5949), + [anon_sym_LT_LT_LT] = ACTIONS(5949), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5949), + [anon_sym_LF] = ACTIONS(5949), + [anon_sym_AMP] = ACTIONS(5949), + }, + [3672] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7671), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3673] = { + [sym_file_descriptor] = ACTIONS(5953), + [sym__concat] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(5955), + [anon_sym_RPAREN] = ACTIONS(5955), + [anon_sym_SEMI_SEMI] = ACTIONS(5955), + [anon_sym_PIPE_AMP] = ACTIONS(5955), + [anon_sym_AMP_AMP] = ACTIONS(5955), + [anon_sym_PIPE_PIPE] = ACTIONS(5955), + [anon_sym_LT] = ACTIONS(5955), + [anon_sym_GT] = ACTIONS(5955), + [anon_sym_GT_GT] = ACTIONS(5955), + [anon_sym_AMP_GT] = ACTIONS(5955), + [anon_sym_AMP_GT_GT] = ACTIONS(5955), + [anon_sym_LT_AMP] = ACTIONS(5955), + [anon_sym_GT_AMP] = ACTIONS(5955), + [anon_sym_LT_LT] = ACTIONS(5955), + [anon_sym_LT_LT_DASH] = ACTIONS(5955), + [anon_sym_LT_LT_LT] = ACTIONS(5955), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5955), + [anon_sym_LF] = ACTIONS(5955), + [anon_sym_AMP] = ACTIONS(5955), + }, + [3674] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7673), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3675] = { + [sym_file_descriptor] = ACTIONS(5959), + [sym__concat] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_RPAREN] = ACTIONS(5961), + [anon_sym_SEMI_SEMI] = ACTIONS(5961), + [anon_sym_PIPE_AMP] = ACTIONS(5961), + [anon_sym_AMP_AMP] = ACTIONS(5961), + [anon_sym_PIPE_PIPE] = ACTIONS(5961), + [anon_sym_LT] = ACTIONS(5961), + [anon_sym_GT] = ACTIONS(5961), + [anon_sym_GT_GT] = ACTIONS(5961), + [anon_sym_AMP_GT] = ACTIONS(5961), + [anon_sym_AMP_GT_GT] = ACTIONS(5961), + [anon_sym_LT_AMP] = ACTIONS(5961), + [anon_sym_GT_AMP] = ACTIONS(5961), + [anon_sym_LT_LT] = ACTIONS(5961), + [anon_sym_LT_LT_DASH] = ACTIONS(5961), + [anon_sym_LT_LT_LT] = ACTIONS(5961), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5961), + [anon_sym_LF] = ACTIONS(5961), + [anon_sym_AMP] = ACTIONS(5961), + }, + [3676] = { + [sym_file_descriptor] = ACTIONS(5963), + [sym__concat] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(5965), + [anon_sym_RPAREN] = ACTIONS(5965), + [anon_sym_SEMI_SEMI] = ACTIONS(5965), + [anon_sym_PIPE_AMP] = ACTIONS(5965), + [anon_sym_AMP_AMP] = ACTIONS(5965), + [anon_sym_PIPE_PIPE] = ACTIONS(5965), + [anon_sym_LT] = ACTIONS(5965), + [anon_sym_GT] = ACTIONS(5965), + [anon_sym_GT_GT] = ACTIONS(5965), + [anon_sym_AMP_GT] = ACTIONS(5965), + [anon_sym_AMP_GT_GT] = ACTIONS(5965), + [anon_sym_LT_AMP] = ACTIONS(5965), + [anon_sym_GT_AMP] = ACTIONS(5965), + [anon_sym_LT_LT] = ACTIONS(5965), + [anon_sym_LT_LT_DASH] = ACTIONS(5965), + [anon_sym_LT_LT_LT] = ACTIONS(5965), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5965), + [anon_sym_LF] = ACTIONS(5965), + [anon_sym_AMP] = ACTIONS(5965), + }, + [3677] = { + [sym__concat] = ACTIONS(5929), + [anon_sym_RBRACE] = ACTIONS(5929), + [sym_comment] = ACTIONS(56), + }, + [3678] = { + [sym__concat] = ACTIONS(5933), + [anon_sym_RBRACE] = ACTIONS(5933), + [sym_comment] = ACTIONS(56), + }, + [3679] = { + [sym__concat] = ACTIONS(5937), + [anon_sym_RBRACE] = ACTIONS(5937), + [sym_comment] = ACTIONS(56), + }, + [3680] = { + [sym__concat] = ACTIONS(5941), + [anon_sym_RBRACE] = ACTIONS(5941), + [sym_comment] = ACTIONS(56), + }, + [3681] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7675), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3682] = { + [sym__concat] = ACTIONS(5947), + [anon_sym_RBRACE] = ACTIONS(5947), + [sym_comment] = ACTIONS(56), + }, + [3683] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7677), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3684] = { + [sym__concat] = ACTIONS(5953), + [anon_sym_RBRACE] = ACTIONS(5953), + [sym_comment] = ACTIONS(56), + }, + [3685] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7679), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3686] = { + [sym__concat] = ACTIONS(5959), + [anon_sym_RBRACE] = ACTIONS(5959), + [sym_comment] = ACTIONS(56), + }, + [3687] = { + [sym__concat] = ACTIONS(5963), [anon_sym_RBRACE] = ACTIONS(5963), [sym_comment] = ACTIONS(56), }, - [2822] = { - [anon_sym_RBRACE] = ACTIONS(5963), + [3688] = { + [sym__concat] = ACTIONS(6812), + [anon_sym_RBRACE] = ACTIONS(6812), + [anon_sym_EQ] = ACTIONS(7351), + [sym__special_characters] = ACTIONS(6814), + [anon_sym_DQUOTE] = ACTIONS(6812), + [anon_sym_DOLLAR] = ACTIONS(7351), + [sym_raw_string] = ACTIONS(6812), + [anon_sym_POUND] = ACTIONS(6812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6812), + [anon_sym_COLON] = ACTIONS(7351), + [anon_sym_COLON_QMARK] = ACTIONS(7351), + [anon_sym_COLON_DASH] = ACTIONS(7351), + [anon_sym_PERCENT] = ACTIONS(7351), + [anon_sym_DASH] = ACTIONS(7351), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6812), + [anon_sym_BQUOTE] = ACTIONS(6812), + [anon_sym_LT_LPAREN] = ACTIONS(6812), + [anon_sym_GT_LPAREN] = ACTIONS(6812), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6814), + }, + [3689] = { + [sym__concat] = ACTIONS(6816), + [anon_sym_RBRACE] = ACTIONS(6816), + [anon_sym_EQ] = ACTIONS(7353), + [sym__special_characters] = ACTIONS(6818), + [anon_sym_DQUOTE] = ACTIONS(6816), + [anon_sym_DOLLAR] = ACTIONS(7353), + [sym_raw_string] = ACTIONS(6816), + [anon_sym_POUND] = ACTIONS(6816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6816), + [anon_sym_COLON] = ACTIONS(7353), + [anon_sym_COLON_QMARK] = ACTIONS(7353), + [anon_sym_COLON_DASH] = ACTIONS(7353), + [anon_sym_PERCENT] = ACTIONS(7353), + [anon_sym_DASH] = ACTIONS(7353), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6816), + [anon_sym_BQUOTE] = ACTIONS(6816), + [anon_sym_LT_LPAREN] = ACTIONS(6816), + [anon_sym_GT_LPAREN] = ACTIONS(6816), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6818), + }, + [3690] = { + [sym__concat] = ACTIONS(6820), + [anon_sym_RBRACE] = ACTIONS(6820), + [anon_sym_EQ] = ACTIONS(7355), + [sym__special_characters] = ACTIONS(6822), + [anon_sym_DQUOTE] = ACTIONS(6820), + [anon_sym_DOLLAR] = ACTIONS(7355), + [sym_raw_string] = ACTIONS(6820), + [anon_sym_POUND] = ACTIONS(6820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6820), + [anon_sym_COLON] = ACTIONS(7355), + [anon_sym_COLON_QMARK] = ACTIONS(7355), + [anon_sym_COLON_DASH] = ACTIONS(7355), + [anon_sym_PERCENT] = ACTIONS(7355), + [anon_sym_DASH] = ACTIONS(7355), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6820), + [anon_sym_BQUOTE] = ACTIONS(6820), + [anon_sym_LT_LPAREN] = ACTIONS(6820), + [anon_sym_GT_LPAREN] = ACTIONS(6820), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6822), + }, + [3691] = { + [sym_file_descriptor] = ACTIONS(5929), + [sym__concat] = ACTIONS(5929), + [sym_variable_name] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(6710), + [anon_sym_RPAREN] = ACTIONS(5929), + [anon_sym_PIPE_AMP] = ACTIONS(5929), + [anon_sym_AMP_AMP] = ACTIONS(5929), + [anon_sym_PIPE_PIPE] = ACTIONS(5929), + [anon_sym_LT] = ACTIONS(6710), + [anon_sym_GT] = ACTIONS(6710), + [anon_sym_GT_GT] = ACTIONS(5929), + [anon_sym_AMP_GT] = ACTIONS(6710), + [anon_sym_AMP_GT_GT] = ACTIONS(5929), + [anon_sym_LT_AMP] = ACTIONS(5929), + [anon_sym_GT_AMP] = ACTIONS(5929), + [sym__special_characters] = ACTIONS(6710), + [anon_sym_DQUOTE] = ACTIONS(5929), + [anon_sym_DOLLAR] = ACTIONS(6710), + [sym_raw_string] = ACTIONS(5929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5929), + [anon_sym_BQUOTE] = ACTIONS(5929), + [anon_sym_LT_LPAREN] = ACTIONS(5929), + [anon_sym_GT_LPAREN] = ACTIONS(5929), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6710), + }, + [3692] = { + [sym_file_descriptor] = ACTIONS(5933), + [sym__concat] = ACTIONS(5933), + [sym_variable_name] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(6712), + [anon_sym_RPAREN] = ACTIONS(5933), + [anon_sym_PIPE_AMP] = ACTIONS(5933), + [anon_sym_AMP_AMP] = ACTIONS(5933), + [anon_sym_PIPE_PIPE] = ACTIONS(5933), + [anon_sym_LT] = ACTIONS(6712), + [anon_sym_GT] = ACTIONS(6712), + [anon_sym_GT_GT] = ACTIONS(5933), + [anon_sym_AMP_GT] = ACTIONS(6712), + [anon_sym_AMP_GT_GT] = ACTIONS(5933), + [anon_sym_LT_AMP] = ACTIONS(5933), + [anon_sym_GT_AMP] = ACTIONS(5933), + [sym__special_characters] = ACTIONS(6712), + [anon_sym_DQUOTE] = ACTIONS(5933), + [anon_sym_DOLLAR] = ACTIONS(6712), + [sym_raw_string] = ACTIONS(5933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5933), + [anon_sym_BQUOTE] = ACTIONS(5933), + [anon_sym_LT_LPAREN] = ACTIONS(5933), + [anon_sym_GT_LPAREN] = ACTIONS(5933), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6712), + }, + [3693] = { + [sym_file_descriptor] = ACTIONS(5937), + [sym__concat] = ACTIONS(5937), + [sym_variable_name] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(6714), + [anon_sym_RPAREN] = ACTIONS(5937), + [anon_sym_PIPE_AMP] = ACTIONS(5937), + [anon_sym_AMP_AMP] = ACTIONS(5937), + [anon_sym_PIPE_PIPE] = ACTIONS(5937), + [anon_sym_LT] = ACTIONS(6714), + [anon_sym_GT] = ACTIONS(6714), + [anon_sym_GT_GT] = ACTIONS(5937), + [anon_sym_AMP_GT] = ACTIONS(6714), + [anon_sym_AMP_GT_GT] = ACTIONS(5937), + [anon_sym_LT_AMP] = ACTIONS(5937), + [anon_sym_GT_AMP] = ACTIONS(5937), + [sym__special_characters] = ACTIONS(6714), + [anon_sym_DQUOTE] = ACTIONS(5937), + [anon_sym_DOLLAR] = ACTIONS(6714), + [sym_raw_string] = ACTIONS(5937), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5937), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5937), + [anon_sym_BQUOTE] = ACTIONS(5937), + [anon_sym_LT_LPAREN] = ACTIONS(5937), + [anon_sym_GT_LPAREN] = ACTIONS(5937), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6714), + }, + [3694] = { + [sym_file_descriptor] = ACTIONS(5941), + [sym__concat] = ACTIONS(5941), + [sym_variable_name] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_RPAREN] = ACTIONS(5941), + [anon_sym_PIPE_AMP] = ACTIONS(5941), + [anon_sym_AMP_AMP] = ACTIONS(5941), + [anon_sym_PIPE_PIPE] = ACTIONS(5941), + [anon_sym_LT] = ACTIONS(6716), + [anon_sym_GT] = ACTIONS(6716), + [anon_sym_GT_GT] = ACTIONS(5941), + [anon_sym_AMP_GT] = ACTIONS(6716), + [anon_sym_AMP_GT_GT] = ACTIONS(5941), + [anon_sym_LT_AMP] = ACTIONS(5941), + [anon_sym_GT_AMP] = ACTIONS(5941), + [sym__special_characters] = ACTIONS(6716), + [anon_sym_DQUOTE] = ACTIONS(5941), + [anon_sym_DOLLAR] = ACTIONS(6716), + [sym_raw_string] = ACTIONS(5941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5941), + [anon_sym_BQUOTE] = ACTIONS(5941), + [anon_sym_LT_LPAREN] = ACTIONS(5941), + [anon_sym_GT_LPAREN] = ACTIONS(5941), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6716), + }, + [3695] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7681), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3696] = { + [sym_file_descriptor] = ACTIONS(5947), + [sym__concat] = ACTIONS(5947), + [sym_variable_name] = ACTIONS(5947), + [anon_sym_PIPE] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(5947), + [anon_sym_PIPE_AMP] = ACTIONS(5947), + [anon_sym_AMP_AMP] = ACTIONS(5947), + [anon_sym_PIPE_PIPE] = ACTIONS(5947), + [anon_sym_LT] = ACTIONS(6720), + [anon_sym_GT] = ACTIONS(6720), + [anon_sym_GT_GT] = ACTIONS(5947), + [anon_sym_AMP_GT] = ACTIONS(6720), + [anon_sym_AMP_GT_GT] = ACTIONS(5947), + [anon_sym_LT_AMP] = ACTIONS(5947), + [anon_sym_GT_AMP] = ACTIONS(5947), + [sym__special_characters] = ACTIONS(6720), + [anon_sym_DQUOTE] = ACTIONS(5947), + [anon_sym_DOLLAR] = ACTIONS(6720), + [sym_raw_string] = ACTIONS(5947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5947), + [anon_sym_BQUOTE] = ACTIONS(5947), + [anon_sym_LT_LPAREN] = ACTIONS(5947), + [anon_sym_GT_LPAREN] = ACTIONS(5947), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6720), + }, + [3697] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7683), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3698] = { + [sym_file_descriptor] = ACTIONS(5953), + [sym__concat] = ACTIONS(5953), + [sym_variable_name] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(6724), + [anon_sym_RPAREN] = ACTIONS(5953), + [anon_sym_PIPE_AMP] = ACTIONS(5953), + [anon_sym_AMP_AMP] = ACTIONS(5953), + [anon_sym_PIPE_PIPE] = ACTIONS(5953), + [anon_sym_LT] = ACTIONS(6724), + [anon_sym_GT] = ACTIONS(6724), + [anon_sym_GT_GT] = ACTIONS(5953), + [anon_sym_AMP_GT] = ACTIONS(6724), + [anon_sym_AMP_GT_GT] = ACTIONS(5953), + [anon_sym_LT_AMP] = ACTIONS(5953), + [anon_sym_GT_AMP] = ACTIONS(5953), + [sym__special_characters] = ACTIONS(6724), + [anon_sym_DQUOTE] = ACTIONS(5953), + [anon_sym_DOLLAR] = ACTIONS(6724), + [sym_raw_string] = ACTIONS(5953), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5953), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5953), + [anon_sym_BQUOTE] = ACTIONS(5953), + [anon_sym_LT_LPAREN] = ACTIONS(5953), + [anon_sym_GT_LPAREN] = ACTIONS(5953), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6724), + }, + [3699] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7685), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3700] = { + [sym_file_descriptor] = ACTIONS(5959), + [sym__concat] = ACTIONS(5959), + [sym_variable_name] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(6728), + [anon_sym_RPAREN] = ACTIONS(5959), + [anon_sym_PIPE_AMP] = ACTIONS(5959), + [anon_sym_AMP_AMP] = ACTIONS(5959), + [anon_sym_PIPE_PIPE] = ACTIONS(5959), + [anon_sym_LT] = ACTIONS(6728), + [anon_sym_GT] = ACTIONS(6728), + [anon_sym_GT_GT] = ACTIONS(5959), + [anon_sym_AMP_GT] = ACTIONS(6728), + [anon_sym_AMP_GT_GT] = ACTIONS(5959), + [anon_sym_LT_AMP] = ACTIONS(5959), + [anon_sym_GT_AMP] = ACTIONS(5959), + [sym__special_characters] = ACTIONS(6728), + [anon_sym_DQUOTE] = ACTIONS(5959), + [anon_sym_DOLLAR] = ACTIONS(6728), + [sym_raw_string] = ACTIONS(5959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5959), + [anon_sym_BQUOTE] = ACTIONS(5959), + [anon_sym_LT_LPAREN] = ACTIONS(5959), + [anon_sym_GT_LPAREN] = ACTIONS(5959), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6728), + }, + [3701] = { + [sym_file_descriptor] = ACTIONS(5963), + [sym__concat] = ACTIONS(5963), + [sym_variable_name] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(6730), + [anon_sym_RPAREN] = ACTIONS(5963), + [anon_sym_PIPE_AMP] = ACTIONS(5963), + [anon_sym_AMP_AMP] = ACTIONS(5963), + [anon_sym_PIPE_PIPE] = ACTIONS(5963), + [anon_sym_LT] = ACTIONS(6730), + [anon_sym_GT] = ACTIONS(6730), + [anon_sym_GT_GT] = ACTIONS(5963), + [anon_sym_AMP_GT] = ACTIONS(6730), + [anon_sym_AMP_GT_GT] = ACTIONS(5963), + [anon_sym_LT_AMP] = ACTIONS(5963), + [anon_sym_GT_AMP] = ACTIONS(5963), + [sym__special_characters] = ACTIONS(6730), + [anon_sym_DQUOTE] = ACTIONS(5963), + [anon_sym_DOLLAR] = ACTIONS(6730), + [sym_raw_string] = ACTIONS(5963), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5963), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5963), + [anon_sym_BQUOTE] = ACTIONS(5963), + [anon_sym_LT_LPAREN] = ACTIONS(5963), + [anon_sym_GT_LPAREN] = ACTIONS(5963), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6730), + }, + [3702] = { + [anon_sym_PIPE] = ACTIONS(6004), + [anon_sym_RPAREN] = ACTIONS(4237), + [anon_sym_PIPE_AMP] = ACTIONS(4237), + [anon_sym_AMP_AMP] = ACTIONS(4237), + [anon_sym_PIPE_PIPE] = ACTIONS(4237), + [anon_sym_BQUOTE] = ACTIONS(4237), [sym_comment] = ACTIONS(56), }, - [2823] = { - [sym__concat] = ACTIONS(4269), - [anon_sym_PIPE] = ACTIONS(4271), - [anon_sym_RPAREN] = ACTIONS(4271), - [anon_sym_SEMI_SEMI] = ACTIONS(4271), - [anon_sym_PIPE_AMP] = ACTIONS(4271), - [anon_sym_AMP_AMP] = ACTIONS(4271), - [anon_sym_PIPE_PIPE] = ACTIONS(4271), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4271), - [anon_sym_LF] = ACTIONS(4271), - [anon_sym_AMP] = ACTIONS(4271), - }, - [2824] = { - [sym__concat] = ACTIONS(4273), - [anon_sym_PIPE] = ACTIONS(4275), - [anon_sym_RPAREN] = ACTIONS(4275), - [anon_sym_SEMI_SEMI] = ACTIONS(4275), - [anon_sym_PIPE_AMP] = ACTIONS(4275), - [anon_sym_AMP_AMP] = ACTIONS(4275), - [anon_sym_PIPE_PIPE] = ACTIONS(4275), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(4275), - [anon_sym_LF] = ACTIONS(4275), - [anon_sym_AMP] = ACTIONS(4275), - }, - [2825] = { - [sym__concat] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4942), - [anon_sym_RPAREN] = ACTIONS(4214), - [anon_sym_PIPE_AMP] = ACTIONS(4214), - [anon_sym_AMP_AMP] = ACTIONS(4214), - [anon_sym_PIPE_PIPE] = ACTIONS(4214), + [3703] = { + [anon_sym_PIPE] = ACTIONS(7687), + [anon_sym_RPAREN] = ACTIONS(7689), + [anon_sym_PIPE_AMP] = ACTIONS(7689), + [anon_sym_AMP_AMP] = ACTIONS(7689), + [anon_sym_PIPE_PIPE] = ACTIONS(7689), + [anon_sym_BQUOTE] = ACTIONS(7689), [sym_comment] = ACTIONS(56), }, - [2826] = { - [sym__concat] = ACTIONS(4220), - [anon_sym_PIPE] = ACTIONS(4944), - [anon_sym_RPAREN] = ACTIONS(4220), - [anon_sym_PIPE_AMP] = ACTIONS(4220), - [anon_sym_AMP_AMP] = ACTIONS(4220), - [anon_sym_PIPE_PIPE] = ACTIONS(4220), + [3704] = { + [anon_sym_PIPE] = ACTIONS(7691), + [anon_sym_RPAREN] = ACTIONS(7693), + [anon_sym_PIPE_AMP] = ACTIONS(7693), + [anon_sym_AMP_AMP] = ACTIONS(7693), + [anon_sym_PIPE_PIPE] = ACTIONS(7693), + [anon_sym_BQUOTE] = ACTIONS(7693), [sym_comment] = ACTIONS(56), }, - [2827] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5965), + [3705] = { + [sym__concat] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_RPAREN] = ACTIONS(3235), + [anon_sym_PIPE_AMP] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), [sym_comment] = ACTIONS(56), }, - [2828] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5967), + [3706] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7695), [sym_comment] = ACTIONS(56), }, - [2829] = { - [anon_sym_RBRACE] = ACTIONS(5967), + [3707] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7697), [sym_comment] = ACTIONS(56), }, - [2830] = { - [sym__concat] = ACTIONS(4269), - [anon_sym_PIPE] = ACTIONS(4950), - [anon_sym_RPAREN] = ACTIONS(4269), - [anon_sym_PIPE_AMP] = ACTIONS(4269), - [anon_sym_AMP_AMP] = ACTIONS(4269), - [anon_sym_PIPE_PIPE] = ACTIONS(4269), + [3708] = { + [anon_sym_RBRACE] = ACTIONS(7697), [sym_comment] = ACTIONS(56), }, - [2831] = { - [sym__concat] = ACTIONS(4273), - [anon_sym_PIPE] = ACTIONS(4952), - [anon_sym_RPAREN] = ACTIONS(4273), - [anon_sym_PIPE_AMP] = ACTIONS(4273), - [anon_sym_AMP_AMP] = ACTIONS(4273), - [anon_sym_PIPE_PIPE] = ACTIONS(4273), + [3709] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3864), + [anon_sym_RBRACE] = ACTIONS(7699), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3710] = { + [sym__concat] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(4548), + [anon_sym_RPAREN] = ACTIONS(3297), + [anon_sym_PIPE_AMP] = ACTIONS(3297), + [anon_sym_AMP_AMP] = ACTIONS(3297), + [anon_sym_PIPE_PIPE] = ACTIONS(3297), [sym_comment] = ACTIONS(56), }, - [2832] = { - [sym__concat] = ACTIONS(4214), - [anon_sym_PIPE] = ACTIONS(4942), - [anon_sym_PIPE_AMP] = ACTIONS(4214), - [anon_sym_AMP_AMP] = ACTIONS(4214), - [anon_sym_PIPE_PIPE] = ACTIONS(4214), - [anon_sym_BQUOTE] = ACTIONS(4214), + [3711] = { + [sym_concatenation] = STATE(3867), + [sym_string] = STATE(3866), + [sym_simple_expansion] = STATE(3866), + [sym_string_expansion] = STATE(3866), + [sym_expansion] = STATE(3866), + [sym_command_substitution] = STATE(3866), + [sym_process_substitution] = STATE(3866), + [anon_sym_RBRACE] = ACTIONS(7697), + [sym__special_characters] = ACTIONS(7701), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(7703), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7705), + }, + [3712] = { + [sym__concat] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(4556), + [anon_sym_RPAREN] = ACTIONS(3342), + [anon_sym_PIPE_AMP] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), [sym_comment] = ACTIONS(56), }, - [2833] = { - [sym__concat] = ACTIONS(4220), - [anon_sym_PIPE] = ACTIONS(4944), - [anon_sym_PIPE_AMP] = ACTIONS(4220), - [anon_sym_AMP_AMP] = ACTIONS(4220), - [anon_sym_PIPE_PIPE] = ACTIONS(4220), - [anon_sym_BQUOTE] = ACTIONS(4220), + [3713] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7707), + }, + [3714] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7709), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3715] = { + [sym__concat] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_RPAREN] = ACTIONS(3350), + [anon_sym_PIPE_AMP] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), [sym_comment] = ACTIONS(56), }, - [2834] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5969), + [3716] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7711), + }, + [3717] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7713), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3718] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7715), + }, + [3719] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7697), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3720] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3874), + [anon_sym_RBRACE] = ACTIONS(7717), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3721] = { + [sym__concat] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_RPAREN] = ACTIONS(3362), + [anon_sym_PIPE_AMP] = ACTIONS(3362), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_PIPE_PIPE] = ACTIONS(3362), [sym_comment] = ACTIONS(56), }, - [2835] = { - [aux_sym_concatenation_repeat1] = STATE(1469), - [sym__concat] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(5971), + [3722] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3876), + [anon_sym_RBRACE] = ACTIONS(7719), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3723] = { + [sym__concat] = ACTIONS(6812), + [sym_variable_name] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(7351), + [anon_sym_RPAREN] = ACTIONS(6812), + [anon_sym_PIPE_AMP] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [sym__special_characters] = ACTIONS(7351), + [anon_sym_DQUOTE] = ACTIONS(6812), + [anon_sym_DOLLAR] = ACTIONS(7351), + [sym_raw_string] = ACTIONS(6812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6812), + [anon_sym_BQUOTE] = ACTIONS(6812), + [anon_sym_LT_LPAREN] = ACTIONS(6812), + [anon_sym_GT_LPAREN] = ACTIONS(6812), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7351), + [sym_word] = ACTIONS(6814), + }, + [3724] = { + [sym__concat] = ACTIONS(6816), + [sym_variable_name] = ACTIONS(6816), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_RPAREN] = ACTIONS(6816), + [anon_sym_PIPE_AMP] = ACTIONS(6816), + [anon_sym_AMP_AMP] = ACTIONS(6816), + [anon_sym_PIPE_PIPE] = ACTIONS(6816), + [sym__special_characters] = ACTIONS(7353), + [anon_sym_DQUOTE] = ACTIONS(6816), + [anon_sym_DOLLAR] = ACTIONS(7353), + [sym_raw_string] = ACTIONS(6816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6816), + [anon_sym_BQUOTE] = ACTIONS(6816), + [anon_sym_LT_LPAREN] = ACTIONS(6816), + [anon_sym_GT_LPAREN] = ACTIONS(6816), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7353), + [sym_word] = ACTIONS(6818), + }, + [3725] = { + [sym__concat] = ACTIONS(6820), + [sym_variable_name] = ACTIONS(6820), + [anon_sym_PIPE] = ACTIONS(7355), + [anon_sym_RPAREN] = ACTIONS(6820), + [anon_sym_PIPE_AMP] = ACTIONS(6820), + [anon_sym_AMP_AMP] = ACTIONS(6820), + [anon_sym_PIPE_PIPE] = ACTIONS(6820), + [sym__special_characters] = ACTIONS(7355), + [anon_sym_DQUOTE] = ACTIONS(6820), + [anon_sym_DOLLAR] = ACTIONS(7355), + [sym_raw_string] = ACTIONS(6820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6820), + [anon_sym_BQUOTE] = ACTIONS(6820), + [anon_sym_LT_LPAREN] = ACTIONS(6820), + [anon_sym_GT_LPAREN] = ACTIONS(6820), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7355), + [sym_word] = ACTIONS(6822), + }, + [3726] = { + [sym__concat] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(7351), + [anon_sym_RPAREN] = ACTIONS(6812), + [anon_sym_PIPE_AMP] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [sym__special_characters] = ACTIONS(7351), + [anon_sym_DQUOTE] = ACTIONS(6812), + [anon_sym_DOLLAR] = ACTIONS(7351), + [sym_raw_string] = ACTIONS(6812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6812), + [anon_sym_BQUOTE] = ACTIONS(6812), + [anon_sym_LT_LPAREN] = ACTIONS(6812), + [anon_sym_GT_LPAREN] = ACTIONS(6812), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7351), + [sym_word] = ACTIONS(6814), + }, + [3727] = { + [sym__concat] = ACTIONS(6816), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_RPAREN] = ACTIONS(6816), + [anon_sym_PIPE_AMP] = ACTIONS(6816), + [anon_sym_AMP_AMP] = ACTIONS(6816), + [anon_sym_PIPE_PIPE] = ACTIONS(6816), + [sym__special_characters] = ACTIONS(7353), + [anon_sym_DQUOTE] = ACTIONS(6816), + [anon_sym_DOLLAR] = ACTIONS(7353), + [sym_raw_string] = ACTIONS(6816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6816), + [anon_sym_BQUOTE] = ACTIONS(6816), + [anon_sym_LT_LPAREN] = ACTIONS(6816), + [anon_sym_GT_LPAREN] = ACTIONS(6816), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7353), + [sym_word] = ACTIONS(6818), + }, + [3728] = { + [sym__concat] = ACTIONS(6820), + [anon_sym_PIPE] = ACTIONS(7355), + [anon_sym_RPAREN] = ACTIONS(6820), + [anon_sym_PIPE_AMP] = ACTIONS(6820), + [anon_sym_AMP_AMP] = ACTIONS(6820), + [anon_sym_PIPE_PIPE] = ACTIONS(6820), + [sym__special_characters] = ACTIONS(7355), + [anon_sym_DQUOTE] = ACTIONS(6820), + [anon_sym_DOLLAR] = ACTIONS(7355), + [sym_raw_string] = ACTIONS(6820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6820), + [anon_sym_BQUOTE] = ACTIONS(6820), + [anon_sym_LT_LPAREN] = ACTIONS(6820), + [anon_sym_GT_LPAREN] = ACTIONS(6820), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7355), + [sym_word] = ACTIONS(6822), + }, + [3729] = { + [sym_file_descriptor] = ACTIONS(5929), + [sym__concat] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(6710), + [anon_sym_RPAREN] = ACTIONS(5929), + [anon_sym_PIPE_AMP] = ACTIONS(5929), + [anon_sym_AMP_AMP] = ACTIONS(5929), + [anon_sym_PIPE_PIPE] = ACTIONS(5929), + [anon_sym_LT] = ACTIONS(6710), + [anon_sym_GT] = ACTIONS(6710), + [anon_sym_GT_GT] = ACTIONS(5929), + [anon_sym_AMP_GT] = ACTIONS(6710), + [anon_sym_AMP_GT_GT] = ACTIONS(5929), + [anon_sym_LT_AMP] = ACTIONS(5929), + [anon_sym_GT_AMP] = ACTIONS(5929), + [anon_sym_LT_LT] = ACTIONS(6710), + [anon_sym_LT_LT_DASH] = ACTIONS(5929), + [anon_sym_LT_LT_LT] = ACTIONS(5929), [sym_comment] = ACTIONS(56), }, - [2836] = { - [anon_sym_RBRACE] = ACTIONS(5971), + [3730] = { + [sym_file_descriptor] = ACTIONS(5933), + [sym__concat] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(6712), + [anon_sym_RPAREN] = ACTIONS(5933), + [anon_sym_PIPE_AMP] = ACTIONS(5933), + [anon_sym_AMP_AMP] = ACTIONS(5933), + [anon_sym_PIPE_PIPE] = ACTIONS(5933), + [anon_sym_LT] = ACTIONS(6712), + [anon_sym_GT] = ACTIONS(6712), + [anon_sym_GT_GT] = ACTIONS(5933), + [anon_sym_AMP_GT] = ACTIONS(6712), + [anon_sym_AMP_GT_GT] = ACTIONS(5933), + [anon_sym_LT_AMP] = ACTIONS(5933), + [anon_sym_GT_AMP] = ACTIONS(5933), + [anon_sym_LT_LT] = ACTIONS(6712), + [anon_sym_LT_LT_DASH] = ACTIONS(5933), + [anon_sym_LT_LT_LT] = ACTIONS(5933), [sym_comment] = ACTIONS(56), }, - [2837] = { - [sym__concat] = ACTIONS(4269), - [anon_sym_PIPE] = ACTIONS(4950), - [anon_sym_PIPE_AMP] = ACTIONS(4269), - [anon_sym_AMP_AMP] = ACTIONS(4269), - [anon_sym_PIPE_PIPE] = ACTIONS(4269), - [anon_sym_BQUOTE] = ACTIONS(4269), + [3731] = { + [sym_file_descriptor] = ACTIONS(5937), + [sym__concat] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(6714), + [anon_sym_RPAREN] = ACTIONS(5937), + [anon_sym_PIPE_AMP] = ACTIONS(5937), + [anon_sym_AMP_AMP] = ACTIONS(5937), + [anon_sym_PIPE_PIPE] = ACTIONS(5937), + [anon_sym_LT] = ACTIONS(6714), + [anon_sym_GT] = ACTIONS(6714), + [anon_sym_GT_GT] = ACTIONS(5937), + [anon_sym_AMP_GT] = ACTIONS(6714), + [anon_sym_AMP_GT_GT] = ACTIONS(5937), + [anon_sym_LT_AMP] = ACTIONS(5937), + [anon_sym_GT_AMP] = ACTIONS(5937), + [anon_sym_LT_LT] = ACTIONS(6714), + [anon_sym_LT_LT_DASH] = ACTIONS(5937), + [anon_sym_LT_LT_LT] = ACTIONS(5937), [sym_comment] = ACTIONS(56), }, - [2838] = { - [sym__concat] = ACTIONS(4273), - [anon_sym_PIPE] = ACTIONS(4952), - [anon_sym_PIPE_AMP] = ACTIONS(4273), - [anon_sym_AMP_AMP] = ACTIONS(4273), - [anon_sym_PIPE_PIPE] = ACTIONS(4273), - [anon_sym_BQUOTE] = ACTIONS(4273), + [3732] = { + [sym_file_descriptor] = ACTIONS(5941), + [sym__concat] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_RPAREN] = ACTIONS(5941), + [anon_sym_PIPE_AMP] = ACTIONS(5941), + [anon_sym_AMP_AMP] = ACTIONS(5941), + [anon_sym_PIPE_PIPE] = ACTIONS(5941), + [anon_sym_LT] = ACTIONS(6716), + [anon_sym_GT] = ACTIONS(6716), + [anon_sym_GT_GT] = ACTIONS(5941), + [anon_sym_AMP_GT] = ACTIONS(6716), + [anon_sym_AMP_GT_GT] = ACTIONS(5941), + [anon_sym_LT_AMP] = ACTIONS(5941), + [anon_sym_GT_AMP] = ACTIONS(5941), + [anon_sym_LT_LT] = ACTIONS(6716), + [anon_sym_LT_LT_DASH] = ACTIONS(5941), + [anon_sym_LT_LT_LT] = ACTIONS(5941), [sym_comment] = ACTIONS(56), }, - [2839] = { - [sym__special_characters] = ACTIONS(5881), - [anon_sym_DQUOTE] = ACTIONS(5883), - [anon_sym_DOLLAR] = ACTIONS(5881), - [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(56), - [sym_word] = ACTIONS(5881), + [3733] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7721), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), }, - [2840] = { - [sym__special_characters] = ACTIONS(5889), - [anon_sym_DQUOTE] = ACTIONS(5891), - [anon_sym_DOLLAR] = ACTIONS(5889), - [sym_raw_string] = ACTIONS(5891), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5891), - [anon_sym_BQUOTE] = ACTIONS(5891), - [anon_sym_LT_LPAREN] = ACTIONS(5891), - [anon_sym_GT_LPAREN] = ACTIONS(5891), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5889), - }, - [2841] = { - [sym__concat] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [anon_sym_SEMI_SEMI] = ACTIONS(5023), - [anon_sym_PIPE_AMP] = ACTIONS(5023), - [anon_sym_AMP_AMP] = ACTIONS(5023), - [anon_sym_PIPE_PIPE] = ACTIONS(5023), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(5023), - [anon_sym_LF] = ACTIONS(5023), - [anon_sym_AMP] = ACTIONS(5023), - }, - [2842] = { - [sym__concat] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [anon_sym_SEMI_SEMI] = ACTIONS(5027), - [anon_sym_PIPE_AMP] = ACTIONS(5027), - [anon_sym_AMP_AMP] = ACTIONS(5027), - [anon_sym_PIPE_PIPE] = ACTIONS(5027), - [sym_comment] = ACTIONS(178), - [anon_sym_SEMI] = ACTIONS(5027), - [anon_sym_LF] = ACTIONS(5027), - [anon_sym_AMP] = ACTIONS(5027), - }, - [2843] = { - [sym__concat] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5490), - [anon_sym_RPAREN] = ACTIONS(5021), - [anon_sym_PIPE_AMP] = ACTIONS(5021), - [anon_sym_AMP_AMP] = ACTIONS(5021), - [anon_sym_PIPE_PIPE] = ACTIONS(5021), + [3734] = { + [sym_file_descriptor] = ACTIONS(5947), + [sym__concat] = ACTIONS(5947), + [anon_sym_PIPE] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(5947), + [anon_sym_PIPE_AMP] = ACTIONS(5947), + [anon_sym_AMP_AMP] = ACTIONS(5947), + [anon_sym_PIPE_PIPE] = ACTIONS(5947), + [anon_sym_LT] = ACTIONS(6720), + [anon_sym_GT] = ACTIONS(6720), + [anon_sym_GT_GT] = ACTIONS(5947), + [anon_sym_AMP_GT] = ACTIONS(6720), + [anon_sym_AMP_GT_GT] = ACTIONS(5947), + [anon_sym_LT_AMP] = ACTIONS(5947), + [anon_sym_GT_AMP] = ACTIONS(5947), + [anon_sym_LT_LT] = ACTIONS(6720), + [anon_sym_LT_LT_DASH] = ACTIONS(5947), + [anon_sym_LT_LT_LT] = ACTIONS(5947), [sym_comment] = ACTIONS(56), }, - [2844] = { - [sym__concat] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5492), - [anon_sym_RPAREN] = ACTIONS(5025), - [anon_sym_PIPE_AMP] = ACTIONS(5025), - [anon_sym_AMP_AMP] = ACTIONS(5025), - [anon_sym_PIPE_PIPE] = ACTIONS(5025), + [3735] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7723), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3736] = { + [sym_file_descriptor] = ACTIONS(5953), + [sym__concat] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(6724), + [anon_sym_RPAREN] = ACTIONS(5953), + [anon_sym_PIPE_AMP] = ACTIONS(5953), + [anon_sym_AMP_AMP] = ACTIONS(5953), + [anon_sym_PIPE_PIPE] = ACTIONS(5953), + [anon_sym_LT] = ACTIONS(6724), + [anon_sym_GT] = ACTIONS(6724), + [anon_sym_GT_GT] = ACTIONS(5953), + [anon_sym_AMP_GT] = ACTIONS(6724), + [anon_sym_AMP_GT_GT] = ACTIONS(5953), + [anon_sym_LT_AMP] = ACTIONS(5953), + [anon_sym_GT_AMP] = ACTIONS(5953), + [anon_sym_LT_LT] = ACTIONS(6724), + [anon_sym_LT_LT_DASH] = ACTIONS(5953), + [anon_sym_LT_LT_LT] = ACTIONS(5953), [sym_comment] = ACTIONS(56), }, - [2845] = { - [sym__concat] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5490), - [anon_sym_PIPE_AMP] = ACTIONS(5021), - [anon_sym_AMP_AMP] = ACTIONS(5021), - [anon_sym_PIPE_PIPE] = ACTIONS(5021), - [anon_sym_BQUOTE] = ACTIONS(5021), + [3737] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7725), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3738] = { + [sym_file_descriptor] = ACTIONS(5959), + [sym__concat] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(6728), + [anon_sym_RPAREN] = ACTIONS(5959), + [anon_sym_PIPE_AMP] = ACTIONS(5959), + [anon_sym_AMP_AMP] = ACTIONS(5959), + [anon_sym_PIPE_PIPE] = ACTIONS(5959), + [anon_sym_LT] = ACTIONS(6728), + [anon_sym_GT] = ACTIONS(6728), + [anon_sym_GT_GT] = ACTIONS(5959), + [anon_sym_AMP_GT] = ACTIONS(6728), + [anon_sym_AMP_GT_GT] = ACTIONS(5959), + [anon_sym_LT_AMP] = ACTIONS(5959), + [anon_sym_GT_AMP] = ACTIONS(5959), + [anon_sym_LT_LT] = ACTIONS(6728), + [anon_sym_LT_LT_DASH] = ACTIONS(5959), + [anon_sym_LT_LT_LT] = ACTIONS(5959), [sym_comment] = ACTIONS(56), }, - [2846] = { - [sym__concat] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5492), - [anon_sym_PIPE_AMP] = ACTIONS(5025), - [anon_sym_AMP_AMP] = ACTIONS(5025), - [anon_sym_PIPE_PIPE] = ACTIONS(5025), - [anon_sym_BQUOTE] = ACTIONS(5025), + [3739] = { + [sym_file_descriptor] = ACTIONS(5963), + [sym__concat] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(6730), + [anon_sym_RPAREN] = ACTIONS(5963), + [anon_sym_PIPE_AMP] = ACTIONS(5963), + [anon_sym_AMP_AMP] = ACTIONS(5963), + [anon_sym_PIPE_PIPE] = ACTIONS(5963), + [anon_sym_LT] = ACTIONS(6730), + [anon_sym_GT] = ACTIONS(6730), + [anon_sym_GT_GT] = ACTIONS(5963), + [anon_sym_AMP_GT] = ACTIONS(6730), + [anon_sym_AMP_GT_GT] = ACTIONS(5963), + [anon_sym_LT_AMP] = ACTIONS(5963), + [anon_sym_GT_AMP] = ACTIONS(5963), + [anon_sym_LT_LT] = ACTIONS(6730), + [anon_sym_LT_LT_DASH] = ACTIONS(5963), + [anon_sym_LT_LT_LT] = ACTIONS(5963), + [sym_comment] = ACTIONS(56), + }, + [3740] = { + [sym_file_descriptor] = ACTIONS(5929), + [sym__concat] = ACTIONS(5929), + [sym_variable_name] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(6710), + [anon_sym_PIPE_AMP] = ACTIONS(5929), + [anon_sym_AMP_AMP] = ACTIONS(5929), + [anon_sym_PIPE_PIPE] = ACTIONS(5929), + [anon_sym_LT] = ACTIONS(6710), + [anon_sym_GT] = ACTIONS(6710), + [anon_sym_GT_GT] = ACTIONS(5929), + [anon_sym_AMP_GT] = ACTIONS(6710), + [anon_sym_AMP_GT_GT] = ACTIONS(5929), + [anon_sym_LT_AMP] = ACTIONS(5929), + [anon_sym_GT_AMP] = ACTIONS(5929), + [sym__special_characters] = ACTIONS(6710), + [anon_sym_DQUOTE] = ACTIONS(5929), + [anon_sym_DOLLAR] = ACTIONS(6710), + [sym_raw_string] = ACTIONS(5929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5929), + [anon_sym_BQUOTE] = ACTIONS(5929), + [anon_sym_LT_LPAREN] = ACTIONS(5929), + [anon_sym_GT_LPAREN] = ACTIONS(5929), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6710), + }, + [3741] = { + [sym_file_descriptor] = ACTIONS(5933), + [sym__concat] = ACTIONS(5933), + [sym_variable_name] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(6712), + [anon_sym_PIPE_AMP] = ACTIONS(5933), + [anon_sym_AMP_AMP] = ACTIONS(5933), + [anon_sym_PIPE_PIPE] = ACTIONS(5933), + [anon_sym_LT] = ACTIONS(6712), + [anon_sym_GT] = ACTIONS(6712), + [anon_sym_GT_GT] = ACTIONS(5933), + [anon_sym_AMP_GT] = ACTIONS(6712), + [anon_sym_AMP_GT_GT] = ACTIONS(5933), + [anon_sym_LT_AMP] = ACTIONS(5933), + [anon_sym_GT_AMP] = ACTIONS(5933), + [sym__special_characters] = ACTIONS(6712), + [anon_sym_DQUOTE] = ACTIONS(5933), + [anon_sym_DOLLAR] = ACTIONS(6712), + [sym_raw_string] = ACTIONS(5933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5933), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5933), + [anon_sym_BQUOTE] = ACTIONS(5933), + [anon_sym_LT_LPAREN] = ACTIONS(5933), + [anon_sym_GT_LPAREN] = ACTIONS(5933), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6712), + }, + [3742] = { + [sym_file_descriptor] = ACTIONS(5937), + [sym__concat] = ACTIONS(5937), + [sym_variable_name] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(6714), + [anon_sym_PIPE_AMP] = ACTIONS(5937), + [anon_sym_AMP_AMP] = ACTIONS(5937), + [anon_sym_PIPE_PIPE] = ACTIONS(5937), + [anon_sym_LT] = ACTIONS(6714), + [anon_sym_GT] = ACTIONS(6714), + [anon_sym_GT_GT] = ACTIONS(5937), + [anon_sym_AMP_GT] = ACTIONS(6714), + [anon_sym_AMP_GT_GT] = ACTIONS(5937), + [anon_sym_LT_AMP] = ACTIONS(5937), + [anon_sym_GT_AMP] = ACTIONS(5937), + [sym__special_characters] = ACTIONS(6714), + [anon_sym_DQUOTE] = ACTIONS(5937), + [anon_sym_DOLLAR] = ACTIONS(6714), + [sym_raw_string] = ACTIONS(5937), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5937), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5937), + [anon_sym_BQUOTE] = ACTIONS(5937), + [anon_sym_LT_LPAREN] = ACTIONS(5937), + [anon_sym_GT_LPAREN] = ACTIONS(5937), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6714), + }, + [3743] = { + [sym_file_descriptor] = ACTIONS(5941), + [sym__concat] = ACTIONS(5941), + [sym_variable_name] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_PIPE_AMP] = ACTIONS(5941), + [anon_sym_AMP_AMP] = ACTIONS(5941), + [anon_sym_PIPE_PIPE] = ACTIONS(5941), + [anon_sym_LT] = ACTIONS(6716), + [anon_sym_GT] = ACTIONS(6716), + [anon_sym_GT_GT] = ACTIONS(5941), + [anon_sym_AMP_GT] = ACTIONS(6716), + [anon_sym_AMP_GT_GT] = ACTIONS(5941), + [anon_sym_LT_AMP] = ACTIONS(5941), + [anon_sym_GT_AMP] = ACTIONS(5941), + [sym__special_characters] = ACTIONS(6716), + [anon_sym_DQUOTE] = ACTIONS(5941), + [anon_sym_DOLLAR] = ACTIONS(6716), + [sym_raw_string] = ACTIONS(5941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5941), + [anon_sym_BQUOTE] = ACTIONS(5941), + [anon_sym_LT_LPAREN] = ACTIONS(5941), + [anon_sym_GT_LPAREN] = ACTIONS(5941), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6716), + }, + [3744] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7727), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3745] = { + [sym_file_descriptor] = ACTIONS(5947), + [sym__concat] = ACTIONS(5947), + [sym_variable_name] = ACTIONS(5947), + [anon_sym_PIPE] = ACTIONS(6720), + [anon_sym_PIPE_AMP] = ACTIONS(5947), + [anon_sym_AMP_AMP] = ACTIONS(5947), + [anon_sym_PIPE_PIPE] = ACTIONS(5947), + [anon_sym_LT] = ACTIONS(6720), + [anon_sym_GT] = ACTIONS(6720), + [anon_sym_GT_GT] = ACTIONS(5947), + [anon_sym_AMP_GT] = ACTIONS(6720), + [anon_sym_AMP_GT_GT] = ACTIONS(5947), + [anon_sym_LT_AMP] = ACTIONS(5947), + [anon_sym_GT_AMP] = ACTIONS(5947), + [sym__special_characters] = ACTIONS(6720), + [anon_sym_DQUOTE] = ACTIONS(5947), + [anon_sym_DOLLAR] = ACTIONS(6720), + [sym_raw_string] = ACTIONS(5947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5947), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5947), + [anon_sym_BQUOTE] = ACTIONS(5947), + [anon_sym_LT_LPAREN] = ACTIONS(5947), + [anon_sym_GT_LPAREN] = ACTIONS(5947), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6720), + }, + [3746] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7729), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3747] = { + [sym_file_descriptor] = ACTIONS(5953), + [sym__concat] = ACTIONS(5953), + [sym_variable_name] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(6724), + [anon_sym_PIPE_AMP] = ACTIONS(5953), + [anon_sym_AMP_AMP] = ACTIONS(5953), + [anon_sym_PIPE_PIPE] = ACTIONS(5953), + [anon_sym_LT] = ACTIONS(6724), + [anon_sym_GT] = ACTIONS(6724), + [anon_sym_GT_GT] = ACTIONS(5953), + [anon_sym_AMP_GT] = ACTIONS(6724), + [anon_sym_AMP_GT_GT] = ACTIONS(5953), + [anon_sym_LT_AMP] = ACTIONS(5953), + [anon_sym_GT_AMP] = ACTIONS(5953), + [sym__special_characters] = ACTIONS(6724), + [anon_sym_DQUOTE] = ACTIONS(5953), + [anon_sym_DOLLAR] = ACTIONS(6724), + [sym_raw_string] = ACTIONS(5953), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5953), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5953), + [anon_sym_BQUOTE] = ACTIONS(5953), + [anon_sym_LT_LPAREN] = ACTIONS(5953), + [anon_sym_GT_LPAREN] = ACTIONS(5953), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6724), + }, + [3748] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7731), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3749] = { + [sym_file_descriptor] = ACTIONS(5959), + [sym__concat] = ACTIONS(5959), + [sym_variable_name] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(6728), + [anon_sym_PIPE_AMP] = ACTIONS(5959), + [anon_sym_AMP_AMP] = ACTIONS(5959), + [anon_sym_PIPE_PIPE] = ACTIONS(5959), + [anon_sym_LT] = ACTIONS(6728), + [anon_sym_GT] = ACTIONS(6728), + [anon_sym_GT_GT] = ACTIONS(5959), + [anon_sym_AMP_GT] = ACTIONS(6728), + [anon_sym_AMP_GT_GT] = ACTIONS(5959), + [anon_sym_LT_AMP] = ACTIONS(5959), + [anon_sym_GT_AMP] = ACTIONS(5959), + [sym__special_characters] = ACTIONS(6728), + [anon_sym_DQUOTE] = ACTIONS(5959), + [anon_sym_DOLLAR] = ACTIONS(6728), + [sym_raw_string] = ACTIONS(5959), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5959), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5959), + [anon_sym_BQUOTE] = ACTIONS(5959), + [anon_sym_LT_LPAREN] = ACTIONS(5959), + [anon_sym_GT_LPAREN] = ACTIONS(5959), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6728), + }, + [3750] = { + [sym_file_descriptor] = ACTIONS(5963), + [sym__concat] = ACTIONS(5963), + [sym_variable_name] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(6730), + [anon_sym_PIPE_AMP] = ACTIONS(5963), + [anon_sym_AMP_AMP] = ACTIONS(5963), + [anon_sym_PIPE_PIPE] = ACTIONS(5963), + [anon_sym_LT] = ACTIONS(6730), + [anon_sym_GT] = ACTIONS(6730), + [anon_sym_GT_GT] = ACTIONS(5963), + [anon_sym_AMP_GT] = ACTIONS(6730), + [anon_sym_AMP_GT_GT] = ACTIONS(5963), + [anon_sym_LT_AMP] = ACTIONS(5963), + [anon_sym_GT_AMP] = ACTIONS(5963), + [sym__special_characters] = ACTIONS(6730), + [anon_sym_DQUOTE] = ACTIONS(5963), + [anon_sym_DOLLAR] = ACTIONS(6730), + [sym_raw_string] = ACTIONS(5963), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5963), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5963), + [anon_sym_BQUOTE] = ACTIONS(5963), + [anon_sym_LT_LPAREN] = ACTIONS(5963), + [anon_sym_GT_LPAREN] = ACTIONS(5963), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6730), + }, + [3751] = { + [sym__concat] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(4540), + [anon_sym_PIPE_AMP] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_BQUOTE] = ACTIONS(3235), + [sym_comment] = ACTIONS(56), + }, + [3752] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7733), + [sym_comment] = ACTIONS(56), + }, + [3753] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7735), + [sym_comment] = ACTIONS(56), + }, + [3754] = { + [anon_sym_RBRACE] = ACTIONS(7735), + [sym_comment] = ACTIONS(56), + }, + [3755] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3886), + [anon_sym_RBRACE] = ACTIONS(7737), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3756] = { + [sym__concat] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(4548), + [anon_sym_PIPE_AMP] = ACTIONS(3297), + [anon_sym_AMP_AMP] = ACTIONS(3297), + [anon_sym_PIPE_PIPE] = ACTIONS(3297), + [anon_sym_BQUOTE] = ACTIONS(3297), + [sym_comment] = ACTIONS(56), + }, + [3757] = { + [sym_concatenation] = STATE(3889), + [sym_string] = STATE(3888), + [sym_simple_expansion] = STATE(3888), + [sym_string_expansion] = STATE(3888), + [sym_expansion] = STATE(3888), + [sym_command_substitution] = STATE(3888), + [sym_process_substitution] = STATE(3888), + [anon_sym_RBRACE] = ACTIONS(7735), + [sym__special_characters] = ACTIONS(7739), + [anon_sym_DQUOTE] = ACTIONS(1924), + [anon_sym_DOLLAR] = ACTIONS(1926), + [sym_raw_string] = ACTIONS(7741), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1932), + [anon_sym_BQUOTE] = ACTIONS(1934), + [anon_sym_LT_LPAREN] = ACTIONS(1936), + [anon_sym_GT_LPAREN] = ACTIONS(1936), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7743), + }, + [3758] = { + [sym__concat] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(4556), + [anon_sym_PIPE_AMP] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_BQUOTE] = ACTIONS(3342), + [sym_comment] = ACTIONS(56), + }, + [3759] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7745), + }, + [3760] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7747), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3761] = { + [sym__concat] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(4562), + [anon_sym_PIPE_AMP] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_BQUOTE] = ACTIONS(3350), + [sym_comment] = ACTIONS(56), + }, + [3762] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7749), + }, + [3763] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7751), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3764] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7753), + }, + [3765] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7735), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3766] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3896), + [anon_sym_RBRACE] = ACTIONS(7755), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3767] = { + [sym__concat] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(4572), + [anon_sym_PIPE_AMP] = ACTIONS(3362), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_PIPE_PIPE] = ACTIONS(3362), + [anon_sym_BQUOTE] = ACTIONS(3362), + [sym_comment] = ACTIONS(56), + }, + [3768] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3898), + [anon_sym_RBRACE] = ACTIONS(7757), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3769] = { + [sym__concat] = ACTIONS(6812), + [sym_variable_name] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(7351), + [anon_sym_PIPE_AMP] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [sym__special_characters] = ACTIONS(7351), + [anon_sym_DQUOTE] = ACTIONS(6812), + [anon_sym_DOLLAR] = ACTIONS(7351), + [sym_raw_string] = ACTIONS(6812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6812), + [anon_sym_BQUOTE] = ACTIONS(6812), + [anon_sym_LT_LPAREN] = ACTIONS(6812), + [anon_sym_GT_LPAREN] = ACTIONS(6812), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7351), + [sym_word] = ACTIONS(6814), + }, + [3770] = { + [sym__concat] = ACTIONS(6816), + [sym_variable_name] = ACTIONS(6816), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_PIPE_AMP] = ACTIONS(6816), + [anon_sym_AMP_AMP] = ACTIONS(6816), + [anon_sym_PIPE_PIPE] = ACTIONS(6816), + [sym__special_characters] = ACTIONS(7353), + [anon_sym_DQUOTE] = ACTIONS(6816), + [anon_sym_DOLLAR] = ACTIONS(7353), + [sym_raw_string] = ACTIONS(6816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6816), + [anon_sym_BQUOTE] = ACTIONS(6816), + [anon_sym_LT_LPAREN] = ACTIONS(6816), + [anon_sym_GT_LPAREN] = ACTIONS(6816), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7353), + [sym_word] = ACTIONS(6818), + }, + [3771] = { + [sym__concat] = ACTIONS(6820), + [sym_variable_name] = ACTIONS(6820), + [anon_sym_PIPE] = ACTIONS(7355), + [anon_sym_PIPE_AMP] = ACTIONS(6820), + [anon_sym_AMP_AMP] = ACTIONS(6820), + [anon_sym_PIPE_PIPE] = ACTIONS(6820), + [sym__special_characters] = ACTIONS(7355), + [anon_sym_DQUOTE] = ACTIONS(6820), + [anon_sym_DOLLAR] = ACTIONS(7355), + [sym_raw_string] = ACTIONS(6820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6820), + [anon_sym_BQUOTE] = ACTIONS(6820), + [anon_sym_LT_LPAREN] = ACTIONS(6820), + [anon_sym_GT_LPAREN] = ACTIONS(6820), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7355), + [sym_word] = ACTIONS(6822), + }, + [3772] = { + [sym__concat] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(7351), + [anon_sym_PIPE_AMP] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [sym__special_characters] = ACTIONS(7351), + [anon_sym_DQUOTE] = ACTIONS(6812), + [anon_sym_DOLLAR] = ACTIONS(7351), + [sym_raw_string] = ACTIONS(6812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6812), + [anon_sym_BQUOTE] = ACTIONS(6812), + [anon_sym_LT_LPAREN] = ACTIONS(6812), + [anon_sym_GT_LPAREN] = ACTIONS(6812), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7351), + [sym_word] = ACTIONS(6814), + }, + [3773] = { + [sym__concat] = ACTIONS(6816), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_PIPE_AMP] = ACTIONS(6816), + [anon_sym_AMP_AMP] = ACTIONS(6816), + [anon_sym_PIPE_PIPE] = ACTIONS(6816), + [sym__special_characters] = ACTIONS(7353), + [anon_sym_DQUOTE] = ACTIONS(6816), + [anon_sym_DOLLAR] = ACTIONS(7353), + [sym_raw_string] = ACTIONS(6816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6816), + [anon_sym_BQUOTE] = ACTIONS(6816), + [anon_sym_LT_LPAREN] = ACTIONS(6816), + [anon_sym_GT_LPAREN] = ACTIONS(6816), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7353), + [sym_word] = ACTIONS(6818), + }, + [3774] = { + [sym__concat] = ACTIONS(6820), + [anon_sym_PIPE] = ACTIONS(7355), + [anon_sym_PIPE_AMP] = ACTIONS(6820), + [anon_sym_AMP_AMP] = ACTIONS(6820), + [anon_sym_PIPE_PIPE] = ACTIONS(6820), + [sym__special_characters] = ACTIONS(7355), + [anon_sym_DQUOTE] = ACTIONS(6820), + [anon_sym_DOLLAR] = ACTIONS(7355), + [sym_raw_string] = ACTIONS(6820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6820), + [anon_sym_BQUOTE] = ACTIONS(6820), + [anon_sym_LT_LPAREN] = ACTIONS(6820), + [anon_sym_GT_LPAREN] = ACTIONS(6820), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7355), + [sym_word] = ACTIONS(6822), + }, + [3775] = { + [sym_file_descriptor] = ACTIONS(5929), + [sym__concat] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(6710), + [anon_sym_PIPE_AMP] = ACTIONS(5929), + [anon_sym_AMP_AMP] = ACTIONS(5929), + [anon_sym_PIPE_PIPE] = ACTIONS(5929), + [anon_sym_LT] = ACTIONS(6710), + [anon_sym_GT] = ACTIONS(6710), + [anon_sym_GT_GT] = ACTIONS(5929), + [anon_sym_AMP_GT] = ACTIONS(6710), + [anon_sym_AMP_GT_GT] = ACTIONS(5929), + [anon_sym_LT_AMP] = ACTIONS(5929), + [anon_sym_GT_AMP] = ACTIONS(5929), + [anon_sym_LT_LT] = ACTIONS(6710), + [anon_sym_LT_LT_DASH] = ACTIONS(5929), + [anon_sym_LT_LT_LT] = ACTIONS(5929), + [anon_sym_BQUOTE] = ACTIONS(5929), + [sym_comment] = ACTIONS(56), + }, + [3776] = { + [sym_file_descriptor] = ACTIONS(5933), + [sym__concat] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(6712), + [anon_sym_PIPE_AMP] = ACTIONS(5933), + [anon_sym_AMP_AMP] = ACTIONS(5933), + [anon_sym_PIPE_PIPE] = ACTIONS(5933), + [anon_sym_LT] = ACTIONS(6712), + [anon_sym_GT] = ACTIONS(6712), + [anon_sym_GT_GT] = ACTIONS(5933), + [anon_sym_AMP_GT] = ACTIONS(6712), + [anon_sym_AMP_GT_GT] = ACTIONS(5933), + [anon_sym_LT_AMP] = ACTIONS(5933), + [anon_sym_GT_AMP] = ACTIONS(5933), + [anon_sym_LT_LT] = ACTIONS(6712), + [anon_sym_LT_LT_DASH] = ACTIONS(5933), + [anon_sym_LT_LT_LT] = ACTIONS(5933), + [anon_sym_BQUOTE] = ACTIONS(5933), + [sym_comment] = ACTIONS(56), + }, + [3777] = { + [sym_file_descriptor] = ACTIONS(5937), + [sym__concat] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(6714), + [anon_sym_PIPE_AMP] = ACTIONS(5937), + [anon_sym_AMP_AMP] = ACTIONS(5937), + [anon_sym_PIPE_PIPE] = ACTIONS(5937), + [anon_sym_LT] = ACTIONS(6714), + [anon_sym_GT] = ACTIONS(6714), + [anon_sym_GT_GT] = ACTIONS(5937), + [anon_sym_AMP_GT] = ACTIONS(6714), + [anon_sym_AMP_GT_GT] = ACTIONS(5937), + [anon_sym_LT_AMP] = ACTIONS(5937), + [anon_sym_GT_AMP] = ACTIONS(5937), + [anon_sym_LT_LT] = ACTIONS(6714), + [anon_sym_LT_LT_DASH] = ACTIONS(5937), + [anon_sym_LT_LT_LT] = ACTIONS(5937), + [anon_sym_BQUOTE] = ACTIONS(5937), + [sym_comment] = ACTIONS(56), + }, + [3778] = { + [sym_file_descriptor] = ACTIONS(5941), + [sym__concat] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_PIPE_AMP] = ACTIONS(5941), + [anon_sym_AMP_AMP] = ACTIONS(5941), + [anon_sym_PIPE_PIPE] = ACTIONS(5941), + [anon_sym_LT] = ACTIONS(6716), + [anon_sym_GT] = ACTIONS(6716), + [anon_sym_GT_GT] = ACTIONS(5941), + [anon_sym_AMP_GT] = ACTIONS(6716), + [anon_sym_AMP_GT_GT] = ACTIONS(5941), + [anon_sym_LT_AMP] = ACTIONS(5941), + [anon_sym_GT_AMP] = ACTIONS(5941), + [anon_sym_LT_LT] = ACTIONS(6716), + [anon_sym_LT_LT_DASH] = ACTIONS(5941), + [anon_sym_LT_LT_LT] = ACTIONS(5941), + [anon_sym_BQUOTE] = ACTIONS(5941), + [sym_comment] = ACTIONS(56), + }, + [3779] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7759), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3780] = { + [sym_file_descriptor] = ACTIONS(5947), + [sym__concat] = ACTIONS(5947), + [anon_sym_PIPE] = ACTIONS(6720), + [anon_sym_PIPE_AMP] = ACTIONS(5947), + [anon_sym_AMP_AMP] = ACTIONS(5947), + [anon_sym_PIPE_PIPE] = ACTIONS(5947), + [anon_sym_LT] = ACTIONS(6720), + [anon_sym_GT] = ACTIONS(6720), + [anon_sym_GT_GT] = ACTIONS(5947), + [anon_sym_AMP_GT] = ACTIONS(6720), + [anon_sym_AMP_GT_GT] = ACTIONS(5947), + [anon_sym_LT_AMP] = ACTIONS(5947), + [anon_sym_GT_AMP] = ACTIONS(5947), + [anon_sym_LT_LT] = ACTIONS(6720), + [anon_sym_LT_LT_DASH] = ACTIONS(5947), + [anon_sym_LT_LT_LT] = ACTIONS(5947), + [anon_sym_BQUOTE] = ACTIONS(5947), + [sym_comment] = ACTIONS(56), + }, + [3781] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7761), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3782] = { + [sym_file_descriptor] = ACTIONS(5953), + [sym__concat] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(6724), + [anon_sym_PIPE_AMP] = ACTIONS(5953), + [anon_sym_AMP_AMP] = ACTIONS(5953), + [anon_sym_PIPE_PIPE] = ACTIONS(5953), + [anon_sym_LT] = ACTIONS(6724), + [anon_sym_GT] = ACTIONS(6724), + [anon_sym_GT_GT] = ACTIONS(5953), + [anon_sym_AMP_GT] = ACTIONS(6724), + [anon_sym_AMP_GT_GT] = ACTIONS(5953), + [anon_sym_LT_AMP] = ACTIONS(5953), + [anon_sym_GT_AMP] = ACTIONS(5953), + [anon_sym_LT_LT] = ACTIONS(6724), + [anon_sym_LT_LT_DASH] = ACTIONS(5953), + [anon_sym_LT_LT_LT] = ACTIONS(5953), + [anon_sym_BQUOTE] = ACTIONS(5953), + [sym_comment] = ACTIONS(56), + }, + [3783] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7763), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3784] = { + [sym_file_descriptor] = ACTIONS(5959), + [sym__concat] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(6728), + [anon_sym_PIPE_AMP] = ACTIONS(5959), + [anon_sym_AMP_AMP] = ACTIONS(5959), + [anon_sym_PIPE_PIPE] = ACTIONS(5959), + [anon_sym_LT] = ACTIONS(6728), + [anon_sym_GT] = ACTIONS(6728), + [anon_sym_GT_GT] = ACTIONS(5959), + [anon_sym_AMP_GT] = ACTIONS(6728), + [anon_sym_AMP_GT_GT] = ACTIONS(5959), + [anon_sym_LT_AMP] = ACTIONS(5959), + [anon_sym_GT_AMP] = ACTIONS(5959), + [anon_sym_LT_LT] = ACTIONS(6728), + [anon_sym_LT_LT_DASH] = ACTIONS(5959), + [anon_sym_LT_LT_LT] = ACTIONS(5959), + [anon_sym_BQUOTE] = ACTIONS(5959), + [sym_comment] = ACTIONS(56), + }, + [3785] = { + [sym_file_descriptor] = ACTIONS(5963), + [sym__concat] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(6730), + [anon_sym_PIPE_AMP] = ACTIONS(5963), + [anon_sym_AMP_AMP] = ACTIONS(5963), + [anon_sym_PIPE_PIPE] = ACTIONS(5963), + [anon_sym_LT] = ACTIONS(6730), + [anon_sym_GT] = ACTIONS(6730), + [anon_sym_GT_GT] = ACTIONS(5963), + [anon_sym_AMP_GT] = ACTIONS(6730), + [anon_sym_AMP_GT_GT] = ACTIONS(5963), + [anon_sym_LT_AMP] = ACTIONS(5963), + [anon_sym_GT_AMP] = ACTIONS(5963), + [anon_sym_LT_LT] = ACTIONS(6730), + [anon_sym_LT_LT_DASH] = ACTIONS(5963), + [anon_sym_LT_LT_LT] = ACTIONS(5963), + [anon_sym_BQUOTE] = ACTIONS(5963), + [sym_comment] = ACTIONS(56), + }, + [3786] = { + [sym_file_descriptor] = ACTIONS(6812), + [sym__concat] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_SEMI_SEMI] = ACTIONS(6814), + [anon_sym_PIPE_AMP] = ACTIONS(6814), + [anon_sym_AMP_AMP] = ACTIONS(6814), + [anon_sym_PIPE_PIPE] = ACTIONS(6814), + [anon_sym_LT] = ACTIONS(6814), + [anon_sym_GT] = ACTIONS(6814), + [anon_sym_GT_GT] = ACTIONS(6814), + [anon_sym_AMP_GT] = ACTIONS(6814), + [anon_sym_AMP_GT_GT] = ACTIONS(6814), + [anon_sym_LT_AMP] = ACTIONS(6814), + [anon_sym_GT_AMP] = ACTIONS(6814), + [anon_sym_LT_LT] = ACTIONS(6814), + [anon_sym_LT_LT_DASH] = ACTIONS(6814), + [anon_sym_LT_LT_LT] = ACTIONS(6814), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6814), + [anon_sym_LF] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6814), + }, + [3787] = { + [sym_file_descriptor] = ACTIONS(6816), + [sym__concat] = ACTIONS(6816), + [anon_sym_PIPE] = ACTIONS(6818), + [anon_sym_SEMI_SEMI] = ACTIONS(6818), + [anon_sym_PIPE_AMP] = ACTIONS(6818), + [anon_sym_AMP_AMP] = ACTIONS(6818), + [anon_sym_PIPE_PIPE] = ACTIONS(6818), + [anon_sym_LT] = ACTIONS(6818), + [anon_sym_GT] = ACTIONS(6818), + [anon_sym_GT_GT] = ACTIONS(6818), + [anon_sym_AMP_GT] = ACTIONS(6818), + [anon_sym_AMP_GT_GT] = ACTIONS(6818), + [anon_sym_LT_AMP] = ACTIONS(6818), + [anon_sym_GT_AMP] = ACTIONS(6818), + [anon_sym_LT_LT] = ACTIONS(6818), + [anon_sym_LT_LT_DASH] = ACTIONS(6818), + [anon_sym_LT_LT_LT] = ACTIONS(6818), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6818), + [anon_sym_LF] = ACTIONS(6818), + [anon_sym_AMP] = ACTIONS(6818), + }, + [3788] = { + [sym_file_descriptor] = ACTIONS(6820), + [sym__concat] = ACTIONS(6820), + [anon_sym_PIPE] = ACTIONS(6822), + [anon_sym_SEMI_SEMI] = ACTIONS(6822), + [anon_sym_PIPE_AMP] = ACTIONS(6822), + [anon_sym_AMP_AMP] = ACTIONS(6822), + [anon_sym_PIPE_PIPE] = ACTIONS(6822), + [anon_sym_LT] = ACTIONS(6822), + [anon_sym_GT] = ACTIONS(6822), + [anon_sym_GT_GT] = ACTIONS(6822), + [anon_sym_AMP_GT] = ACTIONS(6822), + [anon_sym_AMP_GT_GT] = ACTIONS(6822), + [anon_sym_LT_AMP] = ACTIONS(6822), + [anon_sym_GT_AMP] = ACTIONS(6822), + [anon_sym_LT_LT] = ACTIONS(6822), + [anon_sym_LT_LT_DASH] = ACTIONS(6822), + [anon_sym_LT_LT_LT] = ACTIONS(6822), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6822), + [anon_sym_LF] = ACTIONS(6822), + [anon_sym_AMP] = ACTIONS(6822), + }, + [3789] = { + [sym__heredoc_middle] = ACTIONS(5929), + [sym__heredoc_end] = ACTIONS(5929), + [anon_sym_DOLLAR] = ACTIONS(6710), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5929), + [sym_comment] = ACTIONS(56), + }, + [3790] = { + [sym__heredoc_middle] = ACTIONS(5933), + [sym__heredoc_end] = ACTIONS(5933), + [anon_sym_DOLLAR] = ACTIONS(6712), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5933), + [sym_comment] = ACTIONS(56), + }, + [3791] = { + [sym__heredoc_middle] = ACTIONS(5937), + [sym__heredoc_end] = ACTIONS(5937), + [anon_sym_DOLLAR] = ACTIONS(6714), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5937), + [sym_comment] = ACTIONS(56), + }, + [3792] = { + [sym__heredoc_middle] = ACTIONS(5941), + [sym__heredoc_end] = ACTIONS(5941), + [anon_sym_DOLLAR] = ACTIONS(6716), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5941), + [sym_comment] = ACTIONS(56), + }, + [3793] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7765), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3794] = { + [sym__heredoc_middle] = ACTIONS(5947), + [sym__heredoc_end] = ACTIONS(5947), + [anon_sym_DOLLAR] = ACTIONS(6720), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5947), + [sym_comment] = ACTIONS(56), + }, + [3795] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7767), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3796] = { + [sym__heredoc_middle] = ACTIONS(5953), + [sym__heredoc_end] = ACTIONS(5953), + [anon_sym_DOLLAR] = ACTIONS(6724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5953), + [sym_comment] = ACTIONS(56), + }, + [3797] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7769), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3798] = { + [sym__heredoc_middle] = ACTIONS(5959), + [sym__heredoc_end] = ACTIONS(5959), + [anon_sym_DOLLAR] = ACTIONS(6728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5959), + [sym_comment] = ACTIONS(56), + }, + [3799] = { + [sym__heredoc_middle] = ACTIONS(5963), + [sym__heredoc_end] = ACTIONS(5963), + [anon_sym_DOLLAR] = ACTIONS(6730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5963), + [sym_comment] = ACTIONS(56), + }, + [3800] = { + [sym__concat] = ACTIONS(6812), + [anon_sym_RPAREN] = ACTIONS(6812), + [sym__special_characters] = ACTIONS(7351), + [anon_sym_DQUOTE] = ACTIONS(6812), + [anon_sym_DOLLAR] = ACTIONS(7351), + [sym_raw_string] = ACTIONS(6812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6812), + [anon_sym_BQUOTE] = ACTIONS(6812), + [anon_sym_LT_LPAREN] = ACTIONS(6812), + [anon_sym_GT_LPAREN] = ACTIONS(6812), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7351), + }, + [3801] = { + [sym__concat] = ACTIONS(6816), + [anon_sym_RPAREN] = ACTIONS(6816), + [sym__special_characters] = ACTIONS(7353), + [anon_sym_DQUOTE] = ACTIONS(6816), + [anon_sym_DOLLAR] = ACTIONS(7353), + [sym_raw_string] = ACTIONS(6816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6816), + [anon_sym_BQUOTE] = ACTIONS(6816), + [anon_sym_LT_LPAREN] = ACTIONS(6816), + [anon_sym_GT_LPAREN] = ACTIONS(6816), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7353), + }, + [3802] = { + [sym__concat] = ACTIONS(6820), + [anon_sym_RPAREN] = ACTIONS(6820), + [sym__special_characters] = ACTIONS(7355), + [anon_sym_DQUOTE] = ACTIONS(6820), + [anon_sym_DOLLAR] = ACTIONS(7355), + [sym_raw_string] = ACTIONS(6820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6820), + [anon_sym_BQUOTE] = ACTIONS(6820), + [anon_sym_LT_LPAREN] = ACTIONS(6820), + [anon_sym_GT_LPAREN] = ACTIONS(6820), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7355), + }, + [3803] = { + [sym__concat] = ACTIONS(6812), + [anon_sym_SEMI_SEMI] = ACTIONS(6814), + [sym__special_characters] = ACTIONS(6814), + [anon_sym_DQUOTE] = ACTIONS(6814), + [anon_sym_DOLLAR] = ACTIONS(6814), + [sym_raw_string] = ACTIONS(6814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6814), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6814), + [anon_sym_BQUOTE] = ACTIONS(6814), + [anon_sym_LT_LPAREN] = ACTIONS(6814), + [anon_sym_GT_LPAREN] = ACTIONS(6814), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6814), + [anon_sym_SEMI] = ACTIONS(6814), + [anon_sym_LF] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6814), + }, + [3804] = { + [sym__concat] = ACTIONS(6816), + [anon_sym_SEMI_SEMI] = ACTIONS(6818), + [sym__special_characters] = ACTIONS(6818), + [anon_sym_DQUOTE] = ACTIONS(6818), + [anon_sym_DOLLAR] = ACTIONS(6818), + [sym_raw_string] = ACTIONS(6818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6818), + [anon_sym_BQUOTE] = ACTIONS(6818), + [anon_sym_LT_LPAREN] = ACTIONS(6818), + [anon_sym_GT_LPAREN] = ACTIONS(6818), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6818), + [anon_sym_SEMI] = ACTIONS(6818), + [anon_sym_LF] = ACTIONS(6818), + [anon_sym_AMP] = ACTIONS(6818), + }, + [3805] = { + [sym__concat] = ACTIONS(6820), + [anon_sym_SEMI_SEMI] = ACTIONS(6822), + [sym__special_characters] = ACTIONS(6822), + [anon_sym_DQUOTE] = ACTIONS(6822), + [anon_sym_DOLLAR] = ACTIONS(6822), + [sym_raw_string] = ACTIONS(6822), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6822), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6822), + [anon_sym_BQUOTE] = ACTIONS(6822), + [anon_sym_LT_LPAREN] = ACTIONS(6822), + [anon_sym_GT_LPAREN] = ACTIONS(6822), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6822), + [anon_sym_SEMI] = ACTIONS(6822), + [anon_sym_LF] = ACTIONS(6822), + [anon_sym_AMP] = ACTIONS(6822), + }, + [3806] = { + [sym__concat] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(5929), + [anon_sym_RPAREN] = ACTIONS(5929), + [sym_comment] = ACTIONS(56), + }, + [3807] = { + [sym__concat] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(5933), + [anon_sym_RPAREN] = ACTIONS(5933), + [sym_comment] = ACTIONS(56), + }, + [3808] = { + [sym__concat] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(5937), + [anon_sym_RPAREN] = ACTIONS(5937), + [sym_comment] = ACTIONS(56), + }, + [3809] = { + [sym__concat] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(5941), + [anon_sym_RPAREN] = ACTIONS(5941), + [sym_comment] = ACTIONS(56), + }, + [3810] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7771), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3811] = { + [sym__concat] = ACTIONS(5947), + [anon_sym_PIPE] = ACTIONS(5947), + [anon_sym_RPAREN] = ACTIONS(5947), + [sym_comment] = ACTIONS(56), + }, + [3812] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7773), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3813] = { + [sym__concat] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(5953), + [anon_sym_RPAREN] = ACTIONS(5953), + [sym_comment] = ACTIONS(56), + }, + [3814] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7775), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3815] = { + [sym__concat] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(5959), + [anon_sym_RPAREN] = ACTIONS(5959), + [sym_comment] = ACTIONS(56), + }, + [3816] = { + [sym__concat] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(5963), + [anon_sym_RPAREN] = ACTIONS(5963), + [sym_comment] = ACTIONS(56), + }, + [3817] = { + [sym__special_characters] = ACTIONS(7192), + [anon_sym_DQUOTE] = ACTIONS(7194), + [anon_sym_DOLLAR] = ACTIONS(7192), + [sym_raw_string] = ACTIONS(7194), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7194), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7194), + [anon_sym_BQUOTE] = ACTIONS(7194), + [anon_sym_LT_LPAREN] = ACTIONS(7194), + [anon_sym_GT_LPAREN] = ACTIONS(7194), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7192), + }, + [3818] = { + [sym__terminated_statement] = STATE(25), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(26), + [sym_variable_assignment] = STATE(28), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(3818), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(1130), + [sym_variable_name] = ACTIONS(1133), + [anon_sym_for] = ACTIONS(1138), + [anon_sym_while] = ACTIONS(1141), + [anon_sym_if] = ACTIONS(1144), + [anon_sym_case] = ACTIONS(1147), + [anon_sym_SEMI_SEMI] = ACTIONS(1136), + [anon_sym_function] = ACTIONS(1150), + [anon_sym_LPAREN] = ACTIONS(1153), + [anon_sym_LBRACK] = ACTIONS(1156), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1159), + [anon_sym_declare] = ACTIONS(1162), + [anon_sym_typeset] = ACTIONS(1162), + [anon_sym_export] = ACTIONS(1162), + [anon_sym_readonly] = ACTIONS(1162), + [anon_sym_local] = ACTIONS(1162), + [anon_sym_unset] = ACTIONS(1165), + [anon_sym_unsetenv] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(1168), + [anon_sym_GT] = ACTIONS(1168), + [anon_sym_GT_GT] = ACTIONS(1171), + [anon_sym_AMP_GT] = ACTIONS(1168), + [anon_sym_AMP_GT_GT] = ACTIONS(1171), + [anon_sym_LT_AMP] = ACTIONS(1171), + [anon_sym_GT_AMP] = ACTIONS(1171), + [sym__special_characters] = ACTIONS(1174), + [anon_sym_DQUOTE] = ACTIONS(1177), + [anon_sym_DOLLAR] = ACTIONS(1180), + [sym_raw_string] = ACTIONS(1183), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1186), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1189), + [anon_sym_BQUOTE] = ACTIONS(1192), + [anon_sym_LT_LPAREN] = ACTIONS(1195), + [anon_sym_GT_LPAREN] = ACTIONS(1195), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1198), + }, + [3819] = { + [sym__terminated_statement] = STATE(25), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(26), + [sym_variable_assignment] = STATE(28), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(3818), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_SEMI_SEMI] = ACTIONS(7777), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [3820] = { + [sym__special_characters] = ACTIONS(7202), + [anon_sym_DQUOTE] = ACTIONS(7204), + [anon_sym_DOLLAR] = ACTIONS(7202), + [sym_raw_string] = ACTIONS(7204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7204), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7204), + [anon_sym_BQUOTE] = ACTIONS(7204), + [anon_sym_LT_LPAREN] = ACTIONS(7204), + [anon_sym_GT_LPAREN] = ACTIONS(7204), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7202), + }, + [3821] = { + [sym__terminated_statement] = STATE(25), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(26), + [sym_variable_assignment] = STATE(28), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(3818), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_SEMI_SEMI] = ACTIONS(7779), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [3822] = { + [sym__concat] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(5931), + [anon_sym_SEMI_SEMI] = ACTIONS(5931), + [anon_sym_PIPE_AMP] = ACTIONS(5931), + [anon_sym_AMP_AMP] = ACTIONS(5931), + [anon_sym_PIPE_PIPE] = ACTIONS(5931), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5931), + [anon_sym_LF] = ACTIONS(5931), + [anon_sym_AMP] = ACTIONS(5931), + }, + [3823] = { + [sym__concat] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(5935), + [anon_sym_SEMI_SEMI] = ACTIONS(5935), + [anon_sym_PIPE_AMP] = ACTIONS(5935), + [anon_sym_AMP_AMP] = ACTIONS(5935), + [anon_sym_PIPE_PIPE] = ACTIONS(5935), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5935), + [anon_sym_LF] = ACTIONS(5935), + [anon_sym_AMP] = ACTIONS(5935), + }, + [3824] = { + [sym__concat] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(5939), + [anon_sym_SEMI_SEMI] = ACTIONS(5939), + [anon_sym_PIPE_AMP] = ACTIONS(5939), + [anon_sym_AMP_AMP] = ACTIONS(5939), + [anon_sym_PIPE_PIPE] = ACTIONS(5939), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5939), + [anon_sym_LF] = ACTIONS(5939), + [anon_sym_AMP] = ACTIONS(5939), + }, + [3825] = { + [sym__concat] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(5943), + [anon_sym_SEMI_SEMI] = ACTIONS(5943), + [anon_sym_PIPE_AMP] = ACTIONS(5943), + [anon_sym_AMP_AMP] = ACTIONS(5943), + [anon_sym_PIPE_PIPE] = ACTIONS(5943), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5943), + [anon_sym_LF] = ACTIONS(5943), + [anon_sym_AMP] = ACTIONS(5943), + }, + [3826] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7781), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3827] = { + [sym__concat] = ACTIONS(5947), + [anon_sym_PIPE] = ACTIONS(5949), + [anon_sym_SEMI_SEMI] = ACTIONS(5949), + [anon_sym_PIPE_AMP] = ACTIONS(5949), + [anon_sym_AMP_AMP] = ACTIONS(5949), + [anon_sym_PIPE_PIPE] = ACTIONS(5949), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5949), + [anon_sym_LF] = ACTIONS(5949), + [anon_sym_AMP] = ACTIONS(5949), + }, + [3828] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7783), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3829] = { + [sym__concat] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(5955), + [anon_sym_SEMI_SEMI] = ACTIONS(5955), + [anon_sym_PIPE_AMP] = ACTIONS(5955), + [anon_sym_AMP_AMP] = ACTIONS(5955), + [anon_sym_PIPE_PIPE] = ACTIONS(5955), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5955), + [anon_sym_LF] = ACTIONS(5955), + [anon_sym_AMP] = ACTIONS(5955), + }, + [3830] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7785), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3831] = { + [sym__concat] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_SEMI_SEMI] = ACTIONS(5961), + [anon_sym_PIPE_AMP] = ACTIONS(5961), + [anon_sym_AMP_AMP] = ACTIONS(5961), + [anon_sym_PIPE_PIPE] = ACTIONS(5961), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5961), + [anon_sym_LF] = ACTIONS(5961), + [anon_sym_AMP] = ACTIONS(5961), + }, + [3832] = { + [sym__concat] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(5965), + [anon_sym_SEMI_SEMI] = ACTIONS(5965), + [anon_sym_PIPE_AMP] = ACTIONS(5965), + [anon_sym_AMP_AMP] = ACTIONS(5965), + [anon_sym_PIPE_PIPE] = ACTIONS(5965), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5965), + [anon_sym_LF] = ACTIONS(5965), + [anon_sym_AMP] = ACTIONS(5965), + }, + [3833] = { + [sym_file_descriptor] = ACTIONS(6812), + [sym__concat] = ACTIONS(6812), + [sym_variable_name] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_RPAREN] = ACTIONS(6814), + [anon_sym_SEMI_SEMI] = ACTIONS(6814), + [anon_sym_PIPE_AMP] = ACTIONS(6814), + [anon_sym_AMP_AMP] = ACTIONS(6814), + [anon_sym_PIPE_PIPE] = ACTIONS(6814), + [anon_sym_LT] = ACTIONS(6814), + [anon_sym_GT] = ACTIONS(6814), + [anon_sym_GT_GT] = ACTIONS(6814), + [anon_sym_AMP_GT] = ACTIONS(6814), + [anon_sym_AMP_GT_GT] = ACTIONS(6814), + [anon_sym_LT_AMP] = ACTIONS(6814), + [anon_sym_GT_AMP] = ACTIONS(6814), + [sym__special_characters] = ACTIONS(6814), + [anon_sym_DQUOTE] = ACTIONS(6814), + [anon_sym_DOLLAR] = ACTIONS(6814), + [sym_raw_string] = ACTIONS(6814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6814), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6814), + [anon_sym_BQUOTE] = ACTIONS(6814), + [anon_sym_LT_LPAREN] = ACTIONS(6814), + [anon_sym_GT_LPAREN] = ACTIONS(6814), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6814), + [anon_sym_SEMI] = ACTIONS(6814), + [anon_sym_LF] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6814), + }, + [3834] = { + [sym_file_descriptor] = ACTIONS(6816), + [sym__concat] = ACTIONS(6816), + [sym_variable_name] = ACTIONS(6816), + [anon_sym_PIPE] = ACTIONS(6818), + [anon_sym_RPAREN] = ACTIONS(6818), + [anon_sym_SEMI_SEMI] = ACTIONS(6818), + [anon_sym_PIPE_AMP] = ACTIONS(6818), + [anon_sym_AMP_AMP] = ACTIONS(6818), + [anon_sym_PIPE_PIPE] = ACTIONS(6818), + [anon_sym_LT] = ACTIONS(6818), + [anon_sym_GT] = ACTIONS(6818), + [anon_sym_GT_GT] = ACTIONS(6818), + [anon_sym_AMP_GT] = ACTIONS(6818), + [anon_sym_AMP_GT_GT] = ACTIONS(6818), + [anon_sym_LT_AMP] = ACTIONS(6818), + [anon_sym_GT_AMP] = ACTIONS(6818), + [sym__special_characters] = ACTIONS(6818), + [anon_sym_DQUOTE] = ACTIONS(6818), + [anon_sym_DOLLAR] = ACTIONS(6818), + [sym_raw_string] = ACTIONS(6818), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6818), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6818), + [anon_sym_BQUOTE] = ACTIONS(6818), + [anon_sym_LT_LPAREN] = ACTIONS(6818), + [anon_sym_GT_LPAREN] = ACTIONS(6818), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6818), + [anon_sym_SEMI] = ACTIONS(6818), + [anon_sym_LF] = ACTIONS(6818), + [anon_sym_AMP] = ACTIONS(6818), + }, + [3835] = { + [sym_file_descriptor] = ACTIONS(6820), + [sym__concat] = ACTIONS(6820), + [sym_variable_name] = ACTIONS(6820), + [anon_sym_PIPE] = ACTIONS(6822), + [anon_sym_RPAREN] = ACTIONS(6822), + [anon_sym_SEMI_SEMI] = ACTIONS(6822), + [anon_sym_PIPE_AMP] = ACTIONS(6822), + [anon_sym_AMP_AMP] = ACTIONS(6822), + [anon_sym_PIPE_PIPE] = ACTIONS(6822), + [anon_sym_LT] = ACTIONS(6822), + [anon_sym_GT] = ACTIONS(6822), + [anon_sym_GT_GT] = ACTIONS(6822), + [anon_sym_AMP_GT] = ACTIONS(6822), + [anon_sym_AMP_GT_GT] = ACTIONS(6822), + [anon_sym_LT_AMP] = ACTIONS(6822), + [anon_sym_GT_AMP] = ACTIONS(6822), + [sym__special_characters] = ACTIONS(6822), + [anon_sym_DQUOTE] = ACTIONS(6822), + [anon_sym_DOLLAR] = ACTIONS(6822), + [sym_raw_string] = ACTIONS(6822), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6822), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6822), + [anon_sym_BQUOTE] = ACTIONS(6822), + [anon_sym_LT_LPAREN] = ACTIONS(6822), + [anon_sym_GT_LPAREN] = ACTIONS(6822), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6822), + [anon_sym_SEMI] = ACTIONS(6822), + [anon_sym_LF] = ACTIONS(6822), + [anon_sym_AMP] = ACTIONS(6822), + }, + [3836] = { + [sym__concat] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4730), + [anon_sym_RPAREN] = ACTIONS(4730), + [anon_sym_SEMI_SEMI] = ACTIONS(4730), + [anon_sym_PIPE_AMP] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_LF] = ACTIONS(4730), + [anon_sym_AMP] = ACTIONS(4730), + }, + [3837] = { + [sym__concat] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(4736), + [anon_sym_RPAREN] = ACTIONS(4736), + [anon_sym_SEMI_SEMI] = ACTIONS(4736), + [anon_sym_PIPE_AMP] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_LF] = ACTIONS(4736), + [anon_sym_AMP] = ACTIONS(4736), + }, + [3838] = { + [sym__concat] = ACTIONS(4797), + [anon_sym_PIPE] = ACTIONS(4799), + [anon_sym_RPAREN] = ACTIONS(4799), + [anon_sym_SEMI_SEMI] = ACTIONS(4799), + [anon_sym_PIPE_AMP] = ACTIONS(4799), + [anon_sym_AMP_AMP] = ACTIONS(4799), + [anon_sym_PIPE_PIPE] = ACTIONS(4799), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4799), + [anon_sym_LF] = ACTIONS(4799), + [anon_sym_AMP] = ACTIONS(4799), + }, + [3839] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7787), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3840] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7789), + [sym_comment] = ACTIONS(56), + }, + [3841] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7791), + [sym_comment] = ACTIONS(56), + }, + [3842] = { + [anon_sym_RBRACE] = ACTIONS(7791), + [sym_comment] = ACTIONS(56), + }, + [3843] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3917), + [anon_sym_RBRACE] = ACTIONS(7793), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3844] = { + [sym__concat] = ACTIONS(4809), + [anon_sym_PIPE] = ACTIONS(4811), + [anon_sym_RPAREN] = ACTIONS(4811), + [anon_sym_SEMI_SEMI] = ACTIONS(4811), + [anon_sym_PIPE_AMP] = ACTIONS(4811), + [anon_sym_AMP_AMP] = ACTIONS(4811), + [anon_sym_PIPE_PIPE] = ACTIONS(4811), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym_LF] = ACTIONS(4811), + [anon_sym_AMP] = ACTIONS(4811), + }, + [3845] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3919), + [anon_sym_RBRACE] = ACTIONS(7795), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3846] = { + [sym__concat] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(4817), + [anon_sym_RPAREN] = ACTIONS(4817), + [anon_sym_SEMI_SEMI] = ACTIONS(4817), + [anon_sym_PIPE_AMP] = ACTIONS(4817), + [anon_sym_AMP_AMP] = ACTIONS(4817), + [anon_sym_PIPE_PIPE] = ACTIONS(4817), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4817), + [anon_sym_LF] = ACTIONS(4817), + [anon_sym_AMP] = ACTIONS(4817), + }, + [3847] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3921), + [anon_sym_RBRACE] = ACTIONS(7797), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3848] = { + [sym__concat] = ACTIONS(4821), + [anon_sym_PIPE] = ACTIONS(4823), + [anon_sym_RPAREN] = ACTIONS(4823), + [anon_sym_SEMI_SEMI] = ACTIONS(4823), + [anon_sym_PIPE_AMP] = ACTIONS(4823), + [anon_sym_AMP_AMP] = ACTIONS(4823), + [anon_sym_PIPE_PIPE] = ACTIONS(4823), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4823), + [anon_sym_LF] = ACTIONS(4823), + [anon_sym_AMP] = ACTIONS(4823), + }, + [3849] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7799), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3850] = { + [sym__concat] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_RPAREN] = ACTIONS(4829), + [anon_sym_SEMI_SEMI] = ACTIONS(4829), + [anon_sym_PIPE_AMP] = ACTIONS(4829), + [anon_sym_AMP_AMP] = ACTIONS(4829), + [anon_sym_PIPE_PIPE] = ACTIONS(4829), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4829), + [anon_sym_LF] = ACTIONS(4829), + [anon_sym_AMP] = ACTIONS(4829), + }, + [3851] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7801), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3852] = { + [sym_file_descriptor] = ACTIONS(6812), + [sym__concat] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_RPAREN] = ACTIONS(6814), + [anon_sym_SEMI_SEMI] = ACTIONS(6814), + [anon_sym_PIPE_AMP] = ACTIONS(6814), + [anon_sym_AMP_AMP] = ACTIONS(6814), + [anon_sym_PIPE_PIPE] = ACTIONS(6814), + [anon_sym_LT] = ACTIONS(6814), + [anon_sym_GT] = ACTIONS(6814), + [anon_sym_GT_GT] = ACTIONS(6814), + [anon_sym_AMP_GT] = ACTIONS(6814), + [anon_sym_AMP_GT_GT] = ACTIONS(6814), + [anon_sym_LT_AMP] = ACTIONS(6814), + [anon_sym_GT_AMP] = ACTIONS(6814), + [anon_sym_LT_LT] = ACTIONS(6814), + [anon_sym_LT_LT_DASH] = ACTIONS(6814), + [anon_sym_LT_LT_LT] = ACTIONS(6814), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6814), + [anon_sym_LF] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6814), + }, + [3853] = { + [sym_file_descriptor] = ACTIONS(6816), + [sym__concat] = ACTIONS(6816), + [anon_sym_PIPE] = ACTIONS(6818), + [anon_sym_RPAREN] = ACTIONS(6818), + [anon_sym_SEMI_SEMI] = ACTIONS(6818), + [anon_sym_PIPE_AMP] = ACTIONS(6818), + [anon_sym_AMP_AMP] = ACTIONS(6818), + [anon_sym_PIPE_PIPE] = ACTIONS(6818), + [anon_sym_LT] = ACTIONS(6818), + [anon_sym_GT] = ACTIONS(6818), + [anon_sym_GT_GT] = ACTIONS(6818), + [anon_sym_AMP_GT] = ACTIONS(6818), + [anon_sym_AMP_GT_GT] = ACTIONS(6818), + [anon_sym_LT_AMP] = ACTIONS(6818), + [anon_sym_GT_AMP] = ACTIONS(6818), + [anon_sym_LT_LT] = ACTIONS(6818), + [anon_sym_LT_LT_DASH] = ACTIONS(6818), + [anon_sym_LT_LT_LT] = ACTIONS(6818), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6818), + [anon_sym_LF] = ACTIONS(6818), + [anon_sym_AMP] = ACTIONS(6818), + }, + [3854] = { + [sym_file_descriptor] = ACTIONS(6820), + [sym__concat] = ACTIONS(6820), + [anon_sym_PIPE] = ACTIONS(6822), + [anon_sym_RPAREN] = ACTIONS(6822), + [anon_sym_SEMI_SEMI] = ACTIONS(6822), + [anon_sym_PIPE_AMP] = ACTIONS(6822), + [anon_sym_AMP_AMP] = ACTIONS(6822), + [anon_sym_PIPE_PIPE] = ACTIONS(6822), + [anon_sym_LT] = ACTIONS(6822), + [anon_sym_GT] = ACTIONS(6822), + [anon_sym_GT_GT] = ACTIONS(6822), + [anon_sym_AMP_GT] = ACTIONS(6822), + [anon_sym_AMP_GT_GT] = ACTIONS(6822), + [anon_sym_LT_AMP] = ACTIONS(6822), + [anon_sym_GT_AMP] = ACTIONS(6822), + [anon_sym_LT_LT] = ACTIONS(6822), + [anon_sym_LT_LT_DASH] = ACTIONS(6822), + [anon_sym_LT_LT_LT] = ACTIONS(6822), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6822), + [anon_sym_LF] = ACTIONS(6822), + [anon_sym_AMP] = ACTIONS(6822), + }, + [3855] = { + [sym__concat] = ACTIONS(6812), + [anon_sym_RBRACE] = ACTIONS(6812), + [sym_comment] = ACTIONS(56), + }, + [3856] = { + [sym__concat] = ACTIONS(6816), + [anon_sym_RBRACE] = ACTIONS(6816), + [sym_comment] = ACTIONS(56), + }, + [3857] = { + [sym__concat] = ACTIONS(6820), + [anon_sym_RBRACE] = ACTIONS(6820), + [sym_comment] = ACTIONS(56), + }, + [3858] = { + [sym_file_descriptor] = ACTIONS(6812), + [sym__concat] = ACTIONS(6812), + [sym_variable_name] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(7351), + [anon_sym_RPAREN] = ACTIONS(6812), + [anon_sym_PIPE_AMP] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_LT] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7351), + [anon_sym_GT_GT] = ACTIONS(6812), + [anon_sym_AMP_GT] = ACTIONS(7351), + [anon_sym_AMP_GT_GT] = ACTIONS(6812), + [anon_sym_LT_AMP] = ACTIONS(6812), + [anon_sym_GT_AMP] = ACTIONS(6812), + [sym__special_characters] = ACTIONS(7351), + [anon_sym_DQUOTE] = ACTIONS(6812), + [anon_sym_DOLLAR] = ACTIONS(7351), + [sym_raw_string] = ACTIONS(6812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6812), + [anon_sym_BQUOTE] = ACTIONS(6812), + [anon_sym_LT_LPAREN] = ACTIONS(6812), + [anon_sym_GT_LPAREN] = ACTIONS(6812), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7351), + }, + [3859] = { + [sym_file_descriptor] = ACTIONS(6816), + [sym__concat] = ACTIONS(6816), + [sym_variable_name] = ACTIONS(6816), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_RPAREN] = ACTIONS(6816), + [anon_sym_PIPE_AMP] = ACTIONS(6816), + [anon_sym_AMP_AMP] = ACTIONS(6816), + [anon_sym_PIPE_PIPE] = ACTIONS(6816), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_GT] = ACTIONS(6816), + [anon_sym_AMP_GT] = ACTIONS(7353), + [anon_sym_AMP_GT_GT] = ACTIONS(6816), + [anon_sym_LT_AMP] = ACTIONS(6816), + [anon_sym_GT_AMP] = ACTIONS(6816), + [sym__special_characters] = ACTIONS(7353), + [anon_sym_DQUOTE] = ACTIONS(6816), + [anon_sym_DOLLAR] = ACTIONS(7353), + [sym_raw_string] = ACTIONS(6816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6816), + [anon_sym_BQUOTE] = ACTIONS(6816), + [anon_sym_LT_LPAREN] = ACTIONS(6816), + [anon_sym_GT_LPAREN] = ACTIONS(6816), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7353), + }, + [3860] = { + [sym_file_descriptor] = ACTIONS(6820), + [sym__concat] = ACTIONS(6820), + [sym_variable_name] = ACTIONS(6820), + [anon_sym_PIPE] = ACTIONS(7355), + [anon_sym_RPAREN] = ACTIONS(6820), + [anon_sym_PIPE_AMP] = ACTIONS(6820), + [anon_sym_AMP_AMP] = ACTIONS(6820), + [anon_sym_PIPE_PIPE] = ACTIONS(6820), + [anon_sym_LT] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7355), + [anon_sym_GT_GT] = ACTIONS(6820), + [anon_sym_AMP_GT] = ACTIONS(7355), + [anon_sym_AMP_GT_GT] = ACTIONS(6820), + [anon_sym_LT_AMP] = ACTIONS(6820), + [anon_sym_GT_AMP] = ACTIONS(6820), + [sym__special_characters] = ACTIONS(7355), + [anon_sym_DQUOTE] = ACTIONS(6820), + [anon_sym_DOLLAR] = ACTIONS(7355), + [sym_raw_string] = ACTIONS(6820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6820), + [anon_sym_BQUOTE] = ACTIONS(6820), + [anon_sym_LT_LPAREN] = ACTIONS(6820), + [anon_sym_GT_LPAREN] = ACTIONS(6820), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7355), + }, + [3861] = { + [sym__concat] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(5748), + [anon_sym_RPAREN] = ACTIONS(4728), + [anon_sym_PIPE_AMP] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [sym_comment] = ACTIONS(56), + }, + [3862] = { + [sym__concat] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(5750), + [anon_sym_RPAREN] = ACTIONS(4734), + [anon_sym_PIPE_AMP] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [sym_comment] = ACTIONS(56), + }, + [3863] = { + [sym__concat] = ACTIONS(4797), + [anon_sym_PIPE] = ACTIONS(5752), + [anon_sym_RPAREN] = ACTIONS(4797), + [anon_sym_PIPE_AMP] = ACTIONS(4797), + [anon_sym_AMP_AMP] = ACTIONS(4797), + [anon_sym_PIPE_PIPE] = ACTIONS(4797), + [sym_comment] = ACTIONS(56), + }, + [3864] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7803), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3865] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7805), + [sym_comment] = ACTIONS(56), + }, + [3866] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7807), + [sym_comment] = ACTIONS(56), + }, + [3867] = { + [anon_sym_RBRACE] = ACTIONS(7807), + [sym_comment] = ACTIONS(56), + }, + [3868] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3928), + [anon_sym_RBRACE] = ACTIONS(7809), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3869] = { + [sym__concat] = ACTIONS(4809), + [anon_sym_PIPE] = ACTIONS(5762), + [anon_sym_RPAREN] = ACTIONS(4809), + [anon_sym_PIPE_AMP] = ACTIONS(4809), + [anon_sym_AMP_AMP] = ACTIONS(4809), + [anon_sym_PIPE_PIPE] = ACTIONS(4809), + [sym_comment] = ACTIONS(56), + }, + [3870] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3930), + [anon_sym_RBRACE] = ACTIONS(7811), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3871] = { + [sym__concat] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(5766), + [anon_sym_RPAREN] = ACTIONS(4815), + [anon_sym_PIPE_AMP] = ACTIONS(4815), + [anon_sym_AMP_AMP] = ACTIONS(4815), + [anon_sym_PIPE_PIPE] = ACTIONS(4815), + [sym_comment] = ACTIONS(56), + }, + [3872] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3932), + [anon_sym_RBRACE] = ACTIONS(7813), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3873] = { + [sym__concat] = ACTIONS(4821), + [anon_sym_PIPE] = ACTIONS(5770), + [anon_sym_RPAREN] = ACTIONS(4821), + [anon_sym_PIPE_AMP] = ACTIONS(4821), + [anon_sym_AMP_AMP] = ACTIONS(4821), + [anon_sym_PIPE_PIPE] = ACTIONS(4821), + [sym_comment] = ACTIONS(56), + }, + [3874] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7815), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3875] = { + [sym__concat] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(5774), + [anon_sym_RPAREN] = ACTIONS(4827), + [anon_sym_PIPE_AMP] = ACTIONS(4827), + [anon_sym_AMP_AMP] = ACTIONS(4827), + [anon_sym_PIPE_PIPE] = ACTIONS(4827), + [sym_comment] = ACTIONS(56), + }, + [3876] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7817), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3877] = { + [sym_file_descriptor] = ACTIONS(6812), + [sym__concat] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(7351), + [anon_sym_RPAREN] = ACTIONS(6812), + [anon_sym_PIPE_AMP] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_LT] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7351), + [anon_sym_GT_GT] = ACTIONS(6812), + [anon_sym_AMP_GT] = ACTIONS(7351), + [anon_sym_AMP_GT_GT] = ACTIONS(6812), + [anon_sym_LT_AMP] = ACTIONS(6812), + [anon_sym_GT_AMP] = ACTIONS(6812), + [anon_sym_LT_LT] = ACTIONS(7351), + [anon_sym_LT_LT_DASH] = ACTIONS(6812), + [anon_sym_LT_LT_LT] = ACTIONS(6812), + [sym_comment] = ACTIONS(56), + }, + [3878] = { + [sym_file_descriptor] = ACTIONS(6816), + [sym__concat] = ACTIONS(6816), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_RPAREN] = ACTIONS(6816), + [anon_sym_PIPE_AMP] = ACTIONS(6816), + [anon_sym_AMP_AMP] = ACTIONS(6816), + [anon_sym_PIPE_PIPE] = ACTIONS(6816), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_GT] = ACTIONS(6816), + [anon_sym_AMP_GT] = ACTIONS(7353), + [anon_sym_AMP_GT_GT] = ACTIONS(6816), + [anon_sym_LT_AMP] = ACTIONS(6816), + [anon_sym_GT_AMP] = ACTIONS(6816), + [anon_sym_LT_LT] = ACTIONS(7353), + [anon_sym_LT_LT_DASH] = ACTIONS(6816), + [anon_sym_LT_LT_LT] = ACTIONS(6816), + [sym_comment] = ACTIONS(56), + }, + [3879] = { + [sym_file_descriptor] = ACTIONS(6820), + [sym__concat] = ACTIONS(6820), + [anon_sym_PIPE] = ACTIONS(7355), + [anon_sym_RPAREN] = ACTIONS(6820), + [anon_sym_PIPE_AMP] = ACTIONS(6820), + [anon_sym_AMP_AMP] = ACTIONS(6820), + [anon_sym_PIPE_PIPE] = ACTIONS(6820), + [anon_sym_LT] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7355), + [anon_sym_GT_GT] = ACTIONS(6820), + [anon_sym_AMP_GT] = ACTIONS(7355), + [anon_sym_AMP_GT_GT] = ACTIONS(6820), + [anon_sym_LT_AMP] = ACTIONS(6820), + [anon_sym_GT_AMP] = ACTIONS(6820), + [anon_sym_LT_LT] = ACTIONS(7355), + [anon_sym_LT_LT_DASH] = ACTIONS(6820), + [anon_sym_LT_LT_LT] = ACTIONS(6820), + [sym_comment] = ACTIONS(56), + }, + [3880] = { + [sym_file_descriptor] = ACTIONS(6812), + [sym__concat] = ACTIONS(6812), + [sym_variable_name] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(7351), + [anon_sym_PIPE_AMP] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_LT] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7351), + [anon_sym_GT_GT] = ACTIONS(6812), + [anon_sym_AMP_GT] = ACTIONS(7351), + [anon_sym_AMP_GT_GT] = ACTIONS(6812), + [anon_sym_LT_AMP] = ACTIONS(6812), + [anon_sym_GT_AMP] = ACTIONS(6812), + [sym__special_characters] = ACTIONS(7351), + [anon_sym_DQUOTE] = ACTIONS(6812), + [anon_sym_DOLLAR] = ACTIONS(7351), + [sym_raw_string] = ACTIONS(6812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6812), + [anon_sym_BQUOTE] = ACTIONS(6812), + [anon_sym_LT_LPAREN] = ACTIONS(6812), + [anon_sym_GT_LPAREN] = ACTIONS(6812), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7351), + }, + [3881] = { + [sym_file_descriptor] = ACTIONS(6816), + [sym__concat] = ACTIONS(6816), + [sym_variable_name] = ACTIONS(6816), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_PIPE_AMP] = ACTIONS(6816), + [anon_sym_AMP_AMP] = ACTIONS(6816), + [anon_sym_PIPE_PIPE] = ACTIONS(6816), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_GT] = ACTIONS(6816), + [anon_sym_AMP_GT] = ACTIONS(7353), + [anon_sym_AMP_GT_GT] = ACTIONS(6816), + [anon_sym_LT_AMP] = ACTIONS(6816), + [anon_sym_GT_AMP] = ACTIONS(6816), + [sym__special_characters] = ACTIONS(7353), + [anon_sym_DQUOTE] = ACTIONS(6816), + [anon_sym_DOLLAR] = ACTIONS(7353), + [sym_raw_string] = ACTIONS(6816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6816), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6816), + [anon_sym_BQUOTE] = ACTIONS(6816), + [anon_sym_LT_LPAREN] = ACTIONS(6816), + [anon_sym_GT_LPAREN] = ACTIONS(6816), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7353), + }, + [3882] = { + [sym_file_descriptor] = ACTIONS(6820), + [sym__concat] = ACTIONS(6820), + [sym_variable_name] = ACTIONS(6820), + [anon_sym_PIPE] = ACTIONS(7355), + [anon_sym_PIPE_AMP] = ACTIONS(6820), + [anon_sym_AMP_AMP] = ACTIONS(6820), + [anon_sym_PIPE_PIPE] = ACTIONS(6820), + [anon_sym_LT] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7355), + [anon_sym_GT_GT] = ACTIONS(6820), + [anon_sym_AMP_GT] = ACTIONS(7355), + [anon_sym_AMP_GT_GT] = ACTIONS(6820), + [anon_sym_LT_AMP] = ACTIONS(6820), + [anon_sym_GT_AMP] = ACTIONS(6820), + [sym__special_characters] = ACTIONS(7355), + [anon_sym_DQUOTE] = ACTIONS(6820), + [anon_sym_DOLLAR] = ACTIONS(7355), + [sym_raw_string] = ACTIONS(6820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6820), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6820), + [anon_sym_BQUOTE] = ACTIONS(6820), + [anon_sym_LT_LPAREN] = ACTIONS(6820), + [anon_sym_GT_LPAREN] = ACTIONS(6820), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7355), + }, + [3883] = { + [sym__concat] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(5748), + [anon_sym_PIPE_AMP] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [sym_comment] = ACTIONS(56), + }, + [3884] = { + [sym__concat] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(5750), + [anon_sym_PIPE_AMP] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [anon_sym_BQUOTE] = ACTIONS(4734), + [sym_comment] = ACTIONS(56), + }, + [3885] = { + [sym__concat] = ACTIONS(4797), + [anon_sym_PIPE] = ACTIONS(5752), + [anon_sym_PIPE_AMP] = ACTIONS(4797), + [anon_sym_AMP_AMP] = ACTIONS(4797), + [anon_sym_PIPE_PIPE] = ACTIONS(4797), + [anon_sym_BQUOTE] = ACTIONS(4797), + [sym_comment] = ACTIONS(56), + }, + [3886] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7819), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3887] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7821), + [sym_comment] = ACTIONS(56), + }, + [3888] = { + [aux_sym_concatenation_repeat1] = STATE(1594), + [sym__concat] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(7823), + [sym_comment] = ACTIONS(56), + }, + [3889] = { + [anon_sym_RBRACE] = ACTIONS(7823), + [sym_comment] = ACTIONS(56), + }, + [3890] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3939), + [anon_sym_RBRACE] = ACTIONS(7825), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3891] = { + [sym__concat] = ACTIONS(4809), + [anon_sym_PIPE] = ACTIONS(5762), + [anon_sym_PIPE_AMP] = ACTIONS(4809), + [anon_sym_AMP_AMP] = ACTIONS(4809), + [anon_sym_PIPE_PIPE] = ACTIONS(4809), + [anon_sym_BQUOTE] = ACTIONS(4809), + [sym_comment] = ACTIONS(56), + }, + [3892] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3941), + [anon_sym_RBRACE] = ACTIONS(7827), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3893] = { + [sym__concat] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(5766), + [anon_sym_PIPE_AMP] = ACTIONS(4815), + [anon_sym_AMP_AMP] = ACTIONS(4815), + [anon_sym_PIPE_PIPE] = ACTIONS(4815), + [anon_sym_BQUOTE] = ACTIONS(4815), + [sym_comment] = ACTIONS(56), + }, + [3894] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(3943), + [anon_sym_RBRACE] = ACTIONS(7829), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3895] = { + [sym__concat] = ACTIONS(4821), + [anon_sym_PIPE] = ACTIONS(5770), + [anon_sym_PIPE_AMP] = ACTIONS(4821), + [anon_sym_AMP_AMP] = ACTIONS(4821), + [anon_sym_PIPE_PIPE] = ACTIONS(4821), + [anon_sym_BQUOTE] = ACTIONS(4821), + [sym_comment] = ACTIONS(56), + }, + [3896] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7831), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3897] = { + [sym__concat] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(5774), + [anon_sym_PIPE_AMP] = ACTIONS(4827), + [anon_sym_AMP_AMP] = ACTIONS(4827), + [anon_sym_PIPE_PIPE] = ACTIONS(4827), + [anon_sym_BQUOTE] = ACTIONS(4827), + [sym_comment] = ACTIONS(56), + }, + [3898] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7833), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3899] = { + [sym_file_descriptor] = ACTIONS(6812), + [sym__concat] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(7351), + [anon_sym_PIPE_AMP] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_LT] = ACTIONS(7351), + [anon_sym_GT] = ACTIONS(7351), + [anon_sym_GT_GT] = ACTIONS(6812), + [anon_sym_AMP_GT] = ACTIONS(7351), + [anon_sym_AMP_GT_GT] = ACTIONS(6812), + [anon_sym_LT_AMP] = ACTIONS(6812), + [anon_sym_GT_AMP] = ACTIONS(6812), + [anon_sym_LT_LT] = ACTIONS(7351), + [anon_sym_LT_LT_DASH] = ACTIONS(6812), + [anon_sym_LT_LT_LT] = ACTIONS(6812), + [anon_sym_BQUOTE] = ACTIONS(6812), + [sym_comment] = ACTIONS(56), + }, + [3900] = { + [sym_file_descriptor] = ACTIONS(6816), + [sym__concat] = ACTIONS(6816), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_PIPE_AMP] = ACTIONS(6816), + [anon_sym_AMP_AMP] = ACTIONS(6816), + [anon_sym_PIPE_PIPE] = ACTIONS(6816), + [anon_sym_LT] = ACTIONS(7353), + [anon_sym_GT] = ACTIONS(7353), + [anon_sym_GT_GT] = ACTIONS(6816), + [anon_sym_AMP_GT] = ACTIONS(7353), + [anon_sym_AMP_GT_GT] = ACTIONS(6816), + [anon_sym_LT_AMP] = ACTIONS(6816), + [anon_sym_GT_AMP] = ACTIONS(6816), + [anon_sym_LT_LT] = ACTIONS(7353), + [anon_sym_LT_LT_DASH] = ACTIONS(6816), + [anon_sym_LT_LT_LT] = ACTIONS(6816), + [anon_sym_BQUOTE] = ACTIONS(6816), + [sym_comment] = ACTIONS(56), + }, + [3901] = { + [sym_file_descriptor] = ACTIONS(6820), + [sym__concat] = ACTIONS(6820), + [anon_sym_PIPE] = ACTIONS(7355), + [anon_sym_PIPE_AMP] = ACTIONS(6820), + [anon_sym_AMP_AMP] = ACTIONS(6820), + [anon_sym_PIPE_PIPE] = ACTIONS(6820), + [anon_sym_LT] = ACTIONS(7355), + [anon_sym_GT] = ACTIONS(7355), + [anon_sym_GT_GT] = ACTIONS(6820), + [anon_sym_AMP_GT] = ACTIONS(7355), + [anon_sym_AMP_GT_GT] = ACTIONS(6820), + [anon_sym_LT_AMP] = ACTIONS(6820), + [anon_sym_GT_AMP] = ACTIONS(6820), + [anon_sym_LT_LT] = ACTIONS(7355), + [anon_sym_LT_LT_DASH] = ACTIONS(6820), + [anon_sym_LT_LT_LT] = ACTIONS(6820), + [anon_sym_BQUOTE] = ACTIONS(6820), + [sym_comment] = ACTIONS(56), + }, + [3902] = { + [sym__heredoc_middle] = ACTIONS(6812), + [sym__heredoc_end] = ACTIONS(6812), + [anon_sym_DOLLAR] = ACTIONS(7351), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6812), + [sym_comment] = ACTIONS(56), + }, + [3903] = { + [sym__heredoc_middle] = ACTIONS(6816), + [sym__heredoc_end] = ACTIONS(6816), + [anon_sym_DOLLAR] = ACTIONS(7353), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6816), + [sym_comment] = ACTIONS(56), + }, + [3904] = { + [sym__heredoc_middle] = ACTIONS(6820), + [sym__heredoc_end] = ACTIONS(6820), + [anon_sym_DOLLAR] = ACTIONS(7355), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6820), + [sym_comment] = ACTIONS(56), + }, + [3905] = { + [sym__concat] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6812), + [anon_sym_RPAREN] = ACTIONS(6812), + [sym_comment] = ACTIONS(56), + }, + [3906] = { + [sym__concat] = ACTIONS(6816), + [anon_sym_PIPE] = ACTIONS(6816), + [anon_sym_RPAREN] = ACTIONS(6816), + [sym_comment] = ACTIONS(56), + }, + [3907] = { + [sym__concat] = ACTIONS(6820), + [anon_sym_PIPE] = ACTIONS(6820), + [anon_sym_RPAREN] = ACTIONS(6820), + [sym_comment] = ACTIONS(56), + }, + [3908] = { + [sym__special_characters] = ACTIONS(7587), + [anon_sym_DQUOTE] = ACTIONS(7589), + [anon_sym_DOLLAR] = ACTIONS(7587), + [sym_raw_string] = ACTIONS(7589), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7589), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7589), + [anon_sym_BQUOTE] = ACTIONS(7589), + [anon_sym_LT_LPAREN] = ACTIONS(7589), + [anon_sym_GT_LPAREN] = ACTIONS(7589), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7587), + }, + [3909] = { + [sym__special_characters] = ACTIONS(7595), + [anon_sym_DQUOTE] = ACTIONS(7597), + [anon_sym_DOLLAR] = ACTIONS(7595), + [sym_raw_string] = ACTIONS(7597), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7597), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7597), + [anon_sym_BQUOTE] = ACTIONS(7597), + [anon_sym_LT_LPAREN] = ACTIONS(7597), + [anon_sym_GT_LPAREN] = ACTIONS(7597), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7595), + }, + [3910] = { + [sym__concat] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_SEMI_SEMI] = ACTIONS(6814), + [anon_sym_PIPE_AMP] = ACTIONS(6814), + [anon_sym_AMP_AMP] = ACTIONS(6814), + [anon_sym_PIPE_PIPE] = ACTIONS(6814), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6814), + [anon_sym_LF] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6814), + }, + [3911] = { + [sym__concat] = ACTIONS(6816), + [anon_sym_PIPE] = ACTIONS(6818), + [anon_sym_SEMI_SEMI] = ACTIONS(6818), + [anon_sym_PIPE_AMP] = ACTIONS(6818), + [anon_sym_AMP_AMP] = ACTIONS(6818), + [anon_sym_PIPE_PIPE] = ACTIONS(6818), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6818), + [anon_sym_LF] = ACTIONS(6818), + [anon_sym_AMP] = ACTIONS(6818), + }, + [3912] = { + [sym__concat] = ACTIONS(6820), + [anon_sym_PIPE] = ACTIONS(6822), + [anon_sym_SEMI_SEMI] = ACTIONS(6822), + [anon_sym_PIPE_AMP] = ACTIONS(6822), + [anon_sym_AMP_AMP] = ACTIONS(6822), + [anon_sym_PIPE_PIPE] = ACTIONS(6822), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6822), + [anon_sym_LF] = ACTIONS(6822), + [anon_sym_AMP] = ACTIONS(6822), + }, + [3913] = { + [sym__concat] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(5931), + [anon_sym_RPAREN] = ACTIONS(5931), + [anon_sym_SEMI_SEMI] = ACTIONS(5931), + [anon_sym_PIPE_AMP] = ACTIONS(5931), + [anon_sym_AMP_AMP] = ACTIONS(5931), + [anon_sym_PIPE_PIPE] = ACTIONS(5931), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5931), + [anon_sym_LF] = ACTIONS(5931), + [anon_sym_AMP] = ACTIONS(5931), + }, + [3914] = { + [sym__concat] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(5935), + [anon_sym_RPAREN] = ACTIONS(5935), + [anon_sym_SEMI_SEMI] = ACTIONS(5935), + [anon_sym_PIPE_AMP] = ACTIONS(5935), + [anon_sym_AMP_AMP] = ACTIONS(5935), + [anon_sym_PIPE_PIPE] = ACTIONS(5935), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5935), + [anon_sym_LF] = ACTIONS(5935), + [anon_sym_AMP] = ACTIONS(5935), + }, + [3915] = { + [sym__concat] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(5939), + [anon_sym_RPAREN] = ACTIONS(5939), + [anon_sym_SEMI_SEMI] = ACTIONS(5939), + [anon_sym_PIPE_AMP] = ACTIONS(5939), + [anon_sym_AMP_AMP] = ACTIONS(5939), + [anon_sym_PIPE_PIPE] = ACTIONS(5939), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5939), + [anon_sym_LF] = ACTIONS(5939), + [anon_sym_AMP] = ACTIONS(5939), + }, + [3916] = { + [sym__concat] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(5943), + [anon_sym_RPAREN] = ACTIONS(5943), + [anon_sym_SEMI_SEMI] = ACTIONS(5943), + [anon_sym_PIPE_AMP] = ACTIONS(5943), + [anon_sym_AMP_AMP] = ACTIONS(5943), + [anon_sym_PIPE_PIPE] = ACTIONS(5943), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5943), + [anon_sym_LF] = ACTIONS(5943), + [anon_sym_AMP] = ACTIONS(5943), + }, + [3917] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7835), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3918] = { + [sym__concat] = ACTIONS(5947), + [anon_sym_PIPE] = ACTIONS(5949), + [anon_sym_RPAREN] = ACTIONS(5949), + [anon_sym_SEMI_SEMI] = ACTIONS(5949), + [anon_sym_PIPE_AMP] = ACTIONS(5949), + [anon_sym_AMP_AMP] = ACTIONS(5949), + [anon_sym_PIPE_PIPE] = ACTIONS(5949), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5949), + [anon_sym_LF] = ACTIONS(5949), + [anon_sym_AMP] = ACTIONS(5949), + }, + [3919] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7837), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3920] = { + [sym__concat] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(5955), + [anon_sym_RPAREN] = ACTIONS(5955), + [anon_sym_SEMI_SEMI] = ACTIONS(5955), + [anon_sym_PIPE_AMP] = ACTIONS(5955), + [anon_sym_AMP_AMP] = ACTIONS(5955), + [anon_sym_PIPE_PIPE] = ACTIONS(5955), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5955), + [anon_sym_LF] = ACTIONS(5955), + [anon_sym_AMP] = ACTIONS(5955), + }, + [3921] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7839), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3922] = { + [sym__concat] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(5961), + [anon_sym_RPAREN] = ACTIONS(5961), + [anon_sym_SEMI_SEMI] = ACTIONS(5961), + [anon_sym_PIPE_AMP] = ACTIONS(5961), + [anon_sym_AMP_AMP] = ACTIONS(5961), + [anon_sym_PIPE_PIPE] = ACTIONS(5961), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5961), + [anon_sym_LF] = ACTIONS(5961), + [anon_sym_AMP] = ACTIONS(5961), + }, + [3923] = { + [sym__concat] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(5965), + [anon_sym_RPAREN] = ACTIONS(5965), + [anon_sym_SEMI_SEMI] = ACTIONS(5965), + [anon_sym_PIPE_AMP] = ACTIONS(5965), + [anon_sym_AMP_AMP] = ACTIONS(5965), + [anon_sym_PIPE_PIPE] = ACTIONS(5965), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5965), + [anon_sym_LF] = ACTIONS(5965), + [anon_sym_AMP] = ACTIONS(5965), + }, + [3924] = { + [sym__concat] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(6710), + [anon_sym_RPAREN] = ACTIONS(5929), + [anon_sym_PIPE_AMP] = ACTIONS(5929), + [anon_sym_AMP_AMP] = ACTIONS(5929), + [anon_sym_PIPE_PIPE] = ACTIONS(5929), + [sym_comment] = ACTIONS(56), + }, + [3925] = { + [sym__concat] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(6712), + [anon_sym_RPAREN] = ACTIONS(5933), + [anon_sym_PIPE_AMP] = ACTIONS(5933), + [anon_sym_AMP_AMP] = ACTIONS(5933), + [anon_sym_PIPE_PIPE] = ACTIONS(5933), + [sym_comment] = ACTIONS(56), + }, + [3926] = { + [sym__concat] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(6714), + [anon_sym_RPAREN] = ACTIONS(5937), + [anon_sym_PIPE_AMP] = ACTIONS(5937), + [anon_sym_AMP_AMP] = ACTIONS(5937), + [anon_sym_PIPE_PIPE] = ACTIONS(5937), + [sym_comment] = ACTIONS(56), + }, + [3927] = { + [sym__concat] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_RPAREN] = ACTIONS(5941), + [anon_sym_PIPE_AMP] = ACTIONS(5941), + [anon_sym_AMP_AMP] = ACTIONS(5941), + [anon_sym_PIPE_PIPE] = ACTIONS(5941), + [sym_comment] = ACTIONS(56), + }, + [3928] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7841), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3929] = { + [sym__concat] = ACTIONS(5947), + [anon_sym_PIPE] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(5947), + [anon_sym_PIPE_AMP] = ACTIONS(5947), + [anon_sym_AMP_AMP] = ACTIONS(5947), + [anon_sym_PIPE_PIPE] = ACTIONS(5947), + [sym_comment] = ACTIONS(56), + }, + [3930] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7843), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3931] = { + [sym__concat] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(6724), + [anon_sym_RPAREN] = ACTIONS(5953), + [anon_sym_PIPE_AMP] = ACTIONS(5953), + [anon_sym_AMP_AMP] = ACTIONS(5953), + [anon_sym_PIPE_PIPE] = ACTIONS(5953), + [sym_comment] = ACTIONS(56), + }, + [3932] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7845), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3933] = { + [sym__concat] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(6728), + [anon_sym_RPAREN] = ACTIONS(5959), + [anon_sym_PIPE_AMP] = ACTIONS(5959), + [anon_sym_AMP_AMP] = ACTIONS(5959), + [anon_sym_PIPE_PIPE] = ACTIONS(5959), + [sym_comment] = ACTIONS(56), + }, + [3934] = { + [sym__concat] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(6730), + [anon_sym_RPAREN] = ACTIONS(5963), + [anon_sym_PIPE_AMP] = ACTIONS(5963), + [anon_sym_AMP_AMP] = ACTIONS(5963), + [anon_sym_PIPE_PIPE] = ACTIONS(5963), + [sym_comment] = ACTIONS(56), + }, + [3935] = { + [sym__concat] = ACTIONS(5929), + [anon_sym_PIPE] = ACTIONS(6710), + [anon_sym_PIPE_AMP] = ACTIONS(5929), + [anon_sym_AMP_AMP] = ACTIONS(5929), + [anon_sym_PIPE_PIPE] = ACTIONS(5929), + [anon_sym_BQUOTE] = ACTIONS(5929), + [sym_comment] = ACTIONS(56), + }, + [3936] = { + [sym__concat] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(6712), + [anon_sym_PIPE_AMP] = ACTIONS(5933), + [anon_sym_AMP_AMP] = ACTIONS(5933), + [anon_sym_PIPE_PIPE] = ACTIONS(5933), + [anon_sym_BQUOTE] = ACTIONS(5933), + [sym_comment] = ACTIONS(56), + }, + [3937] = { + [sym__concat] = ACTIONS(5937), + [anon_sym_PIPE] = ACTIONS(6714), + [anon_sym_PIPE_AMP] = ACTIONS(5937), + [anon_sym_AMP_AMP] = ACTIONS(5937), + [anon_sym_PIPE_PIPE] = ACTIONS(5937), + [anon_sym_BQUOTE] = ACTIONS(5937), + [sym_comment] = ACTIONS(56), + }, + [3938] = { + [sym__concat] = ACTIONS(5941), + [anon_sym_PIPE] = ACTIONS(6716), + [anon_sym_PIPE_AMP] = ACTIONS(5941), + [anon_sym_AMP_AMP] = ACTIONS(5941), + [anon_sym_PIPE_PIPE] = ACTIONS(5941), + [anon_sym_BQUOTE] = ACTIONS(5941), + [sym_comment] = ACTIONS(56), + }, + [3939] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7847), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3940] = { + [sym__concat] = ACTIONS(5947), + [anon_sym_PIPE] = ACTIONS(6720), + [anon_sym_PIPE_AMP] = ACTIONS(5947), + [anon_sym_AMP_AMP] = ACTIONS(5947), + [anon_sym_PIPE_PIPE] = ACTIONS(5947), + [anon_sym_BQUOTE] = ACTIONS(5947), + [sym_comment] = ACTIONS(56), + }, + [3941] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7849), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3942] = { + [sym__concat] = ACTIONS(5953), + [anon_sym_PIPE] = ACTIONS(6724), + [anon_sym_PIPE_AMP] = ACTIONS(5953), + [anon_sym_AMP_AMP] = ACTIONS(5953), + [anon_sym_PIPE_PIPE] = ACTIONS(5953), + [anon_sym_BQUOTE] = ACTIONS(5953), + [sym_comment] = ACTIONS(56), + }, + [3943] = { + [sym_concatenation] = STATE(451), + [sym_string] = STATE(455), + [sym_simple_expansion] = STATE(455), + [sym_string_expansion] = STATE(455), + [sym_expansion] = STATE(455), + [sym_command_substitution] = STATE(455), + [sym_process_substitution] = STATE(455), + [aux_sym_expansion_repeat1] = STATE(979), + [anon_sym_RBRACE] = ACTIONS(7851), + [anon_sym_EQ] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(838), + [anon_sym_COLON] = ACTIONS(826), + [anon_sym_COLON_QMARK] = ACTIONS(826), + [anon_sym_COLON_DASH] = ACTIONS(826), + [anon_sym_PERCENT] = ACTIONS(826), + [anon_sym_DASH] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(842), + [anon_sym_BQUOTE] = ACTIONS(844), + [anon_sym_LT_LPAREN] = ACTIONS(846), + [anon_sym_GT_LPAREN] = ACTIONS(846), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(848), + }, + [3944] = { + [sym__concat] = ACTIONS(5959), + [anon_sym_PIPE] = ACTIONS(6728), + [anon_sym_PIPE_AMP] = ACTIONS(5959), + [anon_sym_AMP_AMP] = ACTIONS(5959), + [anon_sym_PIPE_PIPE] = ACTIONS(5959), + [anon_sym_BQUOTE] = ACTIONS(5959), + [sym_comment] = ACTIONS(56), + }, + [3945] = { + [sym__concat] = ACTIONS(5963), + [anon_sym_PIPE] = ACTIONS(6730), + [anon_sym_PIPE_AMP] = ACTIONS(5963), + [anon_sym_AMP_AMP] = ACTIONS(5963), + [anon_sym_PIPE_PIPE] = ACTIONS(5963), + [anon_sym_BQUOTE] = ACTIONS(5963), + [sym_comment] = ACTIONS(56), + }, + [3946] = { + [sym__concat] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(6814), + [anon_sym_RPAREN] = ACTIONS(6814), + [anon_sym_SEMI_SEMI] = ACTIONS(6814), + [anon_sym_PIPE_AMP] = ACTIONS(6814), + [anon_sym_AMP_AMP] = ACTIONS(6814), + [anon_sym_PIPE_PIPE] = ACTIONS(6814), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6814), + [anon_sym_LF] = ACTIONS(6814), + [anon_sym_AMP] = ACTIONS(6814), + }, + [3947] = { + [sym__concat] = ACTIONS(6816), + [anon_sym_PIPE] = ACTIONS(6818), + [anon_sym_RPAREN] = ACTIONS(6818), + [anon_sym_SEMI_SEMI] = ACTIONS(6818), + [anon_sym_PIPE_AMP] = ACTIONS(6818), + [anon_sym_AMP_AMP] = ACTIONS(6818), + [anon_sym_PIPE_PIPE] = ACTIONS(6818), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6818), + [anon_sym_LF] = ACTIONS(6818), + [anon_sym_AMP] = ACTIONS(6818), + }, + [3948] = { + [sym__concat] = ACTIONS(6820), + [anon_sym_PIPE] = ACTIONS(6822), + [anon_sym_RPAREN] = ACTIONS(6822), + [anon_sym_SEMI_SEMI] = ACTIONS(6822), + [anon_sym_PIPE_AMP] = ACTIONS(6822), + [anon_sym_AMP_AMP] = ACTIONS(6822), + [anon_sym_PIPE_PIPE] = ACTIONS(6822), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6822), + [anon_sym_LF] = ACTIONS(6822), + [anon_sym_AMP] = ACTIONS(6822), + }, + [3949] = { + [sym__concat] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(7351), + [anon_sym_RPAREN] = ACTIONS(6812), + [anon_sym_PIPE_AMP] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [sym_comment] = ACTIONS(56), + }, + [3950] = { + [sym__concat] = ACTIONS(6816), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_RPAREN] = ACTIONS(6816), + [anon_sym_PIPE_AMP] = ACTIONS(6816), + [anon_sym_AMP_AMP] = ACTIONS(6816), + [anon_sym_PIPE_PIPE] = ACTIONS(6816), + [sym_comment] = ACTIONS(56), + }, + [3951] = { + [sym__concat] = ACTIONS(6820), + [anon_sym_PIPE] = ACTIONS(7355), + [anon_sym_RPAREN] = ACTIONS(6820), + [anon_sym_PIPE_AMP] = ACTIONS(6820), + [anon_sym_AMP_AMP] = ACTIONS(6820), + [anon_sym_PIPE_PIPE] = ACTIONS(6820), + [sym_comment] = ACTIONS(56), + }, + [3952] = { + [sym__concat] = ACTIONS(6812), + [anon_sym_PIPE] = ACTIONS(7351), + [anon_sym_PIPE_AMP] = ACTIONS(6812), + [anon_sym_AMP_AMP] = ACTIONS(6812), + [anon_sym_PIPE_PIPE] = ACTIONS(6812), + [anon_sym_BQUOTE] = ACTIONS(6812), + [sym_comment] = ACTIONS(56), + }, + [3953] = { + [sym__concat] = ACTIONS(6816), + [anon_sym_PIPE] = ACTIONS(7353), + [anon_sym_PIPE_AMP] = ACTIONS(6816), + [anon_sym_AMP_AMP] = ACTIONS(6816), + [anon_sym_PIPE_PIPE] = ACTIONS(6816), + [anon_sym_BQUOTE] = ACTIONS(6816), + [sym_comment] = ACTIONS(56), + }, + [3954] = { + [sym__concat] = ACTIONS(6820), + [anon_sym_PIPE] = ACTIONS(7355), + [anon_sym_PIPE_AMP] = ACTIONS(6820), + [anon_sym_AMP_AMP] = ACTIONS(6820), + [anon_sym_PIPE_PIPE] = ACTIONS(6820), + [anon_sym_BQUOTE] = ACTIONS(6820), [sym_comment] = ACTIONS(56), }, }; @@ -70764,51 +94602,51 @@ static TSParseActionEntry ts_parse_actions[] = { [92] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(54), [94] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(55), [96] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(56), - [98] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(57), - [100] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(58), - [102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(59), - [104] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(60), + [98] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(57), + [100] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(58), + [102] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(59), + [104] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(60), [106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(61), - [108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(62), + [108] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(62), [110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(63), [112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(64), [114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(65), - [116] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(66), - [118] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(73), - [120] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(74), - [122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(75), + [116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(66), + [118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(67), + [120] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(68), + [122] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(75), [124] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(76), [126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(77), - [128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(78), + [128] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(78), [130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(79), [132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(80), [134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(81), - [136] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(77), - [138] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(84), - [140] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(85), - [142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(86), + [136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(82), + [138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(83), + [140] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(79), + [142] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(86), [144] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(87), [146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(88), - [148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(89), + [148] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(89), [150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(90), [152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(91), [154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(92), - [156] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(88), - [158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(95), - [160] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 1), - [162] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(96), - [164] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(97), + [156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(93), + [158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(94), + [160] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(90), + [162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(97), + [164] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 1), [166] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(98), [168] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(99), [170] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(100), [172] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(101), [174] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(102), [176] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(103), - [178] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT_EXTRA(), - [180] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(104), - [182] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_unset_command, 1), - [184] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(108), - [186] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(109), + [178] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(104), + [180] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(105), + [182] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT_EXTRA(), + [184] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(106), + [186] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_unset_command, 1), [188] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(110), [190] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(111), [192] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(112), @@ -70816,2764 +94654,3702 @@ static TSParseActionEntry ts_parse_actions[] = { [196] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(114), [198] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(115), [200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(116), - [202] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(119), - [204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(120), + [202] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(117), + [204] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(118), [206] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(121), [208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(122), - [210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(123), + [210] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(123), [212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(124), [214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(125), [216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(126), - [218] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(122), - [220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), - [222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(128), - [224] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), - [226] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(130), - [228] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(131), - [230] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(132), + [218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(127), + [220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(128), + [222] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(124), + [224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), + [226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(130), + [228] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), + [230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(132), [232] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(133), - [234] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(134), + [234] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(134), [236] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(135), - [238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(137), - [240] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(138), - [242] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(137), - [244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1), - [246] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1), - [248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(140), - [250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(141), + [238] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(136), + [240] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(137), + [242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(139), + [244] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(140), + [246] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(139), + [248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1), + [250] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_name, 1), [252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(142), - [254] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(143), - [256] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(141), - [258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(145), - [260] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(146), - [262] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(147), + [254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(143), + [256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(144), + [258] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(145), + [260] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(143), + [262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(147), [264] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(148), [266] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(149), [268] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(150), - [270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(151), + [270] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(151), [272] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(152), [274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(153), [276] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(154), - [278] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(155), - [280] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(156), - [282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(157), - [284] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(158), + [278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(155), + [280] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(156), + [282] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(157), + [284] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(158), [286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(159), - [288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(160), + [288] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(160), [290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(161), [292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(162), [294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(163), - [296] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(164), - [298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(171), - [300] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(172), - [302] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(173), + [296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(164), + [298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(165), + [300] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(166), + [302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(173), [304] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(174), [306] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(175), - [308] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(176), + [308] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(176), [310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(177), [312] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(178), - [314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(179), - [316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(180), + [314] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(179), + [316] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(180), [318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(181), - [320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(182), + [320] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(182), [322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(183), - [324] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(184), - [326] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(192), - [328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, ACCEPT_INPUT(), - [330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), - [332] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 1), - [334] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), - [336] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(193), - [338] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(194), - [340] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(195), - [342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(196), - [344] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 1), - [346] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(197), - [348] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(198), - [350] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(199), - [352] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(200), - [354] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(16), - [356] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(17), - [358] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(201), - [360] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(19), - [362] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(20), - [364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(21), - [366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(22), - [368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), - [370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), - [372] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), - [374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_program, 1), - [376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(207), - [378] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(15), - [380] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(18), - [382] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(211), - [384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(212), - [386] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(212), - [388] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(214), - [390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(215), + [324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(184), + [326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(185), + [328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(186), + [330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(187), + [332] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(188), + [334] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(196), + [336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, ACCEPT_INPUT(), + [338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), + [340] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 1), + [342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), + [344] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(197), + [346] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(198), + [348] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(199), + [350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(200), + [352] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 1), + [354] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(201), + [356] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(202), + [358] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(203), + [360] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(204), + [362] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(205), + [364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(16), + [366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(17), + [368] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(206), + [370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(19), + [372] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(20), + [374] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(21), + [376] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(22), + [378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), + [380] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), + [382] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 1, .fragile = true), + [384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_program, 1), + [386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(212), + [388] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(15), + [390] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(18), [392] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(216), [394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(217), - [396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(218), - [398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(219), + [396] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(217), + [398] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(219), [400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(220), - [402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(221), - [404] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(217), + [402] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(221), + [404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(222), [406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(223), [408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(224), - [410] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(225), + [410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(225), [412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(226), - [414] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(227), + [414] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(222), [416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(228), [418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(229), - [420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(230), + [420] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(230), [422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(231), - [424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(232), - [426] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(228), - [428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_variable_assignment, 2), - [430] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_variable_assignment, 2), - [432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(233), - [434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(234), - [436] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(236), - [438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(237), - [440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(238), - [442] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(239), - [444] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(240), - [446] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(242), - [448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(244), - [450] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(245), - [452] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(244), - [454] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(247), - [456] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(248), + [424] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(232), + [426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(233), + [428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(234), + [430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(235), + [432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(236), + [434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(237), + [436] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(233), + [438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_variable_assignment, 2), + [440] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_variable_assignment, 2), + [442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(238), + [444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(239), + [446] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(241), + [448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(242), + [450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(243), + [452] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(244), + [454] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(245), + [456] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(247), [458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(249), - [460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(250), - [462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(251), + [460] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(250), + [462] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(249), [464] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(252), - [466] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(250), - [468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(260), - [470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(261), - [472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(263), - [474] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(265), - [476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(266), - [478] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(267), - [480] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(268), - [482] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(269), - [484] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(270), - [486] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(271), - [488] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(272), - [490] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(273), - [492] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(274), + [466] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(253), + [468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(254), + [470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(255), + [472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(256), + [474] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(257), + [476] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(255), + [478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(265), + [480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(266), + [482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(268), + [484] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(270), + [486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(273), + [488] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(274), + [490] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(275), + [492] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(276), [494] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(277), [496] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(278), [498] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(279), [500] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(280), [502] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(281), - [504] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(282), - [506] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(283), - [508] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(284), - [510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(286), + [504] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(284), + [506] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(285), + [508] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(286), + [510] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(287), [512] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(288), - [514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(290), - [516] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(291), - [518] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(290), + [514] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(289), + [516] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(290), + [518] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(291), [520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(293), - [522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(294), - [524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(295), - [526] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(296), - [528] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(294), - [530] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(304), - [532] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(305), - [534] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(306), - [536] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(307), - [538] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(308), - [540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(309), - [542] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(310), - [544] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(311), - [546] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(312), - [548] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(59), - [550] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(60), - [552] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(313), - [554] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(62), - [556] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(63), - [558] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(64), - [560] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(65), - [562] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(58), - [564] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(61), - [566] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(320), - [568] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(75), - [570] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(76), - [572] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(321), - [574] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(78), - [576] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(79), - [578] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(80), - [580] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(81), - [582] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(322), - [584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(323), - [586] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_bracket_command_repeat1, 1, .alias_sequence_id = 1), - [588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1, .alias_sequence_id = 1), - [590] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1, .alias_sequence_id = 1), - [592] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(325), - [594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(327), - [596] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(328), - [598] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(327), - [600] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_bracket_command_repeat1, 1), - [602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), - [604] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), - [606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(330), - [608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(331), - [610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(332), - [612] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(333), - [614] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(331), - [616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(341), - [618] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(74), - [620] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(343), - [622] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(86), - [624] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(87), - [626] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(344), - [628] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(89), - [630] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(90), - [632] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(91), - [634] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(92), - [636] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(345), - [638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(346), - [640] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(348), - [642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(350), - [644] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(351), - [646] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(350), - [648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(353), + [522] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(295), + [524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(297), + [526] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(298), + [528] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(297), + [530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(300), + [532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(301), + [534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(302), + [536] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(303), + [538] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(301), + [540] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(311), + [542] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(312), + [544] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(313), + [546] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(314), + [548] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(315), + [550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(316), + [552] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(317), + [554] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(318), + [556] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(319), + [558] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(320), + [560] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(61), + [562] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(62), + [564] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(321), + [566] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(64), + [568] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(65), + [570] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(66), + [572] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(67), + [574] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(60), + [576] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(63), + [578] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(328), + [580] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(77), + [582] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(78), + [584] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(329), + [586] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(80), + [588] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(81), + [590] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(82), + [592] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(83), + [594] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(330), + [596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(331), + [598] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), + [600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), + [602] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), + [604] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(333), + [606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(335), + [608] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(336), + [610] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(335), + [612] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 1), + [614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), + [616] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), + [618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(338), + [620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(339), + [622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(340), + [624] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(341), + [626] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(339), + [628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(349), + [630] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(76), + [632] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(351), + [634] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(88), + [636] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(89), + [638] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(352), + [640] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(91), + [642] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(92), + [644] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(93), + [646] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(94), + [648] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(353), [650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(354), - [652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(355), - [654] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(356), - [656] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(354), - [658] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(85), - [660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(365), - [662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(367), - [664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), - [666] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), - [668] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(369), - [670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(97), - [672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(371), - [674] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(372), - [676] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(371), - [678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [680] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(374), - [684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(375), - [686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(376), - [688] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(377), - [690] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(375), - [692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), - [694] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), - [696] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 2), - [698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(386), - [700] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), - [702] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(388), - [704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(109), - [706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(390), - [708] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(391), - [710] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(390), - [712] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1), - [714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(393), - [716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(394), - [718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(395), - [720] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(396), - [722] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(394), - [724] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), - [726] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_unset_command, 2), - [728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), - [730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(405), - [732] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), - [734] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(407), - [736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(409), - [738] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(410), - [740] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(409), - [742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), - [744] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 2), - [746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(412), - [748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(413), - [750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(414), - [752] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(415), - [754] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(413), - [756] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(423), - [758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(423), - [760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2), - [762] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2), - [764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 2), - [766] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 2), - [768] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(425), - [770] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(426), - [772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(425), - [774] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(427), - [776] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(425), - [778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(428), - [780] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 1), - [782] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 1), - [784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(429), - [786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(430), - [788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(431), - [790] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(432), - [792] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(430), - [794] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(438), - [796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), - [798] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), - [800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), - [802] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), - [804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string_expansion, 2), - [806] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string_expansion, 2), - [808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(440), - [810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(441), - [812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(442), - [814] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(443), - [816] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(444), - [818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(445), - [820] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(446), - [822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(447), - [824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(443), - [826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(448), - [828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(449), - [830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(450), - [832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(451), - [834] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(447), - [836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(453), - [838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(454), - [840] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(455), - [842] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(454), - [844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(457), - [846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(459), - [848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(461), - [850] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(463), - [852] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(466), - [854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(467), - [856] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(467), - [858] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(469), - [860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(475), - [862] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 1), - [864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 1), - [866] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(476), - [868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(477), - [870] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(478), - [872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(479), - [874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(480), - [876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(481), - [878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(482), - [880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(483), - [882] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(484), - [884] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(479), - [886] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_unset_command, 1), - [888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_unset_command, 1), - [890] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(488), - [892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(489), - [894] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(490), - [896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(491), - [898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(492), - [900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(493), - [902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(494), - [904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(495), - [906] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(496), - [908] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(491), - [910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(499), - [912] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), - [914] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(501), + [652] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(356), + [654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(358), + [656] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(359), + [658] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(358), + [660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(361), + [662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(362), + [664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(363), + [666] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(364), + [668] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(362), + [670] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(87), + [672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(373), + [674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(375), + [676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), + [678] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), + [680] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(377), + [682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(99), + [684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(379), + [686] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(380), + [688] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(379), + [690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [692] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(382), + [696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(383), + [698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(384), + [700] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(385), + [702] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(383), + [704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), + [706] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), + [708] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 2), + [710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(394), + [712] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), + [714] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(396), + [716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(111), + [718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(398), + [720] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(399), + [722] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(398), + [724] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1), + [726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(401), + [728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(402), + [730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(403), + [732] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(404), + [734] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(402), + [736] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), + [738] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_unset_command, 2), + [740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), + [742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(413), + [744] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), + [746] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(415), + [748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(417), + [750] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(418), + [752] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(417), + [754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), + [756] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 2), + [758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(420), + [760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(421), + [762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(422), + [764] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(423), + [766] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(421), + [768] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(431), + [770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(431), + [772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2), + [774] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2), + [776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 2), + [778] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 2), + [780] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(433), + [782] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(434), + [784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(433), + [786] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(435), + [788] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(433), + [790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(436), + [792] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 1), + [794] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 1), + [796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(437), + [798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(438), + [800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(439), + [802] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(440), + [804] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(438), + [806] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(446), + [808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [810] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), + [814] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), + [816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string_expansion, 2), + [818] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string_expansion, 2), + [820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(448), + [822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(449), + [824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(450), + [826] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(451), + [828] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(452), + [830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(453), + [832] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(454), + [834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(455), + [836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(451), + [838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(456), + [840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(457), + [842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(458), + [844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(459), + [846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(460), + [848] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(455), + [850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(462), + [852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(463), + [854] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(464), + [856] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(463), + [858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(466), + [860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(467), + [862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(469), + [864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(470), + [866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(472), + [868] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(474), + [870] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(477), + [872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(478), + [874] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(478), + [876] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(480), + [878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(486), + [880] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 1), + [882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 1), + [884] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(487), + [886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(488), + [888] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(489), + [890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(490), + [892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(491), + [894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(492), + [896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(493), + [898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(494), + [900] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(495), + [902] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(490), + [904] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_unset_command, 1), + [906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_unset_command, 1), + [908] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(499), + [910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(500), + [912] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(501), + [914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(502), [916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(503), - [918] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(504), - [920] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(503), - [922] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_name, 1), - [924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(506), - [926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(507), - [928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(508), - [930] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(509), - [932] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(507), - [934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(517), - [936] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(518), - [938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(519), - [940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(518), - [942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(520), - [944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(521), - [946] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 1), - [948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 1), - [950] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(522), - [952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(522), - [954] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(523), - [956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(523), - [958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(524), - [960] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(525), - [962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(526), - [964] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(526), - [966] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(156), - [968] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(159), - [970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(532), - [972] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(534), - [974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(535), - [976] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(536), - [978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(537), - [980] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(538), - [982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(539), - [984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(540), - [986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(541), - [988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(543), - [990] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(539), + [918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(504), + [920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(505), + [922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(506), + [924] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(507), + [926] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(502), + [928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(510), + [930] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), + [932] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(512), + [934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(514), + [936] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(515), + [938] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(514), + [940] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_name, 1), + [942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(517), + [944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(518), + [946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(519), + [948] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(520), + [950] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(518), + [952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(528), + [954] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(529), + [956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(530), + [958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(529), + [960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(531), + [962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(532), + [964] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 1), + [966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 1), + [968] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(533), + [970] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(534), + [972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(534), + [974] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(535), + [976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(535), + [978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(536), + [980] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(537), + [982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(538), + [984] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(538), + [986] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(158), + [988] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(161), + [990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(544), [992] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(546), - [994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(547), - [996] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(548), - [998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(549), - [1000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(550), - [1002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(551), - [1004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(553), - [1006] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(549), - [1008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(555), - [1010] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(557), - [1012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(559), - [1014] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(560), - [1016] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(559), - [1018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(562), - [1020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(563), - [1022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(564), - [1024] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(565), - [1026] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(563), - [1028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(573), - [1030] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(574), - [1032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(574), - [1034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(575), - [1036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(576), - [1038] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(577), + [994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(549), + [996] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(550), + [998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(551), + [1000] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(552), + [1002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(553), + [1004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(554), + [1006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(555), + [1008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(557), + [1010] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(553), + [1012] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(560), + [1014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(561), + [1016] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(562), + [1018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(563), + [1020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(564), + [1022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(565), + [1024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(567), + [1026] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(563), + [1028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(569), + [1030] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(571), + [1032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(573), + [1034] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(574), + [1036] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(573), + [1038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(576), [1040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(577), [1042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(578), - [1044] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(579), - [1046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(580), - [1048] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(580), - [1050] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(176), - [1052] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(179), - [1054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(584), - [1056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(585), - [1058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), - [1060] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__terminated_statement, 2), - [1062] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), - [1064] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(590), - [1066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(590), - [1068] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(591), - [1070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(592), - [1072] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(593), - [1074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(594), - [1076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(595), - [1078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(596), - [1080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(597), - [1082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(598), - [1084] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(594), - [1086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(600), - [1088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(601), - [1090] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(603), - [1092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(604), - [1094] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(604), - [1096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), - [1098] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), - [1100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1), - [1102] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1), - [1104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 1), - [1106] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 1), - [1108] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 2), - [1110] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2), - [1113] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), - [1116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), - [1118] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), - [1121] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), - [1124] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), - [1127] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7), - [1130] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(8), - [1133] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(9), - [1136] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(10), - [1139] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), - [1142] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(12), - [1145] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(13), - [1148] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), - [1151] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), - [1154] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), - [1157] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(16), - [1160] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), - [1163] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(18), - [1166] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(19), - [1169] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(20), - [1172] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(21), - [1175] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(22), - [1178] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(23), - [1181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(609), - [1183] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2), - [1186] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(207), - [1189] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(14), - [1192] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(14), - [1195] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), - [1197] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), - [1199] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), - [1201] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), - [1203] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), - [1205] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3), - [1207] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(611), - [1209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(612), - [1211] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(614), - [1213] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(616), - [1215] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(617), - [1217] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(616), - [1219] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(619), - [1221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(620), - [1223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(621), - [1225] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(622), - [1227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(623), - [1229] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(624), - [1231] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(622), - [1233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(632), - [1235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2), - [1237] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2), - [1239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(633), - [1241] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(634), - [1243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(635), - [1245] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(636), - [1247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(637), - [1249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(638), - [1251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(639), - [1253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(640), - [1255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(641), - [1257] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(637), - [1259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), - [1261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(644), - [1263] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), - [1265] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(646), - [1267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(648), - [1269] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(649), - [1271] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(648), - [1273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(651), - [1275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(652), - [1277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(653), - [1279] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(654), - [1281] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(652), - [1283] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(662), - [1285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(663), - [1287] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(664), - [1289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(665), - [1291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(666), - [1293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(667), - [1295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(668), - [1297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(669), - [1299] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(665), - [1301] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(672), - [1303] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), - [1305] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(678), - [1307] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(679), - [1309] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(680), - [1311] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(688), - [1313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(688), - [1315] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(689), - [1317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(690), - [1319] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(692), - [1321] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(693), - [1323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(694), - [1325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(695), - [1327] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(696), - [1329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(698), - [1331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(699), - [1333] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(700), - [1335] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(699), - [1337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(702), - [1339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(704), - [1341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(706), - [1343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(707), - [1345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(708), - [1347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(709), - [1349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(714), - [1351] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), - [1353] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(715), - [1355] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(717), - [1357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(718), - [1359] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(719), - [1361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(720), - [1363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(721), - [1365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(722), - [1367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(723), - [1369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(724), - [1371] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(720), - [1373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(726), - [1375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(728), - [1377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(729), - [1379] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(731), - [1381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(268), - [1383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(733), - [1385] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(734), - [1387] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(733), - [1389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(736), - [1391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(737), - [1393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(738), - [1395] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(739), - [1397] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(737), - [1399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(748), - [1401] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(750), - [1403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(278), - [1405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(752), + [1044] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(579), + [1046] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(577), + [1048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(587), + [1050] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(588), + [1052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(588), + [1054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(589), + [1056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(590), + [1058] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(591), + [1060] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(592), + [1062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(592), + [1064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(593), + [1066] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(594), + [1068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(595), + [1070] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(595), + [1072] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(180), + [1074] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(183), + [1076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(599), + [1078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(600), + [1080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), + [1082] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__terminated_statement, 2), + [1084] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), + [1086] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(605), + [1088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(605), + [1090] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(606), + [1092] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(607), + [1094] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(608), + [1096] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(609), + [1098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(610), + [1100] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(611), + [1102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(612), + [1104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(613), + [1106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(614), + [1108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(615), + [1110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(616), + [1112] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(612), + [1114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(618), + [1116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(619), + [1118] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(621), + [1120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(622), + [1122] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(622), + [1124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 1), + [1126] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 1), + [1128] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 2), + [1130] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2), + [1133] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), + [1136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), + [1138] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), + [1141] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), + [1144] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), + [1147] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7), + [1150] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(8), + [1153] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(9), + [1156] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(10), + [1159] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), + [1162] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(12), + [1165] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(13), + [1168] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), + [1171] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), + [1174] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), + [1177] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(16), + [1180] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), + [1183] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(18), + [1186] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(19), + [1189] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(20), + [1192] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(21), + [1195] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(22), + [1198] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(23), + [1201] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(627), + [1203] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2), + [1206] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(212), + [1209] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(14), + [1212] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(14), + [1215] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), + [1217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), + [1219] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), + [1221] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), + [1223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), + [1225] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3), + [1227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(629), + [1229] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(630), + [1231] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(632), + [1233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(634), + [1235] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(635), + [1237] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(634), + [1239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(637), + [1241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(638), + [1243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(639), + [1245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(640), + [1247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(641), + [1249] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(642), + [1251] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(640), + [1253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(650), + [1255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2), + [1257] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2), + [1259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(651), + [1261] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(652), + [1263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(653), + [1265] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(654), + [1267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(655), + [1269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(656), + [1271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(657), + [1273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(658), + [1275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(659), + [1277] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(655), + [1279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), + [1281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(662), + [1283] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), + [1285] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(664), + [1287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(666), + [1289] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(667), + [1291] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(666), + [1293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(669), + [1295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(670), + [1297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(671), + [1299] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(672), + [1301] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(670), + [1303] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(680), + [1305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(681), + [1307] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(682), + [1309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(683), + [1311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(684), + [1313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(685), + [1315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(686), + [1317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(687), + [1319] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(683), + [1321] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(690), + [1323] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), + [1325] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(696), + [1327] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(697), + [1329] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(698), + [1331] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(706), + [1333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(706), + [1335] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(707), + [1337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(708), + [1339] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(710), + [1341] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(711), + [1343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(712), + [1345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(713), + [1347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(714), + [1349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(715), + [1351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(717), + [1353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(718), + [1355] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(719), + [1357] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(718), + [1359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(721), + [1361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(722), + [1363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(724), + [1365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(725), + [1367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(727), + [1369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(728), + [1371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(729), + [1373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(730), + [1375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(735), + [1377] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), + [1379] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(736), + [1381] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(738), + [1383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(739), + [1385] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(740), + [1387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(741), + [1389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(742), + [1391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(743), + [1393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(744), + [1395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(745), + [1397] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(741), + [1399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(747), + [1401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(749), + [1403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(750), + [1405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(751), [1407] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(753), - [1409] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(752), + [1409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(275), [1411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(755), - [1413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(756), - [1415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(757), - [1417] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(758), - [1419] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(756), - [1421] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(767), - [1423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(767), - [1425] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(769), + [1413] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(756), + [1415] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(755), + [1417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(758), + [1419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(759), + [1421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(760), + [1423] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(761), + [1425] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(759), [1427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(770), - [1429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(771), - [1431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(773), + [1429] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(772), + [1431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(285), [1433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(774), [1435] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(775), [1437] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(774), [1439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(777), - [1441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(779), - [1443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(781), - [1445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(782), - [1447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(783), - [1449] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), - [1451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(784), - [1453] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(787), - [1455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(787), - [1457] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(788), - [1459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(789), - [1461] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(790), - [1463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(791), - [1465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(792), - [1467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(793), - [1469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(794), - [1471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(795), - [1473] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(791), - [1475] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(796), - [1477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(797), - [1479] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(797), - [1481] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(784), - [1483] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(801), - [1485] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_bracket_command_repeat1, 2, .alias_sequence_id = 3), - [1487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2, .alias_sequence_id = 3), - [1489] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2, .alias_sequence_id = 3), - [1491] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_bracket_command_repeat1, 2), - [1493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2), - [1495] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2), - [1497] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(803), - [1499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(803), - [1501] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_concatenation, 2), - [1503] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 2), - [1505] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(805), - [1507] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), - [1509] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), - [1511] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string_expansion, 2), - [1513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(806), - [1515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(807), - [1517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(809), - [1519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(810), - [1521] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(811), - [1523] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(810), - [1525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(813), - [1527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(815), - [1529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(817), - [1531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(818), - [1533] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), - [1535] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_bracket_command_repeat1, 2), SHIFT_REPEAT(73), - [1538] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2), SHIFT_REPEAT(74), - [1541] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2), SHIFT_REPEAT(75), - [1544] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_bracket_command_repeat1, 2), SHIFT_REPEAT(76), - [1547] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2), SHIFT_REPEAT(77), - [1550] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2), SHIFT_REPEAT(78), - [1553] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2), SHIFT_REPEAT(79), - [1556] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2), SHIFT_REPEAT(80), - [1559] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2), SHIFT_REPEAT(81), - [1562] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2), SHIFT_REPEAT(77), - [1565] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(819), - [1567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(819), - [1569] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(821), - [1571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(822), - [1573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(823), - [1575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(825), - [1577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(826), - [1579] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(827), - [1581] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(826), - [1583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(829), - [1585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(831), - [1587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(833), - [1589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(834), - [1591] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_bracket_command_repeat1, 2), SHIFT_REPEAT(84), - [1594] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2), SHIFT_REPEAT(85), - [1597] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2), SHIFT_REPEAT(86), - [1600] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_bracket_command_repeat1, 2), SHIFT_REPEAT(87), - [1603] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2), SHIFT_REPEAT(88), - [1606] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2), SHIFT_REPEAT(89), - [1609] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2), SHIFT_REPEAT(90), - [1612] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2), SHIFT_REPEAT(91), - [1615] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2), SHIFT_REPEAT(92), - [1618] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2), SHIFT_REPEAT(88), - [1621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(835), - [1623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(836), - [1625] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(837), - [1627] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(98), - [1629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(838), - [1631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(100), - [1633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(101), - [1635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(102), - [1637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(103), - [1639] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(838), - [1641] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(839), - [1643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(839), - [1645] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(841), - [1647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(842), - [1649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(843), - [1651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(845), - [1653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(846), - [1655] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(847), - [1657] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(846), - [1659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(849), - [1661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(851), - [1663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(853), - [1665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(854), - [1667] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(95), - [1670] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1672] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(96), - [1675] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(97), - [1678] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(98), - [1681] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(99), - [1684] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(100), - [1687] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(101), - [1690] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(102), - [1693] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(103), - [1696] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(104), - [1699] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(855), - [1701] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(110), - [1703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(855), - [1705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(112), - [1707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(113), - [1709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(114), - [1711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(115), - [1713] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(857), - [1715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(858), - [1717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(859), - [1719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(861), - [1721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(862), - [1723] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(863), - [1725] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(862), - [1727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(865), - [1729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(867), - [1731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(869), - [1733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(870), - [1735] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), - [1737] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(108), - [1740] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(109), - [1743] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(110), - [1746] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(111), - [1749] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(112), - [1752] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(113), - [1755] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(114), - [1758] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(115), - [1761] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(116), - [1764] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(871), - [1766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(871), - [1768] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(873), - [1770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(874), - [1772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(875), - [1774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(877), - [1776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(878), - [1778] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(879), - [1780] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(878), - [1782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(881), - [1784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(883), - [1786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(885), - [1788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(886), - [1790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1792] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1794] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(128), - [1797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(887), - [1799] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), - [1801] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 2), - [1803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(888), - [1805] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(889), - [1807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(891), - [1809] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(892), - [1811] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(893), - [1813] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(892), - [1815] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(895), - [1817] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(897), - [1819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(899), - [1821] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 3), - [1823] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 3), - [1825] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(131), - [1828] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(132), - [1831] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(133), - [1834] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(134), - [1837] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(135), - [1840] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(900), - [1842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(901), - [1844] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(901), - [1846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(903), - [1848] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(904), - [1850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(905), - [1852] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(906), - [1854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(907), - [1856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(908), - [1858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(909), - [1860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(910), - [1862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(911), - [1864] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(907), - [1866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), - [1868] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), - [1870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 1), - [1872] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_expansion_repeat1, 1), - [1874] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 1), - [1876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(913), - [1878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), - [1880] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), - [1882] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), - [1884] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(915), - [1886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(917), - [1888] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(918), - [1890] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(917), - [1892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(920), - [1894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(921), - [1896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(922), - [1898] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(923), - [1900] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(921), - [1902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(931), - [1904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(933), - [1906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(934), - [1908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(936), - [1910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), - [1912] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), - [1914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(939), - [1916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), - [1918] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), - [1920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(940), - [1922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(941), - [1924] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(942), - [1926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(943), - [1928] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(944), - [1930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(945), - [1932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(946), - [1934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(947), - [1936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(948), - [1938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(949), - [1940] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(945), - [1942] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_variable_assignment, 2), - [1944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(950), - [1946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(951), - [1948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(953), - [1950] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(954), - [1952] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(955), - [1954] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(956), - [1956] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(957), - [1958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(958), - [1960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(959), - [1962] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(961), - [1964] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(962), - [1966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(965), - [1968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(966), + [1441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(778), + [1443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(779), + [1445] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(780), + [1447] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(778), + [1449] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(789), + [1451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(789), + [1453] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(791), + [1455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(792), + [1457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(793), + [1459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(794), + [1461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(796), + [1463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(797), + [1465] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(798), + [1467] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(797), + [1469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(800), + [1471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(801), + [1473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(803), + [1475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(804), + [1477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(806), + [1479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(807), + [1481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(808), + [1483] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), + [1485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(809), + [1487] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(812), + [1489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(812), + [1491] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(813), + [1493] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(814), + [1495] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(815), + [1497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(816), + [1499] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(817), + [1501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(818), + [1503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(819), + [1505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(820), + [1507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(821), + [1509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(822), + [1511] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(818), + [1513] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(823), + [1515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(824), + [1517] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(824), + [1519] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(809), + [1521] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(828), + [1523] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), + [1525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), + [1527] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), + [1529] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), + [1531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), + [1533] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), + [1535] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(830), + [1537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(830), + [1539] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_concatenation, 2), + [1541] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 2), + [1543] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(832), + [1545] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [1547] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), + [1549] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string_expansion, 2), + [1551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(833), + [1553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(834), + [1555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(835), + [1557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(837), + [1559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(838), + [1561] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(839), + [1563] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(838), + [1565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(841), + [1567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(842), + [1569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(844), + [1571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(845), + [1573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(847), + [1575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(848), + [1577] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), + [1579] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(75), + [1582] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(76), + [1585] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(77), + [1588] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(78), + [1591] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(79), + [1594] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(80), + [1597] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(81), + [1600] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(82), + [1603] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(83), + [1606] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(79), + [1609] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(850), + [1611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(850), + [1613] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(852), + [1615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(853), + [1617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(854), + [1619] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(855), + [1621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(857), + [1623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(858), + [1625] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(859), + [1627] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(858), + [1629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(861), + [1631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(862), + [1633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(864), + [1635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(865), + [1637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(867), + [1639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(868), + [1641] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(86), + [1644] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(87), + [1647] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(88), + [1650] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(89), + [1653] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(90), + [1656] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(91), + [1659] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(92), + [1662] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(93), + [1665] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(94), + [1668] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(90), + [1671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(869), + [1673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(870), + [1675] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(871), + [1677] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(100), + [1679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(872), + [1681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(102), + [1683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(103), + [1685] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(104), + [1687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(105), + [1689] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(872), + [1691] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(873), + [1693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(873), + [1695] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(875), + [1697] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(876), + [1699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(877), + [1701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(878), + [1703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(880), + [1705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(881), + [1707] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(882), + [1709] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(881), + [1711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(884), + [1713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(885), + [1715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(887), + [1717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(888), + [1719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(890), + [1721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(891), + [1723] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(97), + [1726] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1728] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(98), + [1731] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(99), + [1734] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(100), + [1737] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(101), + [1740] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(102), + [1743] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(103), + [1746] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(104), + [1749] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(105), + [1752] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(106), + [1755] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(892), + [1757] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(112), + [1759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(892), + [1761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(114), + [1763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(115), + [1765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(116), + [1767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(117), + [1769] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(894), + [1771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(895), + [1773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(896), + [1775] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(897), + [1777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(899), + [1779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(900), + [1781] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(901), + [1783] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(900), + [1785] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(903), + [1787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(904), + [1789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(906), + [1791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(907), + [1793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(909), + [1795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(910), + [1797] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), + [1799] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(110), + [1802] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(111), + [1805] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(112), + [1808] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(113), + [1811] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(114), + [1814] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(115), + [1817] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(116), + [1820] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(117), + [1823] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(118), + [1826] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(911), + [1828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(911), + [1830] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(913), + [1832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(914), + [1834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(915), + [1836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(916), + [1838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(918), + [1840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(919), + [1842] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(920), + [1844] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(919), + [1846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(922), + [1848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(923), + [1850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(925), + [1852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(926), + [1854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(928), + [1856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(929), + [1858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1860] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1862] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(130), + [1865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(930), + [1867] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), + [1869] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 2), + [1871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(931), + [1873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(932), + [1875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(933), + [1877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(935), + [1879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(936), + [1881] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(937), + [1883] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(936), + [1885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(939), + [1887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(940), + [1889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(942), + [1891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(943), + [1893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(945), + [1895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 3), + [1897] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 3), + [1899] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(133), + [1902] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(134), + [1905] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(135), + [1908] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(136), + [1911] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(137), + [1914] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(946), + [1916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(947), + [1918] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(947), + [1920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(949), + [1922] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(950), + [1924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(951), + [1926] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(952), + [1928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(953), + [1930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(954), + [1932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(955), + [1934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(956), + [1936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(957), + [1938] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(953), + [1940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1942] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 1), + [1946] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_expansion_repeat1, 1), + [1948] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 1), + [1950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(959), + [1952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1954] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1956] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1958] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(961), + [1960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(963), + [1962] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(964), + [1964] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(963), + [1966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(966), + [1968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(967), [1970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(968), - [1972] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), - [1974] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(970), - [1976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(972), - [1978] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(973), - [1980] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(972), - [1982] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [1984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(975), - [1986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(976), - [1988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(977), - [1990] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(978), - [1992] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(976), - [1994] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), - [1996] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 2), - [1998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 2), - [2000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(987), - [2002] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), - [2004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), - [2006] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(989), - [2008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(991), - [2010] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(992), - [2012] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(991), - [2014] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 1), - [2016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1), - [2018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(994), - [2020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(995), - [2022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(996), - [2024] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(997), - [2026] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(995), - [2028] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), - [2030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), - [2032] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_unset_command, 2), - [2034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_unset_command, 2), - [2036] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1006), - [2038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1006), + [1972] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(969), + [1974] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(967), + [1976] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(971), + [1978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(978), + [1980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(980), + [1982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(981), + [1984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(982), + [1986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(984), + [1988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(985), + [1990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(987), + [1992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), + [1994] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), + [1996] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(989), + [1998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(990), + [2000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), + [2002] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), + [2004] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(991), + [2006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(992), + [2008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(993), + [2010] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(994), + [2012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(995), + [2014] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(996), + [2016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(997), + [2018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(998), + [2020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(999), + [2022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1000), + [2024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1001), + [2026] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(997), + [2028] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_variable_assignment, 2), + [2030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1002), + [2032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1003), + [2034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1005), + [2036] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1006), + [2038] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1007), [2040] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1008), - [2042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1009), + [2042] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1009), [2044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1010), - [2046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1012), - [2048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1013), + [2046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1011), + [2048] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1013), [2050] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1014), - [2052] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1013), - [2054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1016), - [2056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1018), - [2058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1020), - [2060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1021), - [2062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1022), - [2064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), - [2066] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), - [2068] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1027), + [2052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1017), + [2054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1018), + [2056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1020), + [2058] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), + [2060] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1022), + [2062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1024), + [2064] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1025), + [2066] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1024), + [2068] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), [2070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1027), - [2072] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1028), + [2072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1028), [2074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1029), - [2076] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1030), - [2078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1031), - [2080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1032), - [2082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1033), - [2084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1034), - [2086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1035), - [2088] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1031), - [2090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1037), - [2092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1038), - [2094] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1040), - [2096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1041), - [2098] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1041), - [2100] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), - [2102] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 1), - [2104] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 1), - [2106] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 2), - [2108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 2), - [2110] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1047), - [2112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1048), - [2114] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1049), - [2116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1050), - [2118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1051), - [2120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1052), - [2122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1053), - [2124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1054), - [2126] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1050), - [2128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1056), - [2130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1058), - [2132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1059), - [2134] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1061), - [2136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1063), - [2138] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1064), - [2140] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1063), - [2142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1066), - [2144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1067), - [2146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1068), - [2148] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1069), - [2150] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1067), - [2152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1078), - [2154] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1080), - [2156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1082), - [2158] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1083), + [2076] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1030), + [2078] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1028), + [2080] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), + [2082] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 2), + [2084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 2), + [2086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1039), + [2088] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), + [2090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), + [2092] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1041), + [2094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1043), + [2096] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1044), + [2098] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1043), + [2100] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 1), + [2102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1), + [2104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1046), + [2106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1047), + [2108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1048), + [2110] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1049), + [2112] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1047), + [2114] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), + [2116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), + [2118] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_unset_command, 2), + [2120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_unset_command, 2), + [2122] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1058), + [2124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1058), + [2126] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1060), + [2128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1061), + [2130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1062), + [2132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1063), + [2134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1065), + [2136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1066), + [2138] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1067), + [2140] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1066), + [2142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1069), + [2144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1070), + [2146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1072), + [2148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1073), + [2150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1075), + [2152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1076), + [2154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1077), + [2156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), + [2158] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), [2160] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1082), - [2162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1085), - [2164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1086), - [2166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1087), - [2168] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1088), - [2170] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1086), - [2172] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1097), - [2174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1097), - [2176] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1099), - [2178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1100), - [2180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1101), - [2182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1103), - [2184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1104), - [2186] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1105), - [2188] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1104), - [2190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1107), - [2192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1109), - [2194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1111), - [2196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1112), - [2198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1113), - [2200] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1117), - [2202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1117), - [2204] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1118), - [2206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1119), - [2208] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1120), - [2210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1121), - [2212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1122), - [2214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1123), - [2216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1124), - [2218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1125), - [2220] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1121), - [2222] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1126), - [2224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1127), - [2226] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1127), - [2228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), - [2230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), - [2232] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), - [2234] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), - [2236] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1133), - [2238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1134), - [2240] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1134), - [2242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1136), - [2244] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), - [2246] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1138), - [2248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1140), - [2250] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1141), - [2252] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1140), - [2254] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), - [2256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1143), - [2258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1144), - [2260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1145), - [2262] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1146), - [2264] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1144), - [2266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), - [2268] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), - [2270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1154), - [2272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1155), - [2274] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1156), - [2276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1157), - [2278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), - [2280] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), - [2282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), - [2284] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), - [2286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2), - [2288] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2), - [2290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [2292] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [2294] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(200), - [2297] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(16), - [2300] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(17), - [2303] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(201), - [2306] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(19), - [2309] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(20), - [2312] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(21), - [2315] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(22), - [2318] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3), - [2320] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(196), - [2323] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), - [2325] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(197), - [2328] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(198), - [2331] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(199), - [2334] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1159), - [2336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1160), - [2338] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1160), - [2340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1162), - [2342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1163), - [2344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1163), - [2346] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1163), - [2348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1164), - [2350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), - [2352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1165), - [2354] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1167), - [2356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1168), - [2358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1169), - [2360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4), - [2362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1170), - [2364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1171), - [2366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1173), - [2368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1174), - [2370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1175), - [2372] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1174), - [2374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1177), - [2376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1179), - [2378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1181), - [2380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1182), - [2382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 2), - [2384] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 2), - [2386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1183), - [2388] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1185), - [2390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1187), - [2392] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1188), - [2394] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1187), - [2396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1190), - [2398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1191), - [2400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1192), - [2402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1193), - [2404] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1191), - [2406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1201), - [2408] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1203), - [2410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1203), - [2412] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1205), - [2414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1206), - [2416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1207), - [2418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1209), - [2420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1210), - [2422] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1211), - [2424] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1210), - [2426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1213), - [2428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1215), - [2430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1217), - [2432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1218), - [2434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1219), - [2436] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1221), - [2438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1223), - [2440] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1224), - [2442] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1223), - [2444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1226), - [2446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1227), - [2448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1228), - [2450] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1229), - [2452] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1227), - [2454] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1237), - [2456] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(662), - [2458] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(663), - [2460] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(664), - [2462] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(665), - [2464] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(666), - [2466] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(667), - [2468] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(668), - [2470] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(669), - [2472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), - [2474] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), - [2476] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1239), - [2478] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1240), - [2480] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 4), - [2482] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), - [2484] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 1), - [2486] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1247), - [2488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1), - [2490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1248), - [2492] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1248), - [2494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(679), - [2496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(680), - [2498] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1253), - [2500] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1254), - [2502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1255), - [2504] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1256), - [2506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1257), - [2508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1258), - [2510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1259), - [2512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1260), - [2514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1261), - [2516] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1257), - [2518] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1266), - [2520] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(238), - [2523] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1267), - [2525] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1270), - [2527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1271), - [2529] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1272), - [2531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1273), - [2533] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1273), - [2535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1275), - [2537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1276), - [2539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1277), - [2541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1279), - [2543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1282), - [2545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), - [2547] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), - [2549] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1284), - [2551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1285), - [2553] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1287), - [2555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1287), - [2557] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1288), - [2559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1289), - [2561] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1290), - [2563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1291), - [2565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1292), - [2567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1293), - [2569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1294), - [2571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1295), - [2573] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1291), - [2575] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), - [2577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1297), - [2579] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1299), - [2581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1301), - [2583] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1302), - [2585] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1301), - [2587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1304), - [2589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1305), - [2591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1306), - [2593] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1307), - [2595] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1305), - [2597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1316), - [2599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1317), - [2601] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1318), - [2603] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1319), - [2605] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(269), - [2607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1320), - [2609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(271), - [2611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(272), - [2613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(273), - [2615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(274), - [2617] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1320), - [2619] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1321), - [2621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1321), - [2623] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1323), - [2625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1324), - [2627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1325), - [2629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1327), - [2631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1328), - [2633] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1329), - [2635] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1328), - [2637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1331), - [2639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1333), - [2641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1335), - [2643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1336), - [2645] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(266), - [2648] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(267), - [2651] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(268), - [2654] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(269), - [2657] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(270), - [2660] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(271), - [2663] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(272), - [2666] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(273), - [2669] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(274), - [2672] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1337), - [2674] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(279), - [2676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1337), - [2678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(281), - [2680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(282), - [2682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(283), - [2684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(284), - [2686] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1339), - [2688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1340), - [2690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1341), - [2692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1343), - [2694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1344), - [2696] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1345), - [2698] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1344), - [2700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1347), - [2702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1349), - [2704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1351), - [2706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1352), - [2708] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(277), - [2711] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(278), - [2714] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(279), - [2717] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(280), - [2720] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(281), - [2723] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(282), - [2726] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(283), - [2729] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(284), - [2732] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(286), - [2735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1353), - [2737] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1354), - [2739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1355), - [2741] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1355), - [2743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1357), - [2745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1358), - [2747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1359), - [2749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1361), - [2751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1364), - [2753] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), - [2755] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1366), - [2757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1367), - [2759] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1367), - [2761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1368), - [2763] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1370), - [2765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1372), - [2767] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1373), - [2769] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1372), - [2771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1375), - [2773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1376), - [2775] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1377), - [2777] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1378), - [2779] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1376), - [2781] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(312), - [2784] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(59), - [2787] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(60), - [2790] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(313), - [2793] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(62), - [2796] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(63), - [2799] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(64), - [2802] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(65), - [2805] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(309), - [2808] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(310), - [2811] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(311), - [2814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1386), - [2816] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 2), - [2818] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(323), - [2821] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 3), - [2823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1388), - [2825] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1389), - [2827] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1390), - [2829] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1390), - [2831] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), - [2833] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1392), - [2835] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1393), - [2837] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1394), - [2839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1396), - [2841] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), - [2843] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1399), - [2845] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3), - [2847] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_substitution, 3), - [2849] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_process_substitution, 3), - [2851] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(346), - [2854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1400), - [2856] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1401), - [2858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1402), - [2860] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1402), - [2862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1404), - [2864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1405), - [2866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1406), - [2868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1408), - [2870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1411), - [2872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1412), - [2874] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(367), - [2877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1414), - [2879] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1415), - [2881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1416), - [2883] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1416), - [2885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1418), - [2887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1419), - [2889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1420), - [2891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1422), - [2893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1425), - [2895] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(386), - [2898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1426), - [2900] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1427), - [2902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1428), - [2904] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1428), - [2906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1430), - [2908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1431), - [2910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1432), - [2912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1434), - [2914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1437), - [2916] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(405), - [2919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1438), - [2921] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1439), - [2923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1440), - [2925] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1440), - [2927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1442), - [2929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1443), - [2931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1444), - [2933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1446), - [2935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1449), - [2937] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 3), - [2939] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 3), - [2941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1450), - [2943] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1451), - [2945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1452), - [2947] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1452), - [2949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1454), - [2951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1455), - [2953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1456), - [2955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1458), - [2957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1461), - [2959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1462), - [2961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1463), - [2963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1464), - [2965] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1465), - [2967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1466), - [2969] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), - [2971] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), - [2973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1467), - [2975] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1468), - [2977] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1470), - [2979] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1472), - [2981] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1473), - [2983] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1472), - [2985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1475), - [2987] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1476), - [2989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1477), - [2991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1478), - [2993] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1479), - [2995] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1477), - [2997] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1487), - [2999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1487), - [3001] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1489), - [3003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1490), - [3005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1491), - [3007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1493), - [3009] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1494), - [3011] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1495), - [3013] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1494), - [3015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1497), - [3017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1499), - [3019] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1501), - [3021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1502), - [3023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), - [3025] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), - [3027] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), - [3029] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(443), - [3032] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(444), - [3035] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(445), - [3038] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(446), - [3041] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(447), - [3044] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(443), - [3047] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(448), - [3050] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(449), - [3053] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(450), - [3056] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(451), - [3059] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(447), - [3062] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1503), - [3064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1504), - [3066] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1504), - [3068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), - [3070] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), - [3072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1506), - [3074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), - [3076] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), - [3078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1507), - [3080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), - [3082] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), - [3084] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__assignment, 2), - [3086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1508), - [3088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1510), - [3090] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), - [3092] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1512), - [3094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1514), - [3096] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1515), - [3098] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1514), - [3100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1517), - [3102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1518), - [3104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1519), - [3106] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1520), - [3108] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1518), - [3110] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1529), - [3112] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 3), - [3114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), - [3116] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1532), - [3118] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1536), - [3120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1537), - [3122] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1538), - [3124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1539), - [3126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1540), - [3128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1541), - [3130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1543), - [3132] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), - [3134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), - [3136] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1544), - [3138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1544), - [3140] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 3), - [3142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), - [3144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1546), - [3146] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1546), - [3148] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1547), - [3150] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bracket_command, 3), - [3152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), - [3154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1548), - [3156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1549), - [3158] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1550), - [3160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1551), - [3162] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1551), - [3164] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1552), - [3166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1552), - [3168] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1554), - [3170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1555), - [3172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1556), - [3174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1558), - [3176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1559), - [3178] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1560), - [3180] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1559), - [3182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1562), - [3184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1564), - [3186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1566), - [3188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1567), - [3190] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(475), - [3193] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [3195] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [3197] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(476), - [3200] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(477), - [3203] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(478), - [3206] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(479), - [3209] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(480), - [3212] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(481), - [3215] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(482), - [3218] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(483), - [3221] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(484), - [3224] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(479), - [3227] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1568), - [3229] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1568), - [3231] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1570), - [3233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1571), - [3235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1572), - [3237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1574), - [3239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1575), - [3241] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1576), - [3243] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1575), - [3245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1578), - [3247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1580), - [3249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1582), - [3251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1583), - [3253] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), - [3255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), - [3257] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(488), - [3260] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(489), - [3263] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(490), - [3266] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(491), - [3269] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(492), - [3272] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(493), - [3275] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(494), - [3278] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(495), - [3281] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(496), - [3284] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(491), - [3287] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(499), - [3290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1584), - [3292] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1585), - [3294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1586), - [3296] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1586), - [3298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1588), - [3300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1589), - [3302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1590), - [3304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1592), - [3306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1595), - [3308] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pipeline, 3), - [3310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), - [3312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), - [3314] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1597), - [3316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1598), - [3318] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1598), - [3320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1600), - [3322] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1602), - [3324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1604), - [3326] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1605), - [3328] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1604), - [3330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1607), - [3332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1608), - [3334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1609), - [3336] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1610), - [3338] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1608), - [3340] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 1), - [3342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1618), - [3344] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc_redirect, 2), - [3346] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), - [3348] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_herestring_redirect, 2), - [3350] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), - [3352] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(525), - [3355] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(157), - [3358] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(158), - [3361] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(526), - [3364] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(160), - [3367] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(161), - [3370] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(162), - [3373] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(163), - [3376] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(526), - [3379] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 3), - [3381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 3), - [3383] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(521), - [3386] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 2), - [3388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), - [3390] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(522), - [3393] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(522), - [3396] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(523), - [3399] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(523), - [3402] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(524), - [3405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1621), - [3407] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1623), - [3409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1625), - [3411] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1626), - [3413] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1625), - [3415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1628), - [3417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1629), - [3419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1630), - [3421] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1631), - [3423] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1629), - [3425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1640), - [3427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1641), - [3429] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1642), - [3431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1642), - [3433] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1643), - [3435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1644), - [3437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(542), - [3439] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1644), - [3441] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1645), - [3443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1645), - [3445] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1647), - [3447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1648), - [3449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1649), - [3451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1651), - [3453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1652), - [3455] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1653), - [3457] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1652), - [3459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1655), - [3461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1657), - [3463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1659), - [3465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1660), - [3467] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(535), - [3470] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(536), - [3473] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(537), - [3476] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(538), - [3479] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(539), - [3482] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(540), - [3485] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(541), - [3488] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(542), - [3491] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(543), - [3494] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(539), - [3497] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1661), - [3499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1661), - [3501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(552), - [3503] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1663), - [3505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1664), - [3507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1665), - [3509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1667), - [3511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1668), - [3513] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1669), - [3515] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1668), - [3517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1671), - [3519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1673), - [3521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1675), - [3523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1676), - [3525] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(546), - [3528] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(547), - [3531] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(548), - [3534] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(549), - [3537] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(550), - [3540] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(551), - [3543] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(552), - [3546] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(553), - [3549] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(549), - [3552] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(555), - [3555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1677), - [3557] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1678), - [3559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1679), - [3561] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1679), - [3563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1681), - [3565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1682), - [3567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1683), - [3569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1685), - [3571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1688), - [3573] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1690), - [3575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1691), - [3577] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1691), - [3579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1692), - [3581] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1694), - [3583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1696), - [3585] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1697), - [3587] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1696), - [3589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1699), - [3591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1700), - [3593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1701), - [3595] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1702), - [3597] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1700), - [3599] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(579), - [3602] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(177), - [3605] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(178), - [3608] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(580), - [3611] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(180), - [3614] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(181), - [3617] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(182), - [3620] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(183), - [3623] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(580), - [3626] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(576), - [3629] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(577), - [3632] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(577), - [3635] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(578), - [3638] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), - [3640] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), - [3642] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1712), - [3644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1712), - [3646] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1714), - [3648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1715), - [3650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1716), - [3652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1718), - [3654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1719), - [3656] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1720), - [3658] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1719), - [3660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1722), - [3662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1724), - [3664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1726), - [3666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1727), - [3668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 1), - [3670] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 1), - [3672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), - [3674] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), - [3676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1728), - [3678] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1729), - [3680] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1728), - [3682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1730), - [3684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1731), - [3686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1732), - [3688] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1733), - [3690] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1731), - [3692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1735), - [3694] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4), - [3696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1737), - [3698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), - [3700] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1165), - [3703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1738), - [3705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5), - [3707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1739), - [3709] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1740), - [3711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1741), - [3713] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1741), - [3715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1743), - [3717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1744), - [3719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1745), - [3721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1747), - [3723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1750), - [3725] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1751), - [3727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1751), - [3729] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1753), - [3731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1754), - [3733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1755), - [3735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1757), - [3737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1758), - [3739] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1759), - [3741] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1758), - [3743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1761), - [3745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1763), - [3747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1765), - [3749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1766), - [3751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 3), - [3753] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 3), - [3755] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(634), - [3758] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(635), - [3761] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(636), - [3764] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(637), - [3767] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(638), - [3770] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(639), - [3773] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(640), - [3776] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(641), - [3779] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(637), - [3782] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(644), - [3785] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1767), - [3787] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1768), - [3789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1769), - [3791] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1769), - [3793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1771), - [3795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1772), - [3797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1773), - [3799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1775), - [3801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1778), - [3803] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1779), - [3805] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1779), - [3807] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1781), - [3809] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1782), - [3811] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1783), - [3813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1785), - [3815] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1786), - [3817] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1787), - [3819] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1786), - [3821] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1789), - [3823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1791), - [3825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1793), - [3827] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1794), - [3829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1795), - [3831] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(662), - [3834] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(663), - [3837] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(664), - [3840] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(665), - [3843] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(666), - [3846] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(667), - [3849] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(668), - [3852] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(669), - [3855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), - [3857] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), - [3859] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), - [3861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1797), - [3863] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1798), - [3865] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 2), - [3867] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), - [3869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1800), - [3871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), - [3873] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(679), - [3876] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), - [3878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1802), - [3880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1803), - [3882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1804), - [3884] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1807), - [3886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1809), - [3888] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1810), - [3890] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1809), - [3892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1812), - [3894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1814), - [3896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1815), - [3898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1816), - [3900] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1817), - [3902] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1815), - [3904] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 1), - [3906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), - [3908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1825), - [3910] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1257), - [3912] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1828), - [3914] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), - [3916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1830), - [3918] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1832), - [3920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1834), - [3922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1835), - [3924] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1836), - [3926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1837), - [3928] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1837), - [3930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1839), - [3932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1840), - [3934] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), - [3936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), - [3938] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), - [3940] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1842), - [3942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1843), - [3944] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1843), - [3946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1845), - [3948] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1847), - [3950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1849), - [3952] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1850), - [3954] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1849), - [3956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1852), - [3958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1853), - [3960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1854), - [3962] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1855), - [3964] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1853), - [3966] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1863), - [3968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1863), - [3970] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1865), - [3972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1866), - [3974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1867), - [3976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1869), - [3978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1870), - [3980] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1871), - [3982] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1870), - [3984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1873), - [3986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1875), - [3988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1877), - [3990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1878), - [3992] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1880), - [3994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1880), - [3996] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1881), - [3998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1882), - [4000] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1883), - [4002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1884), - [4004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1885), - [4006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1886), - [4008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1887), - [4010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1888), - [4012] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1884), - [4014] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(729), - [4017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1889), - [4019] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1890), - [4021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1891), - [4023] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1891), - [4025] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1893), - [4027] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1894), - [4029] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1895), - [4031] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1897), - [4033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1900), - [4035] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(748), - [4038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1901), - [4040] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1902), - [4042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1903), - [4044] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1903), - [4046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1905), - [4048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1906), - [4050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1907), - [4052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1909), - [4054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1912), - [4056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1913), - [4058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1914), - [4060] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1915), - [4062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1916), - [4064] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1916), - [4066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1918), - [4068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1919), - [4070] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1920), - [4072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1920), - [4074] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1922), - [4076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1923), - [4078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1924), - [4080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1926), - [4082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1927), - [4084] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1928), - [4086] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1927), - [4088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1930), - [4090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1932), - [4092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1934), - [4094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1935), - [4096] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), - [4098] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4), - [4100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1936), - [4102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1937), - [4104] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), - [4106] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1938), - [4108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1939), - [4110] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1939), - [4112] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), - [4114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1941), - [4116] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), - [4118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1942), - [4120] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), - [4122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1943), - [4124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1944), - [4126] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1945), - [4128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1946), - [4130] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1946), - [4132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1948), - [4134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1949), - [4136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1950), - [4138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1951), - [4140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1952), - [4142] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1953), - [4144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1954), - [4146] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1954), - [4148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1956), - [4150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1957), - [4152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1958), - [4154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1959), - [4156] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1960), - [4158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1961), - [4160] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1961), - [4162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1963), - [4164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1964), - [4166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1965), - [4168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1966), - [4170] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1967), - [4172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1968), - [4174] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1968), - [4176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1970), - [4178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1971), - [4180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1972), - [4182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1973), - [4184] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1974), - [4186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1975), - [4188] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1975), - [4190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1977), - [4192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1978), - [4194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1979), - [4196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1980), - [4198] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), - [4200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), - [4202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1981), - [4204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1982), - [4206] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 4), - [4208] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4), - [4210] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1983), - [4212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1983), - [4214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), - [4216] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), - [4218] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1985), - [4220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), - [4222] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), - [4224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1986), - [4226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1987), - [4228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1989), - [4230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1990), - [4232] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1991), - [4234] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1990), - [4236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1993), - [4238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1995), - [4240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1997), - [4242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1998), - [4244] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(913), - [4247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1999), - [4249] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2000), - [4251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2001), - [4253] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2001), - [4255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2003), - [4257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2004), - [4259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2005), - [4261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2007), - [4263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2010), - [4265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2011), - [4267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2012), - [4269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), - [4271] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), - [4273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), - [4275] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), - [4277] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 2), - [4279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2013), - [4281] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2014), - [4283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2014), - [4285] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2016), - [4287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2017), - [4289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2018), - [4291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2020), - [4293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2021), - [4295] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2022), - [4297] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2021), - [4299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2024), - [4301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2026), - [4303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2028), - [4305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2029), - [4307] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2030), - [4309] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 2), - [4311] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2031), - [4313] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 4), - [4315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 4), - [4317] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 4), - [4319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), - [4321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2032), - [4323] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2032), - [4325] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2035), - [4327] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2038), - [4329] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2039), - [4331] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2042), - [4333] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), - [4335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2044), - [4337] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2045), - [4339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2045), - [4341] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2046), - [4343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2047), - [4345] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2048), - [4347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2049), - [4349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2050), - [4351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2051), - [4353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2052), - [4355] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2053), - [4357] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2049), - [4359] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4), - [4361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), - [4363] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 4), - [4365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), - [4367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2055), - [4369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2056), - [4371] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(968), - [4374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2058), - [4376] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2059), - [4378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2060), - [4380] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2060), - [4382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2062), - [4384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2063), - [4386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2064), - [4388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2066), - [4390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2069), - [4392] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(987), - [4395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2070), - [4397] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2071), - [4399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2072), - [4401] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2072), - [4403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2074), - [4405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2075), - [4407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2076), - [4409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2078), - [4411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2081), - [4413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2082), - [4415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2083), - [4417] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2084), - [4419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2085), - [4421] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2085), - [4423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2087), - [4425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2088), - [4427] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2090), - [4429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2090), - [4431] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2092), + [2162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1082), + [2164] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1083), + [2166] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(159), + [2168] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(160), + [2170] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1084), + [2172] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(162), + [2174] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(163), + [2176] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(164), + [2178] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(165), + [2180] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1085), + [2182] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1086), + [2184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1087), + [2186] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1088), + [2188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1089), + [2190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1090), + [2192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1091), + [2194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1092), + [2196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1093), + [2198] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1089), + [2200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1095), + [2202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1096), + [2204] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1098), + [2206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1099), + [2208] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1099), + [2210] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 1), + [2212] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 2), + [2214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 2), + [2216] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1105), + [2218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1106), + [2220] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1107), + [2222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1108), + [2224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1109), + [2226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1110), + [2228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1111), + [2230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1112), + [2232] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1108), + [2234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1114), + [2236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1116), + [2238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1117), + [2240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1118), + [2242] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1120), + [2244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1122), + [2246] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1123), + [2248] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1122), + [2250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1125), + [2252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1126), + [2254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1127), + [2256] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1128), + [2258] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1126), + [2260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1137), + [2262] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1139), + [2264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1141), + [2266] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1142), + [2268] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1141), + [2270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1144), + [2272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1145), + [2274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1146), + [2276] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1147), + [2278] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1145), + [2280] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1156), + [2282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1156), + [2284] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1158), + [2286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1159), + [2288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1160), + [2290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1161), + [2292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1163), + [2294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1164), + [2296] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1165), + [2298] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1164), + [2300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1167), + [2302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1168), + [2304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1170), + [2306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1171), + [2308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1173), + [2310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1174), + [2312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1175), + [2314] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1179), + [2316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1179), + [2318] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1180), + [2320] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(181), + [2322] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(182), + [2324] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1181), + [2326] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(184), + [2328] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(185), + [2330] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(186), + [2332] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(187), + [2334] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1182), + [2336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1183), + [2338] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1184), + [2340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1185), + [2342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1186), + [2344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1187), + [2346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1188), + [2348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1189), + [2350] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1185), + [2352] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1190), + [2354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1191), + [2356] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1191), + [2358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), + [2360] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), + [2362] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), + [2364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), + [2366] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1197), + [2368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1198), + [2370] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1198), + [2372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1200), + [2374] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), + [2376] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1202), + [2378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1204), + [2380] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1205), + [2382] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1204), + [2384] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), + [2386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1207), + [2388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1208), + [2390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1209), + [2392] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1210), + [2394] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1208), + [2396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), + [2398] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), + [2400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1218), + [2402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1219), + [2404] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1220), + [2406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1221), + [2408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), + [2410] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), + [2412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), + [2414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), + [2416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2), + [2418] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2), + [2420] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(200), + [2423] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), + [2425] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(202), + [2428] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(203), + [2431] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(204), + [2434] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3), + [2436] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(201), + [2439] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(205), + [2442] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(16), + [2445] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(17), + [2448] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(206), + [2451] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(19), + [2454] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(20), + [2457] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(21), + [2460] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), + [2463] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1223), + [2465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1224), + [2467] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1224), + [2469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1226), + [2471] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1227), + [2473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1227), + [2475] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1227), + [2477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1228), + [2479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), + [2481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1229), + [2483] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1231), + [2485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1232), + [2487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1233), + [2489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4), + [2491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1234), + [2493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1235), + [2495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1236), + [2497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1238), + [2499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1239), + [2501] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1240), + [2503] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1239), + [2505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1242), + [2507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1243), + [2509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1245), + [2511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1246), + [2513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1248), + [2515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1249), + [2517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 2), + [2519] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 2), + [2521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1250), + [2523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [2525] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [2527] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1252), + [2529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1254), + [2531] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1255), + [2533] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1254), + [2535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2537] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1257), + [2541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1258), + [2543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1259), + [2545] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1260), + [2547] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1258), + [2549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1268), + [2551] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1270), + [2553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1270), + [2555] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1272), + [2557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1273), + [2559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1274), + [2561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1275), + [2563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1277), + [2565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1278), + [2567] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1279), + [2569] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1278), + [2571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1281), + [2573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1282), + [2575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1284), + [2577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1285), + [2579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1287), + [2581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1288), + [2583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1289), + [2585] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [2587] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1291), + [2589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1293), + [2591] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1294), + [2593] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1293), + [2595] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1296), + [2599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1297), + [2601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1298), + [2603] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1299), + [2605] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1297), + [2607] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1307), + [2609] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(680), + [2611] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(681), + [2613] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(682), + [2615] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(683), + [2617] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(684), + [2619] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(685), + [2621] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(686), + [2623] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(687), + [2625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), + [2627] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), + [2629] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1309), + [2631] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1310), + [2633] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 4), + [2635] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), + [2637] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 1), + [2639] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1317), + [2641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1), + [2643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1318), + [2645] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1318), + [2647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(697), + [2649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(698), + [2651] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1323), + [2653] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1324), + [2655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1325), + [2657] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1326), + [2659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1327), + [2661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1328), + [2663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1329), + [2665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1330), + [2667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1331), + [2669] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1327), + [2671] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1336), + [2673] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(243), + [2676] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1337), + [2678] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1340), + [2680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1341), + [2682] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1342), + [2684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1343), + [2686] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1343), + [2688] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1345), + [2690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1346), + [2692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1347), + [2694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1348), + [2696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1349), + [2698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1351), + [2700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1352), + [2702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1354), + [2704] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1356), + [2706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1357), + [2708] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1358), + [2710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), + [2712] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), + [2714] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1360), + [2716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1361), + [2718] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1363), + [2720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1363), + [2722] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1364), + [2724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1365), + [2726] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1366), + [2728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1367), + [2730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1368), + [2732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1369), + [2734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1370), + [2736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1371), + [2738] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1367), + [2740] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), + [2742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1373), + [2744] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1375), + [2746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1377), + [2748] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1378), + [2750] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1377), + [2752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1380), + [2754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1381), + [2756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1382), + [2758] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1383), + [2760] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1381), + [2762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1392), + [2764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1393), + [2766] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1394), + [2768] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1396), + [2770] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(276), + [2772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1397), + [2774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(278), + [2776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(279), + [2778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(280), + [2780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(281), + [2782] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1397), + [2784] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1398), + [2786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1398), + [2788] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1400), + [2790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1401), + [2792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1402), + [2794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1403), + [2796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1405), + [2798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1406), + [2800] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1407), + [2802] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1406), + [2804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1409), + [2806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1410), + [2808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1412), + [2810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1413), + [2812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1415), + [2814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1416), + [2816] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(273), + [2819] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(274), + [2822] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(275), + [2825] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(276), + [2828] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(277), + [2831] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(278), + [2834] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(279), + [2837] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(280), + [2840] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(281), + [2843] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1417), + [2845] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(286), + [2847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1417), + [2849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(288), + [2851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(289), + [2853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(290), + [2855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(291), + [2857] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1419), + [2859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1420), + [2861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1421), + [2863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1422), + [2865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1424), + [2867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1425), + [2869] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1426), + [2871] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1425), + [2873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1428), + [2875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1429), + [2877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1431), + [2879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1432), + [2881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1434), + [2883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1435), + [2885] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(284), + [2888] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(285), + [2891] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(286), + [2894] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(287), + [2897] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(288), + [2900] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(289), + [2903] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(290), + [2906] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(291), + [2909] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(293), + [2912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1436), + [2914] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1437), + [2916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1438), + [2918] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1438), + [2920] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1440), + [2922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1441), + [2924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1442), + [2926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1443), + [2928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1444), + [2930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1446), + [2932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1447), + [2934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1449), + [2936] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1451), + [2938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1452), + [2940] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1453), + [2942] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), + [2944] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1455), + [2946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1456), + [2948] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1456), + [2950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1457), + [2952] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1459), + [2954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1461), + [2956] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1462), + [2958] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1461), + [2960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1464), + [2962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1465), + [2964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1466), + [2966] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1467), + [2968] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1465), + [2970] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(316), + [2973] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(318), + [2976] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(319), + [2979] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(317), + [2982] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(320), + [2985] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(61), + [2988] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(62), + [2991] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(321), + [2994] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(64), + [2997] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(65), + [3000] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(66), + [3003] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(67), + [3006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1475), + [3008] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 2), + [3010] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(331), + [3013] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 3), + [3015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1477), + [3017] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1478), + [3019] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1479), + [3021] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1479), + [3023] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [3025] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1481), + [3027] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1482), + [3029] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1483), + [3031] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1484), + [3033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1485), + [3035] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1487), + [3037] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1488), + [3039] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1490), + [3041] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), + [3043] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1492), + [3045] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1493), + [3047] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3), + [3049] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1494), + [3051] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_substitution, 3), + [3053] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_process_substitution, 3), + [3055] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 4), + [3057] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(354), + [3060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1495), + [3062] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1496), + [3064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1497), + [3066] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1497), + [3068] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1499), + [3070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1500), + [3072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1501), + [3074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1502), + [3076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1503), + [3078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1505), + [3080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1506), + [3082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1508), + [3084] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1510), + [3086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1511), + [3088] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1512), + [3090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1513), + [3092] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(375), + [3095] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1515), + [3097] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1516), + [3099] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1517), + [3101] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1517), + [3103] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1519), + [3105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1520), + [3107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1521), + [3109] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1522), + [3111] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1523), + [3113] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1525), + [3115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1526), + [3117] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1528), + [3119] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1530), + [3121] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1531), + [3123] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1532), + [3125] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(394), + [3128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1533), + [3130] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1534), + [3132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1535), + [3134] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1535), + [3136] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1537), + [3138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1538), + [3140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1539), + [3142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1540), + [3144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1541), + [3146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1543), + [3148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1544), + [3150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1546), + [3152] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1548), + [3154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1549), + [3156] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1550), + [3158] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(413), + [3161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1551), + [3163] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1552), + [3165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1553), + [3167] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1553), + [3169] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1555), + [3171] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1556), + [3173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1557), + [3175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1558), + [3177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1559), + [3179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1561), + [3181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1562), + [3183] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1564), + [3185] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1566), + [3187] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1567), + [3189] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1568), + [3191] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 3), + [3193] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 3), + [3195] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1569), + [3197] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1570), + [3199] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1571), + [3201] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1571), + [3203] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1573), + [3205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1574), + [3207] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1575), + [3209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1576), + [3211] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1577), + [3213] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1579), + [3215] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1580), + [3217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1582), + [3219] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1584), + [3221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1585), + [3223] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1586), + [3225] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1587), + [3227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1588), + [3229] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1589), + [3231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1590), + [3233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1591), + [3235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), + [3237] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), + [3239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1592), + [3241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1593), + [3243] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1595), + [3245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1597), + [3247] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1598), + [3249] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1597), + [3251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1600), + [3253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1601), + [3255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1602), + [3257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1603), + [3259] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1604), + [3261] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1602), + [3263] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1612), + [3265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1612), + [3267] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1614), + [3269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1615), + [3271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1616), + [3273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1617), + [3275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1619), + [3277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1620), + [3279] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1621), + [3281] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1620), + [3283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1623), + [3285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1624), + [3287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1626), + [3289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1627), + [3291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1629), + [3293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1631), + [3295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1632), + [3297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [3299] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [3301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), + [3303] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(451), + [3306] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(452), + [3309] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(453), + [3312] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(454), + [3315] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(455), + [3318] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(451), + [3321] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(456), + [3324] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(458), + [3327] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(459), + [3330] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(460), + [3333] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(455), + [3336] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1633), + [3338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1634), + [3340] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1634), + [3342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), + [3344] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), + [3346] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1636), + [3348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1637), + [3350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), + [3352] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), + [3354] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1638), + [3356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1639), + [3358] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1640), + [3360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1641), + [3362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [3364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [3366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1643), + [3368] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__assignment, 2), + [3370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1645), + [3372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1647), + [3374] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), + [3376] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1649), + [3378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1651), + [3380] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1652), + [3382] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1651), + [3384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1654), + [3386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1655), + [3388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1656), + [3390] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1657), + [3392] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1655), + [3394] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1666), + [3396] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 3), + [3398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), + [3400] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1669), + [3402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1673), + [3404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1674), + [3406] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1675), + [3408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1676), + [3410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1677), + [3412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1678), + [3414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1680), + [3416] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), + [3418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), + [3420] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1681), + [3422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1681), + [3424] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 3), + [3426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), + [3428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1683), + [3430] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1683), + [3432] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1684), + [3434] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bracket_command, 3), + [3436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), + [3438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1686), + [3440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1687), + [3442] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1688), + [3444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1689), + [3446] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1689), + [3448] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1690), + [3450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1690), + [3452] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1692), + [3454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1693), + [3456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1694), + [3458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1695), + [3460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1697), + [3462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1698), + [3464] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1699), + [3466] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1698), + [3468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1701), + [3470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1702), + [3472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1704), + [3474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1705), + [3476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1707), + [3478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1708), + [3480] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(486), + [3483] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [3485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [3487] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(487), + [3490] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(488), + [3493] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(489), + [3496] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(490), + [3499] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(491), + [3502] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(492), + [3505] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(493), + [3508] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(494), + [3511] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(495), + [3514] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(490), + [3517] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1709), + [3519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1709), + [3521] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1711), + [3523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1712), + [3525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1713), + [3527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1714), + [3529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1716), + [3531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1717), + [3533] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1718), + [3535] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1717), + [3537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1720), + [3539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1721), + [3541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1723), + [3543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1724), + [3545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1726), + [3547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1727), + [3549] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), + [3551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), + [3553] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(499), + [3556] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(500), + [3559] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(501), + [3562] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(502), + [3565] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(503), + [3568] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(504), + [3571] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(505), + [3574] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(506), + [3577] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(507), + [3580] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(502), + [3583] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(510), + [3586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1728), + [3588] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1729), + [3590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1730), + [3592] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1730), + [3594] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1732), + [3596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1733), + [3598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1734), + [3600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1735), + [3602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1736), + [3604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1738), + [3606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1739), + [3608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1741), + [3610] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1743), + [3612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1744), + [3614] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1745), + [3616] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pipeline, 3), + [3618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), + [3620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), + [3622] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1747), + [3624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1748), + [3626] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1748), + [3628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1750), + [3630] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1752), + [3632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1754), + [3634] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1755), + [3636] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1754), + [3638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1757), + [3640] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1758), + [3642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1759), + [3644] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1760), + [3646] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1758), + [3648] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 1), + [3650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1768), + [3652] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc_redirect, 2), + [3654] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), + [3656] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_herestring_redirect, 2), + [3658] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(532), + [3661] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 2), + [3663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), + [3665] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(534), + [3668] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(534), + [3671] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(535), + [3674] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(535), + [3677] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(536), + [3680] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 3), + [3682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 3), + [3684] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(533), + [3687] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(537), + [3690] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(159), + [3693] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(160), + [3696] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(538), + [3699] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(162), + [3702] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(163), + [3705] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(164), + [3708] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(165), + [3711] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(538), + [3714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1771), + [3716] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1773), + [3718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1775), + [3720] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1776), + [3722] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1775), + [3724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1778), + [3726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1779), + [3728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1780), + [3730] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1781), + [3732] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1779), + [3734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1790), + [3736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1791), + [3738] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1792), + [3740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1792), + [3742] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1794), + [3744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1795), + [3746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(556), + [3748] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1795), + [3750] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1796), + [3752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1796), + [3754] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1798), + [3756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1799), + [3758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1800), + [3760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1801), + [3762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1803), + [3764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1804), + [3766] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1805), + [3768] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1804), + [3770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1807), + [3772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1808), + [3774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1810), + [3776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1811), + [3778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1813), + [3780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1814), + [3782] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(549), + [3785] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(550), + [3788] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(551), + [3791] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(552), + [3794] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(553), + [3797] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(554), + [3800] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(555), + [3803] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(556), + [3806] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(557), + [3809] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(553), + [3812] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1815), + [3814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1815), + [3816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(566), + [3818] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1817), + [3820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1818), + [3822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1819), + [3824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1820), + [3826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1822), + [3828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1823), + [3830] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1824), + [3832] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1823), + [3834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1826), + [3836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1827), + [3838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1829), + [3840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1830), + [3842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1832), + [3844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1833), + [3846] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(560), + [3849] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(561), + [3852] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(562), + [3855] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(563), + [3858] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(564), + [3861] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(565), + [3864] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(566), + [3867] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(567), + [3870] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(563), + [3873] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(569), + [3876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1834), + [3878] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1835), + [3880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1836), + [3882] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1836), + [3884] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1838), + [3886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1839), + [3888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1840), + [3890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1841), + [3892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1842), + [3894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1844), + [3896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1845), + [3898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1847), + [3900] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1849), + [3902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1850), + [3904] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1851), + [3906] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1853), + [3908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1854), + [3910] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1854), + [3912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1855), + [3914] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1857), + [3916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1859), + [3918] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1860), + [3920] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1859), + [3922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1862), + [3924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1863), + [3926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1864), + [3928] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1865), + [3930] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1863), + [3932] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(590), + [3935] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(592), + [3938] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(592), + [3941] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(593), + [3944] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(591), + [3947] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(594), + [3950] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(181), + [3953] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(182), + [3956] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(595), + [3959] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(184), + [3962] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(185), + [3965] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(186), + [3968] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(187), + [3971] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(595), + [3974] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), + [3976] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), + [3978] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1875), + [3980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1875), + [3982] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1877), + [3984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1878), + [3986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1879), + [3988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1880), + [3990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1882), + [3992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1883), + [3994] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1884), + [3996] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1883), + [3998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1886), + [4000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1887), + [4002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1889), + [4004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1890), + [4006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1892), + [4008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1893), + [4010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 1), + [4012] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 1), + [4014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), + [4016] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), + [4018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1894), + [4020] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1895), + [4022] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1894), + [4024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1896), + [4026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1897), + [4028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1898), + [4030] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1899), + [4032] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1897), + [4034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1901), + [4036] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4), + [4038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1903), + [4040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), + [4042] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1229), + [4045] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1904), + [4047] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5), + [4049] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1905), + [4051] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1906), + [4053] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1907), + [4055] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1907), + [4057] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1909), + [4059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1910), + [4061] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1911), + [4063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1912), + [4065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1913), + [4067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1915), + [4069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1916), + [4071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1918), + [4073] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1920), + [4075] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1921), + [4077] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1922), + [4079] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1923), + [4081] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1923), + [4083] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1925), + [4085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1926), + [4087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1927), + [4089] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1928), + [4091] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1930), + [4093] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1931), + [4095] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1932), + [4097] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1931), + [4099] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1934), + [4101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1935), + [4103] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1937), + [4105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1938), + [4107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1940), + [4109] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1941), + [4111] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 3), + [4113] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 3), + [4115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [4117] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(652), + [4120] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(653), + [4123] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(654), + [4126] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(655), + [4129] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(656), + [4132] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(657), + [4135] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(658), + [4138] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(659), + [4141] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(655), + [4144] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(662), + [4147] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1942), + [4149] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1943), + [4151] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1944), + [4153] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1944), + [4155] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1946), + [4157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1947), + [4159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1948), + [4161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1949), + [4163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1950), + [4165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1952), + [4167] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1953), + [4169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1955), + [4171] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1957), + [4173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1958), + [4175] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1959), + [4177] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1960), + [4179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1960), + [4181] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1962), + [4183] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1963), + [4185] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1964), + [4187] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1965), + [4189] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1967), + [4191] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1968), + [4193] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1969), + [4195] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1968), + [4197] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1971), + [4199] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1972), + [4201] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1974), + [4203] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1975), + [4205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1977), + [4207] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1978), + [4209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1979), + [4211] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [4213] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(680), + [4216] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(681), + [4219] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(682), + [4222] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(683), + [4225] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(684), + [4228] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(685), + [4231] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(686), + [4234] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(687), + [4237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), + [4239] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), + [4241] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), + [4243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1981), + [4245] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1982), + [4247] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 2), + [4249] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), + [4251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1984), + [4253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), + [4255] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(697), + [4258] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [4260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1986), + [4262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1987), + [4264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1988), + [4266] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1991), + [4268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1993), + [4270] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1994), + [4272] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1993), + [4274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1996), + [4276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1998), + [4278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1999), + [4280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2000), + [4282] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2001), + [4284] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1999), + [4286] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 1), + [4288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), + [4290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2009), + [4292] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1327), + [4294] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2012), + [4296] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), + [4298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2014), + [4300] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2016), + [4302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2018), + [4304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2019), + [4306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2020), + [4308] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2022), + [4310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2023), + [4312] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2023), + [4314] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2025), + [4316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2026), + [4318] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2027), + [4320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2028), + [4322] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2029), + [4324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2030), + [4326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2032), + [4328] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), + [4330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), + [4332] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), + [4334] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2035), + [4336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2036), + [4338] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2036), + [4340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2038), + [4342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2040), + [4344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2042), + [4346] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2043), + [4348] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2042), + [4350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2045), + [4352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2046), + [4354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2047), + [4356] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2048), + [4358] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2046), + [4360] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2056), + [4362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2056), + [4364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2058), + [4366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2059), + [4368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2060), + [4370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2061), + [4372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2063), + [4374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2064), + [4376] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2065), + [4378] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2064), + [4380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2067), + [4382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2068), + [4384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2070), + [4386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2071), + [4388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2073), + [4390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2074), + [4392] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2076), + [4394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2076), + [4396] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2077), + [4398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2078), + [4400] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2079), + [4402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2080), + [4404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2081), + [4406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2082), + [4408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2083), + [4410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2084), + [4412] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2080), + [4414] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(751), + [4417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2085), + [4419] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2086), + [4421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2087), + [4423] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2087), + [4425] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2089), + [4427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2090), + [4429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2091), + [4431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2092), [4433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2093), - [4435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2094), + [4435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2095), [4437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2096), - [4439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2097), - [4441] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2098), - [4443] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2097), - [4445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2100), - [4447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2102), - [4449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2104), - [4451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2105), - [4453] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 2), - [4455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2106), - [4457] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 4), - [4459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 4), - [4461] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2107), - [4463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2107), - [4465] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2109), - [4467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2110), - [4469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2111), - [4471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2113), - [4473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2114), - [4475] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2115), - [4477] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2114), - [4479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2117), - [4481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2119), - [4483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2121), - [4485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2122), - [4487] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2124), - [4489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2124), - [4491] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2125), - [4493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2126), - [4495] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2127), - [4497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2128), - [4499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2129), - [4501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2130), - [4503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2131), - [4505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2132), - [4507] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2128), - [4509] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1059), - [4512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2133), - [4514] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2134), - [4516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2135), - [4518] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2135), - [4520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2137), - [4522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2138), - [4524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2139), - [4526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2141), - [4528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2144), - [4530] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1078), - [4533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2145), - [4535] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2146), - [4537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2147), - [4539] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2147), - [4541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2149), - [4543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2150), - [4545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2151), - [4547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2153), - [4549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2156), - [4551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2157), - [4553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2158), - [4555] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2159), - [4557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2160), - [4559] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2160), - [4561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2162), - [4563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2163), - [4565] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2164), - [4567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2164), - [4569] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2166), - [4571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2167), - [4573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2168), - [4575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2170), - [4577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2171), - [4579] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2172), - [4581] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2171), - [4583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2174), - [4585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2176), - [4587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2178), - [4589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2179), - [4591] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1136), - [4594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2180), - [4596] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2181), - [4598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2182), - [4600] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2182), - [4602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2184), - [4604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2185), - [4606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2186), - [4608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2188), - [4610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2191), - [4612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2192), - [4614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2193), - [4616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2195), - [4618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2196), - [4620] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2197), - [4622] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2196), - [4624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2199), + [4439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2098), + [4441] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2100), + [4443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2101), + [4445] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2102), + [4447] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(770), + [4450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2103), + [4452] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2104), + [4454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2105), + [4456] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2105), + [4458] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2107), + [4460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2108), + [4462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2109), + [4464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2110), + [4466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2111), + [4468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2113), + [4470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2114), + [4472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2116), + [4474] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2118), + [4476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2119), + [4478] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2120), + [4480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2121), + [4482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2122), + [4484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2123), + [4486] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2125), + [4488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2126), + [4490] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2126), + [4492] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2128), + [4494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2129), + [4496] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2130), + [4498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2131), + [4500] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2132), + [4502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2133), + [4504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2135), + [4506] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2137), + [4508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2137), + [4510] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2139), + [4512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2140), + [4514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2141), + [4516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2142), + [4518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2144), + [4520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2145), + [4522] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2146), + [4524] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2145), + [4526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2148), + [4528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2149), + [4530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2151), + [4532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2152), + [4534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2154), + [4536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2155), + [4538] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), + [4540] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4), + [4542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2156), + [4544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2157), + [4546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2158), + [4548] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [4550] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2160), + [4552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2161), + [4554] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2161), + [4556] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), + [4558] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2163), + [4560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2164), + [4562] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), + [4564] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2165), + [4566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2166), + [4568] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2167), + [4570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2168), + [4572] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [4574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2170), + [4576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2172), + [4578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2173), + [4580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2174), + [4582] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2176), + [4584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2177), + [4586] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2177), + [4588] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2179), + [4590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2180), + [4592] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2181), + [4594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2182), + [4596] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2183), + [4598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2184), + [4600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2186), + [4602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2188), + [4604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2189), + [4606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2190), + [4608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2191), + [4610] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2193), + [4612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2194), + [4614] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2194), + [4616] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2196), + [4618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2197), + [4620] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2198), + [4622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2199), + [4624] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2200), [4626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2201), - [4628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), - [4630] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), - [4632] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(1154), - [4635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), - [4637] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(1156), - [4640] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(1157), - [4643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), - [4645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6), - [4647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2203), - [4649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2204), - [4651] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2205), - [4653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2206), - [4655] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2206), - [4657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2208), - [4659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2209), - [4661] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1183), - [4664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2210), - [4666] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2211), - [4668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2212), - [4670] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2212), - [4672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2214), - [4674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2215), - [4676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2216), - [4678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2218), - [4680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2221), - [4682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2222), - [4684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2223), - [4686] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2224), - [4688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2225), - [4690] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2225), - [4692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2227), - [4694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2228), - [4696] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1219), - [4699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2229), - [4701] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2230), - [4703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2231), - [4705] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2231), - [4707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2233), - [4709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2234), - [4711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2235), - [4713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2237), - [4715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2240), - [4717] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2241), - [4719] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), - [4721] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3), - [4723] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), - [4725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2244), - [4727] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2245), - [4729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2245), - [4731] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2246), - [4733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2247), - [4735] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2247), - [4737] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 2, .alias_sequence_id = 1), - [4739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2249), - [4741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2254), - [4743] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2257), - [4745] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 2), - [4747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2258), - [4749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2260), - [4751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2261), - [4753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2262), - [4755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2264), - [4757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2265), - [4759] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2266), - [4761] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2265), - [4763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2268), - [4765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2270), - [4767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2272), - [4769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2273), - [4771] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 10), - [4773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2274), - [4775] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2275), - [4778] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1255), - [4781] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1256), - [4784] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2276), - [4787] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1258), - [4790] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1259), - [4793] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1260), - [4796] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1261), - [4799] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2276), - [4802] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), - [4804] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 11), - [4806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2279), - [4808] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), - [4810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2281), - [4812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2282), - [4814] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), - [4816] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2283), - [4818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2283), - [4820] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2285), - [4822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2286), - [4824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2287), - [4826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2289), - [4828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2290), - [4830] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2291), - [4832] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2290), - [4834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2293), - [4836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2295), - [4838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2297), - [4840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2298), - [4842] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1297), - [4845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2299), - [4847] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2300), - [4849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2301), - [4851] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2301), - [4853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2303), - [4855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2304), - [4857] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2305), - [4859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2307), - [4861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2310), - [4863] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2311), - [4865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2312), - [4867] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2312), - [4869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2313), - [4871] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2315), - [4873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2317), - [4875] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2318), - [4877] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2317), - [4879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2320), - [4881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2321), - [4883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2322), - [4885] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2323), - [4887] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2321), - [4889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2331), - [4891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2332), - [4893] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2333), - [4895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2334), - [4897] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2334), - [4899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2336), - [4901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2337), - [4903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2338), - [4905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2339), - [4907] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2340), - [4909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2341), - [4911] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2341), - [4913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2343), - [4915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2344), - [4917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2345), - [4919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2346), - [4921] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1368), - [4924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2347), - [4926] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2348), - [4928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2349), - [4930] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2349), - [4932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2351), - [4934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2352), - [4936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2353), - [4938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2355), - [4940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2358), - [4942] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), - [4944] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5), - [4946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2359), - [4948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2360), - [4950] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), - [4952] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), - [4954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2361), - [4956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2362), + [4628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2203), + [4630] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2205), + [4632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2206), + [4634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2207), + [4636] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2209), + [4638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2210), + [4640] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2210), + [4642] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2212), + [4644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2213), + [4646] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2214), + [4648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2215), + [4650] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2216), + [4652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2217), + [4654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2219), + [4656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2221), + [4658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2222), + [4660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2223), + [4662] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2225), + [4664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2226), + [4666] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2226), + [4668] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2228), + [4670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2229), + [4672] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2230), + [4674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2231), + [4676] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2232), + [4678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2233), + [4680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2235), + [4682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2237), + [4684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2238), + [4686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2239), + [4688] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2241), + [4690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2242), + [4692] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2242), + [4694] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2244), + [4696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2245), + [4698] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2246), + [4700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2247), + [4702] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2248), + [4704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2249), + [4706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2251), + [4708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2253), + [4710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2254), + [4712] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), + [4714] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), + [4716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2255), + [4718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2256), + [4720] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 4), + [4722] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4), + [4724] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2257), + [4726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2257), + [4728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), + [4730] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), + [4732] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2259), + [4734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), + [4736] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), + [4738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2260), + [4740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2261), + [4742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2262), + [4744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2264), + [4746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2265), + [4748] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2266), + [4750] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2265), + [4752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2268), + [4754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2269), + [4756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2271), + [4758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2272), + [4760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2274), + [4762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2275), + [4764] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(959), + [4767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2276), + [4769] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2277), + [4771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2278), + [4773] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2278), + [4775] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2280), + [4777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2281), + [4779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2282), + [4781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2283), + [4783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2284), + [4785] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2286), + [4787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2287), + [4789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2289), + [4791] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2291), + [4793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2292), + [4795] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2293), + [4797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), + [4799] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), + [4801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2294), + [4803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2295), + [4805] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2296), + [4807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2297), + [4809] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [4811] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [4813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2299), + [4815] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [4817] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [4819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2301), + [4821] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), + [4823] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), + [4825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2303), + [4827] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), + [4829] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), + [4831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2304), + [4833] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 2), + [4835] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2305), + [4837] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2306), + [4839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2306), + [4841] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2308), + [4843] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2309), + [4845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2310), + [4847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2311), + [4849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2313), + [4851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2314), + [4853] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2315), + [4855] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2314), + [4857] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2317), + [4859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2318), + [4861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2320), + [4863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2321), + [4865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2323), + [4867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2324), + [4869] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2325), + [4871] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 2), + [4873] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2326), + [4875] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 4), + [4877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 4), + [4879] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 4), + [4881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), + [4883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2327), + [4885] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2327), + [4887] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2330), + [4889] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2333), + [4891] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2334), + [4893] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2337), + [4895] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), + [4897] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2339), + [4899] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2340), + [4901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2340), + [4903] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2341), + [4905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2342), + [4907] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2343), + [4909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2344), + [4911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2345), + [4913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2346), + [4915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2347), + [4917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2348), + [4919] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2344), + [4921] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4), + [4923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), + [4925] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 4), + [4927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), + [4929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2350), + [4931] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bracket_command, 4), + [4933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 4), + [4935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2351), + [4937] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1020), + [4940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2353), + [4942] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2354), + [4944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2355), + [4946] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2355), + [4948] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2357), + [4950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2358), + [4952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2359), + [4954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2360), + [4956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2361), [4958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2363), [4960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2364), - [4962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2365), - [4964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2366), - [4966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2367), - [4968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2368), - [4970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2369), - [4972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2370), - [4974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2371), - [4976] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), - [4978] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), - [4980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2372), - [4982] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 5), - [4984] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5), - [4986] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1467), - [4989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2373), - [4991] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2374), - [4993] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2375), - [4995] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2375), - [4997] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2377), - [4999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2378), - [5001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2379), - [5003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2381), - [5005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2384), - [5007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2385), - [5009] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2386), - [5011] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2387), - [5013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2388), - [5015] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2388), - [5017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2390), - [5019] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2391), - [5021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), - [5023] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), - [5025] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), - [5027] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), - [5029] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 3), - [5031] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1510), - [5034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2392), - [5036] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2393), - [5038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2394), - [5040] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2394), - [5042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2396), - [5044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2397), - [5046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2398), - [5048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2400), - [5050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2403), - [5052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2404), - [5054] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 3), - [5056] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5), - [5058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), - [5060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2406), - [5062] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), - [5064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), - [5066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2408), - [5068] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2410), - [5070] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5), - [5072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), - [5074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2412), - [5076] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2414), - [5078] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 5), - [5080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), - [5082] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), - [5084] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2417), - [5086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2418), - [5088] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2418), - [5090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2420), - [5092] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2422), - [5094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2424), - [5096] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2425), - [5098] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2424), - [5100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2427), - [5102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2428), - [5104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2429), - [5106] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2430), - [5108] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2428), - [5110] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 5), - [5112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), - [5114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2438), - [5116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2439), - [5118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2440), - [5120] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2441), - [5122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2442), - [5124] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2442), - [5126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2444), - [5128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2445), - [5130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2446), - [5132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2447), - [5134] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2448), - [5136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2449), - [5138] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2449), - [5140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2451), - [5142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2452), - [5144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2453), - [5146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2454), - [5148] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1600), - [5151] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2455), - [5153] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2456), - [5155] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2457), - [5157] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2457), - [5159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2459), - [5161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2460), - [5163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2461), - [5165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2463), - [5167] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2466), - [5169] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 3), - [5171] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1621), - [5174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2467), - [5176] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2468), - [5178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2469), - [5180] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2469), - [5182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2471), - [5184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2472), - [5186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2473), - [5188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2475), - [5190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2478), - [5192] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2479), - [5194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2480), - [5196] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2480), - [5198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2481), - [5200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2483), - [5202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2485), - [5204] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2486), - [5206] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2485), - [5208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2488), - [5210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2489), - [5212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2490), - [5214] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2491), - [5216] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2489), - [5218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2499), - [5220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2500), - [5222] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2501), - [5224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2502), - [5226] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2502), - [5228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2504), - [5230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2505), - [5232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2506), - [5234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2507), - [5236] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2508), - [5238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2509), - [5240] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2509), - [5242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2511), - [5244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2512), - [5246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2513), - [5248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2514), - [5250] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1692), - [5253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2515), - [5255] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2516), - [5257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2517), - [5259] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2517), - [5261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2519), - [5263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2520), - [5265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2521), - [5267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2523), - [5269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2526), - [5271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2527), - [5273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2528), - [5275] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2529), - [5277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2530), - [5279] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2530), - [5281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2532), - [5283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2533), - [5285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2534), - [5287] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2535), - [5289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2536), - [5291] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2536), - [5293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2538), - [5295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2539), - [5297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2540), - [5299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2542), - [5301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2545), - [5303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2546), - [5305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2547), - [5307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2548), - [5309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2549), - [5311] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2550), - [5313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2551), - [5315] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2551), - [5317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2553), - [5319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2554), - [5321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2555), - [5323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2556), - [5325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2557), - [5327] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2558), - [5329] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2559), - [5331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2560), - [5333] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2560), - [5335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2562), - [5337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2563), - [5339] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2564), - [5341] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), - [5343] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [5345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 3), - [5347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), - [5349] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), - [5351] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [5353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [5355] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [5357] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2565), - [5359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2566), - [5361] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1803), - [5364] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1802), - [5367] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 3), - [5369] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3), - [5371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), - [5373] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), - [5375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2569), - [5377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2571), - [5379] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2572), - [5381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2573), - [5383] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2573), - [5385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2575), - [5387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2576), - [5389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2577), - [5391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2579), - [5393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2582), - [5395] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 13), - [5397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2583), - [5399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2585), - [5401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2587), - [5403] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 14), - [5405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2588), - [5407] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1845), - [5410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2589), - [5412] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2590), - [5414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2591), - [5416] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2591), - [5418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2593), - [5420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2594), - [5422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2595), - [5424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2597), - [5426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2600), - [5428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2601), - [5430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2602), - [5432] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2603), - [5434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2604), - [5436] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2604), - [5438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2606), - [5440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2607), - [5442] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2608), - [5444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2608), - [5446] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2610), - [5448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2611), - [5450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2612), - [5452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2614), - [5454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2615), - [5456] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2616), - [5458] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2615), - [5460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2618), - [5462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2620), - [5464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2622), - [5466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2623), - [5468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2624), - [5470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2625), - [5472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2626), - [5474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2627), - [5476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2628), - [5478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2629), - [5480] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2630), - [5482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2631), - [5484] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2631), - [5486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2633), - [5488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2634), - [5490] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), - [5492] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6), - [5494] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), - [5496] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), - [5498] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 6), - [5500] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6), - [5502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2635), - [5504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2636), - [5506] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2637), - [5508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2638), - [5510] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2638), - [5512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2640), - [5514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2641), - [5516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2642), - [5518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2643), - [5520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2644), - [5522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2645), - [5524] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2646), - [5526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2647), - [5528] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2647), - [5530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2649), - [5532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2650), - [5534] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2651), - [5536] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), - [5538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), - [5540] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 6), - [5542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), - [5544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2653), - [5546] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 10), - [5548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 10), - [5550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2654), - [5552] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), - [5554] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), - [5556] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 11), - [5558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 11), - [5560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2656), - [5562] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6), - [5564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), - [5566] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 6), - [5568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), - [5570] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2658), - [5572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2658), - [5574] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2660), - [5576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2661), - [5578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2662), - [5580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2664), - [5582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2665), - [5584] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2666), - [5586] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2665), - [5588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2668), - [5590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2670), - [5592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2672), - [5594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2673), - [5596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2674), - [5598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2675), - [5600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2676), - [5602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2677), - [5604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2678), - [5606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2679), - [5608] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2680), - [5610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2681), - [5612] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2681), - [5614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2683), - [5616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2684), - [5618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2685), - [5620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2686), - [5622] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2687), - [5624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2688), - [5626] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2688), - [5628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2690), - [5630] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2691), - [5632] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2692), - [5634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2692), - [5636] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2694), - [5638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2695), - [5640] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2696), - [5642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2698), - [5644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2699), - [5646] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2700), - [5648] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2699), - [5650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2702), - [5652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2704), - [5654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2706), - [5656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2707), - [5658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2708), - [5660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2709), - [5662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2710), - [5664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2711), - [5666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2712), - [5668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2713), - [5670] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2714), - [5672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2715), - [5674] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2715), - [5676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2717), - [5678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2718), - [5680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2719), - [5682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2720), - [5684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2721), - [5686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2722), - [5688] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2723), - [5690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2724), - [5692] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2724), - [5694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2726), - [5696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2727), - [5698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2728), - [5700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2729), - [5702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2730), - [5704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2731), - [5706] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), - [5708] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [5710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [5712] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [5714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2732), - [5716] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 4), - [5718] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4), - [5720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), - [5722] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), - [5724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2733), - [5726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2734), - [5728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2735), - [5730] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2736), - [5732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2737), - [5734] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2737), - [5736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2739), - [5738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2740), - [5740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2741), - [5742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2743), - [5744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2744), - [5746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2746), - [5748] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 15), - [5750] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 16), - [5752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2747), - [5754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2748), - [5756] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2749), - [5758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2750), - [5760] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2750), - [5762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2752), - [5764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2753), - [5766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2754), - [5768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2755), - [5770] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2313), - [5773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2756), - [5775] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2757), - [5777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2758), - [5779] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2758), - [5781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2760), - [5783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2761), - [5785] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2762), - [5787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2764), - [5789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2767), - [5791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2768), - [5793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2769), - [5795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2770), - [5797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2771), - [5799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2772), - [5801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2773), - [5803] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2774), - [5805] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), - [5807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [5809] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 13), - [5811] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 13), - [5813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2775), - [5815] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 14), - [5817] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 14), - [5819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2776), - [5821] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2420), - [5824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2777), - [5826] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2778), - [5828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2779), - [5830] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2779), - [5832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2781), - [5834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2782), - [5836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2783), - [5838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2785), - [5840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2788), - [5842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2789), - [5844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2790), - [5846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2791), - [5848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2792), - [5850] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2481), - [5853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2793), - [5855] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2794), - [5857] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2795), - [5859] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2795), - [5861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2797), - [5863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2798), - [5865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2799), - [5867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2801), - [5869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2804), - [5871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2805), - [5873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2806), - [5875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2807), - [5877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2808), - [5879] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), - [5881] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [5883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [5885] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [5887] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 5), - [5889] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5), - [5891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), - [5893] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), - [5895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2809), - [5897] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2810), - [5899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2811), - [5901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2814), - [5903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2816), - [5905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2817), - [5907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2818), - [5909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2819), - [5911] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2820), - [5913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2821), - [5915] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2821), - [5917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2823), - [5919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2824), - [5921] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 15), - [5923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 15), - [5925] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 16), - [5927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 16), - [5929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2825), - [5931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2826), - [5933] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2827), - [5935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2828), - [5937] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2828), - [5939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2830), - [5941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2831), - [5943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2832), - [5945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2833), - [5947] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2834), - [5949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2835), - [5951] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2835), - [5953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2837), - [5955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2838), - [5957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2839), - [5959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2840), - [5961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2841), - [5963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2842), - [5965] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2843), - [5967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2844), - [5969] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2845), - [5971] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2846), + [4962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2366), + [4964] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2368), + [4966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2369), + [4968] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2370), + [4970] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1039), + [4973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2371), + [4975] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2372), + [4977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2373), + [4979] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2373), + [4981] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2375), + [4983] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2376), + [4985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2377), + [4987] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2378), + [4989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2379), + [4991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2381), + [4993] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2382), + [4995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2384), + [4997] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2386), + [4999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2387), + [5001] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2388), + [5003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2389), + [5005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2390), + [5007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2391), + [5009] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2393), + [5011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2394), + [5013] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2394), + [5015] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2396), + [5017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2397), + [5019] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2398), + [5021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2399), + [5023] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2400), + [5025] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2401), + [5027] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2403), + [5029] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2406), + [5031] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2406), + [5033] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2408), + [5035] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2409), + [5037] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2410), + [5039] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2411), + [5041] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2413), + [5043] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2414), + [5045] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2415), + [5047] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2414), + [5049] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2417), + [5051] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2418), + [5053] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2420), + [5055] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2421), + [5057] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2423), + [5059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2424), + [5061] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 2), + [5063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2425), + [5065] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 4), + [5067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 4), + [5069] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2426), + [5071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2426), + [5073] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2428), + [5075] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2429), + [5077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2430), + [5079] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2431), + [5081] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2433), + [5083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2434), + [5085] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2435), + [5087] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2434), + [5089] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2437), + [5091] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2438), + [5093] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2440), + [5095] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2441), + [5097] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2443), + [5099] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2444), + [5101] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2446), + [5103] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2446), + [5105] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2447), + [5107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2448), + [5109] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2449), + [5111] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2450), + [5113] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2451), + [5115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2452), + [5117] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2453), + [5119] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2454), + [5121] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2450), + [5123] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1118), + [5126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2455), + [5128] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2456), + [5130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2457), + [5132] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2457), + [5134] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2459), + [5136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2460), + [5138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2461), + [5140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2462), + [5142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2463), + [5144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2465), + [5146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2466), + [5148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2468), + [5150] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2470), + [5152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2471), + [5154] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2472), + [5156] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1137), + [5159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2473), + [5161] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2474), + [5163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2475), + [5165] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2475), + [5167] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2477), + [5169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2478), + [5171] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2479), + [5173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2480), + [5175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2481), + [5177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2483), + [5179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2484), + [5181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2486), + [5183] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2488), + [5185] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2489), + [5187] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2490), + [5189] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2491), + [5191] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2492), + [5193] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2493), + [5195] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2495), + [5197] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2496), + [5199] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2496), + [5201] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2498), + [5203] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2499), + [5205] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2500), + [5207] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2501), + [5209] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2502), + [5211] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2503), + [5213] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2505), + [5215] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2507), + [5217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2507), + [5219] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2509), + [5221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2510), + [5223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2511), + [5225] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2512), + [5227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2514), + [5229] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2515), + [5231] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2516), + [5233] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2515), + [5235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2518), + [5237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2519), + [5239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2521), + [5241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2522), + [5243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2524), + [5245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2525), + [5247] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1200), + [5250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2526), + [5252] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2527), + [5254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2528), + [5256] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2528), + [5258] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2530), + [5260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2531), + [5262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2532), + [5264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2533), + [5266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2534), + [5268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2536), + [5270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2537), + [5272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2539), + [5274] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2541), + [5276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2542), + [5278] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2543), + [5280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2544), + [5282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2545), + [5284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2546), + [5286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2548), + [5288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2549), + [5290] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2550), + [5292] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2549), + [5294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2552), + [5296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2553), + [5298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2555), + [5300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2556), + [5302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), + [5304] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), + [5306] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(1218), + [5309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), + [5311] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(1220), + [5314] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(1221), + [5317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), + [5319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6), + [5321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2558), + [5323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2559), + [5325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2560), + [5327] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2562), + [5329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2563), + [5331] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2563), + [5333] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2565), + [5335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2566), + [5337] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2567), + [5339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2568), + [5341] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2569), + [5343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2570), + [5345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2572), + [5347] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1250), + [5350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2574), + [5352] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2575), + [5354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2576), + [5356] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2576), + [5358] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2578), + [5360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2579), + [5362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2580), + [5364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2581), + [5366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2582), + [5368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2584), + [5370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2585), + [5372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2587), + [5374] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2589), + [5376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2590), + [5378] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2591), + [5380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2592), + [5382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2593), + [5384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2594), + [5386] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2596), + [5388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2597), + [5390] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2597), + [5392] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2599), + [5394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2600), + [5396] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2601), + [5398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2602), + [5400] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2603), + [5402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2604), + [5404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2606), + [5406] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1289), + [5409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2608), + [5411] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2609), + [5413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2610), + [5415] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2610), + [5417] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2612), + [5419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2613), + [5421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2614), + [5423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2615), + [5425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2616), + [5427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2618), + [5429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2619), + [5431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2621), + [5433] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2623), + [5435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2624), + [5437] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2625), + [5439] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2626), + [5441] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), + [5443] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3), + [5445] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), + [5447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2629), + [5449] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2630), + [5451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2630), + [5453] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2631), + [5455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2632), + [5457] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2632), + [5459] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 2, .alias_sequence_id = 1), + [5461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2634), + [5463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2639), + [5465] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2642), + [5467] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 2), + [5469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2643), + [5471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2645), + [5473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2646), + [5475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2647), + [5477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2648), + [5479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2650), + [5481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2651), + [5483] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2652), + [5485] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2651), + [5487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2654), + [5489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2655), + [5491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2657), + [5493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2658), + [5495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2660), + [5497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2661), + [5499] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), + [5501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2662), + [5503] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2663), + [5506] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1325), + [5509] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1326), + [5512] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2664), + [5515] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1328), + [5518] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1329), + [5521] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1330), + [5524] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1331), + [5527] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2664), + [5530] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [5532] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), + [5534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2667), + [5536] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), + [5538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2669), + [5540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2670), + [5542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2671), + [5544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2672), + [5546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2674), + [5548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2676), + [5550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2678), + [5552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2679), + [5554] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), + [5556] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2680), + [5558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2680), + [5560] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2682), + [5562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2683), + [5564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2684), + [5566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2685), + [5568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2687), + [5570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2688), + [5572] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2689), + [5574] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2688), + [5576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2691), + [5578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2692), + [5580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2694), + [5582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2695), + [5584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2697), + [5586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2698), + [5588] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1373), + [5591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2699), + [5593] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2700), + [5595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2701), + [5597] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2701), + [5599] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2703), + [5601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2704), + [5603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2705), + [5605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2706), + [5607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2707), + [5609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2709), + [5611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2710), + [5613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2712), + [5615] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2714), + [5617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2715), + [5619] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2716), + [5621] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2717), + [5623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2718), + [5625] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2718), + [5627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2719), + [5629] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2721), + [5631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2723), + [5633] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2724), + [5635] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2723), + [5637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2726), + [5639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2727), + [5641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2728), + [5643] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2729), + [5645] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2727), + [5647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2737), + [5649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2738), + [5651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2739), + [5653] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2741), + [5655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2742), + [5657] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2742), + [5659] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2744), + [5661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2745), + [5663] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2746), + [5665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2747), + [5667] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2748), + [5669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2749), + [5671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2751), + [5673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2753), + [5675] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2754), + [5677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2755), + [5679] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2757), + [5681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2758), + [5683] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2758), + [5685] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2760), + [5687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2761), + [5689] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2762), + [5691] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2763), + [5693] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2764), + [5695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2765), + [5697] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2767), + [5699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2769), + [5701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2770), + [5703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2771), + [5705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2772), + [5707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2774), + [5709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2776), + [5711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2778), + [5713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2779), + [5715] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1457), + [5718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2780), + [5720] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2781), + [5722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2782), + [5724] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2782), + [5726] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2784), + [5728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2785), + [5730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2786), + [5732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2787), + [5734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2788), + [5736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2790), + [5738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2791), + [5740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2793), + [5742] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2795), + [5744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2796), + [5746] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2797), + [5748] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), + [5750] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5), + [5752] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), + [5754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2798), + [5756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2799), + [5758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2800), + [5760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2801), + [5762] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [5764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2803), + [5766] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [5768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2805), + [5770] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), + [5772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2807), + [5774] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), + [5776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2808), + [5778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2809), + [5780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2810), + [5782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2811), + [5784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2812), + [5786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2814), + [5788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2816), + [5790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2818), + [5792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2819), + [5794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2820), + [5796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2821), + [5798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2822), + [5800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2823), + [5802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2825), + [5804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2827), + [5806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2829), + [5808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2830), + [5810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2831), + [5812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2832), + [5814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2833), + [5816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2834), + [5818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2836), + [5820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2838), + [5822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2840), + [5824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2841), + [5826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2842), + [5828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2843), + [5830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2844), + [5832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2845), + [5834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2847), + [5836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2849), + [5838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2851), + [5840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2852), + [5842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2853), + [5844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2854), + [5846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2855), + [5848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2856), + [5850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2858), + [5852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2860), + [5854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2862), + [5856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2863), + [5858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2864), + [5860] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), + [5862] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), + [5864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2865), + [5866] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 5), + [5868] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5), + [5870] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1592), + [5873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2866), + [5875] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2867), + [5877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2868), + [5879] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2868), + [5881] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2870), + [5883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2871), + [5885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2872), + [5887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2873), + [5889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2874), + [5891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2876), + [5893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2877), + [5895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2879), + [5897] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2881), + [5899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2882), + [5901] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2883), + [5903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2884), + [5905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2885), + [5907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2886), + [5909] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2888), + [5911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2889), + [5913] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2889), + [5915] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2891), + [5917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2892), + [5919] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2893), + [5921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2894), + [5923] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2895), + [5925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2896), + [5927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2898), + [5929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), + [5931] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), + [5933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), + [5935] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), + [5937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), + [5939] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), + [5941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), + [5943] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), + [5945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2900), + [5947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), + [5949] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), + [5951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2901), + [5953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), + [5955] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), + [5957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2902), + [5959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), + [5961] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), + [5963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), + [5965] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), + [5967] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 3), + [5969] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1647), + [5972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2903), + [5974] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2904), + [5976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2905), + [5978] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2905), + [5980] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2907), + [5982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2908), + [5984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2909), + [5986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2910), + [5988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2911), + [5990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2913), + [5992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2914), + [5994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2916), + [5996] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2918), + [5998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2919), + [6000] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2920), + [6002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2921), + [6004] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 3), + [6006] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5), + [6008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), + [6010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2923), + [6012] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [6014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [6016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2925), + [6018] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2927), + [6020] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5), + [6022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), + [6024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2929), + [6026] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2931), + [6028] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 5), + [6030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), + [6032] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), + [6034] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2934), + [6036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2935), + [6038] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2935), + [6040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2937), + [6042] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2939), + [6044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2941), + [6046] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2942), + [6048] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2941), + [6050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2944), + [6052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2945), + [6054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2946), + [6056] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2947), + [6058] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2945), + [6060] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 5), + [6062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), + [6064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2955), + [6066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2956), + [6068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2957), + [6070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2958), + [6072] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2960), + [6074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2961), + [6076] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2961), + [6078] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2963), + [6080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2964), + [6082] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2965), + [6084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2966), + [6086] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2967), + [6088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2968), + [6090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2970), + [6092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2972), + [6094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2973), + [6096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2974), + [6098] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2976), + [6100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2977), + [6102] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2977), + [6104] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2979), + [6106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2980), + [6108] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2981), + [6110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2982), + [6112] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2983), + [6114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2984), + [6116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2986), + [6118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2988), + [6120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2989), + [6122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2990), + [6124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2991), + [6126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2993), + [6128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2995), + [6130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2997), + [6132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2998), + [6134] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1750), + [6137] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2999), + [6139] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3000), + [6141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3001), + [6143] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3001), + [6145] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3003), + [6147] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3004), + [6149] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3005), + [6151] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3006), + [6153] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3007), + [6155] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3009), + [6157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3010), + [6159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3012), + [6161] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3014), + [6163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3015), + [6165] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3016), + [6167] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 3), + [6169] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1771), + [6172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3017), + [6174] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3018), + [6176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3019), + [6178] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3019), + [6180] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3021), + [6182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3022), + [6184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3023), + [6186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3024), + [6188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3025), + [6190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3027), + [6192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3028), + [6194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3030), + [6196] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3032), + [6198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3033), + [6200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3034), + [6202] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3035), + [6204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3036), + [6206] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3036), + [6208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3037), + [6210] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3039), + [6212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3041), + [6214] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3042), + [6216] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3041), + [6218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3044), + [6220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3045), + [6222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3046), + [6224] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3047), + [6226] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3045), + [6228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3055), + [6230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3056), + [6232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3057), + [6234] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3059), + [6236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3060), + [6238] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3060), + [6240] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3062), + [6242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3063), + [6244] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3064), + [6246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3065), + [6248] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3066), + [6250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3067), + [6252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3069), + [6254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3071), + [6256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3072), + [6258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3073), + [6260] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3075), + [6262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3076), + [6264] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3076), + [6266] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3078), + [6268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3079), + [6270] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3080), + [6272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3081), + [6274] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3082), + [6276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3083), + [6278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3085), + [6280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3087), + [6282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3088), + [6284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3089), + [6286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3090), + [6288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3092), + [6290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3094), + [6292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3096), + [6294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3097), + [6296] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1855), + [6299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3098), + [6301] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3099), + [6303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3100), + [6305] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3100), + [6307] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3102), + [6309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3103), + [6311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3104), + [6313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3105), + [6315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3106), + [6317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3108), + [6319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3109), + [6321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3111), + [6323] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3113), + [6325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3114), + [6327] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3115), + [6329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3116), + [6331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3117), + [6333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3118), + [6335] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3120), + [6337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3121), + [6339] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3121), + [6341] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3123), + [6343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3124), + [6345] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3125), + [6347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3126), + [6349] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3127), + [6351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3128), + [6353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3130), + [6355] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3132), + [6357] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3133), + [6359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3134), + [6361] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3134), + [6363] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3136), + [6365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3137), + [6367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3138), + [6369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3139), + [6371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3140), + [6373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3142), + [6375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3143), + [6377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3145), + [6379] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3147), + [6381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3148), + [6383] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3149), + [6385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3150), + [6387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3151), + [6389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3152), + [6391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3153), + [6393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3155), + [6395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3157), + [6397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3159), + [6399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3160), + [6401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3161), + [6403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3162), + [6405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3163), + [6407] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3165), + [6409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3166), + [6411] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3166), + [6413] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3168), + [6415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3169), + [6417] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3170), + [6419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3171), + [6421] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3172), + [6423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3173), + [6425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3175), + [6427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3177), + [6429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3178), + [6431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3179), + [6433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3180), + [6435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3182), + [6437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3184), + [6439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3186), + [6441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3187), + [6443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3188), + [6445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3189), + [6447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3190), + [6449] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3192), + [6451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3193), + [6453] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3193), + [6455] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3195), + [6457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3196), + [6459] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3197), + [6461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3198), + [6463] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3199), + [6465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3200), + [6467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3202), + [6469] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3204), + [6471] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), + [6473] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [6475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 3), + [6477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), + [6479] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), + [6481] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [6483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [6485] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [6487] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3205), + [6489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3206), + [6491] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1987), + [6494] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1986), + [6497] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 3), + [6499] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3), + [6501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), + [6503] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), + [6505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3209), + [6507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3211), + [6509] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3212), + [6511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3213), + [6513] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3213), + [6515] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3215), + [6517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3216), + [6519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3217), + [6521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3218), + [6523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3219), + [6525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3221), + [6527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3222), + [6529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3224), + [6531] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3226), + [6533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3227), + [6535] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3228), + [6537] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), + [6539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3229), + [6541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3231), + [6543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3233), + [6545] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), + [6547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3234), + [6549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3235), + [6551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3236), + [6553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3237), + [6555] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2038), + [6558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3238), + [6560] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3239), + [6562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3240), + [6564] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3240), + [6566] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3242), + [6568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3243), + [6570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3244), + [6572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3245), + [6574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3246), + [6576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3248), + [6578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3249), + [6580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3251), + [6582] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3253), + [6584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3254), + [6586] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3255), + [6588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3256), + [6590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3257), + [6592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3258), + [6594] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3260), + [6596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3261), + [6598] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3261), + [6600] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3263), + [6602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3264), + [6604] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3265), + [6606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3266), + [6608] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3267), + [6610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3268), + [6612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3270), + [6614] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3272), + [6616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3272), + [6618] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3274), + [6620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3275), + [6622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3276), + [6624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3277), + [6626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3279), + [6628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3280), + [6630] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3281), + [6632] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3280), + [6634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3283), + [6636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3284), + [6638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3286), + [6640] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3287), + [6642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3289), + [6644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3290), + [6646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3291), + [6648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3292), + [6650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3293), + [6652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3294), + [6654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3296), + [6656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3298), + [6658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3300), + [6660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3301), + [6662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3302), + [6664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3303), + [6666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3304), + [6668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3305), + [6670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3307), + [6672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3309), + [6674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3311), + [6676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3312), + [6678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3313), + [6680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3314), + [6682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3315), + [6684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3316), + [6686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3317), + [6688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3318), + [6690] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3320), + [6692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3321), + [6694] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3321), + [6696] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3323), + [6698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3324), + [6700] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3325), + [6702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3326), + [6704] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3327), + [6706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3328), + [6708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3330), + [6710] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), + [6712] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), + [6714] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6), + [6716] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), + [6718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3332), + [6720] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), + [6722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3333), + [6724] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), + [6726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3334), + [6728] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), + [6730] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), + [6732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3335), + [6734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3336), + [6736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3337), + [6738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3338), + [6740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3339), + [6742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3340), + [6744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3341), + [6746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3342), + [6748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3343), + [6750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3344), + [6752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3345), + [6754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3346), + [6756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3347), + [6758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3348), + [6760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3349), + [6762] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), + [6764] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), + [6766] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 6), + [6768] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6), + [6770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3350), + [6772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3351), + [6774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3352), + [6776] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3354), + [6778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3355), + [6780] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3355), + [6782] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3357), + [6784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3358), + [6786] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3359), + [6788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3360), + [6790] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3361), + [6792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3362), + [6794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3364), + [6796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3366), + [6798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3367), + [6800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3368), + [6802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3369), + [6804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3371), + [6806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3373), + [6808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3375), + [6810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3376), + [6812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), + [6814] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), + [6816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), + [6818] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), + [6820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), + [6822] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), + [6824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3377), + [6826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3378), + [6828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3379), + [6830] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3381), + [6832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3382), + [6834] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3382), + [6836] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3384), + [6838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3385), + [6840] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3386), + [6842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3387), + [6844] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3388), + [6846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3389), + [6848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3391), + [6850] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3393), + [6852] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), + [6854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), + [6856] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 6), + [6858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), + [6860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3395), + [6862] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), + [6864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), + [6866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3396), + [6868] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [6870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [6872] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), + [6874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), + [6876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3398), + [6878] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6), + [6880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), + [6882] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 6), + [6884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), + [6886] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3400), + [6888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3400), + [6890] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3402), + [6892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3403), + [6894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3404), + [6896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3405), + [6898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3407), + [6900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3408), + [6902] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3409), + [6904] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3408), + [6906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3411), + [6908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3412), + [6910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3414), + [6912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3415), + [6914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3417), + [6916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3418), + [6918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3419), + [6920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3420), + [6922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3421), + [6924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3422), + [6926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3424), + [6928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3426), + [6930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3428), + [6932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3429), + [6934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3430), + [6936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3431), + [6938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3432), + [6940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3433), + [6942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3435), + [6944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3437), + [6946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3439), + [6948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3440), + [6950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3441), + [6952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3442), + [6954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3443), + [6956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3444), + [6958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3445), + [6960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3446), + [6962] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3448), + [6964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3449), + [6966] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3449), + [6968] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3451), + [6970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3452), + [6972] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3453), + [6974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3454), + [6976] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3455), + [6978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3456), + [6980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3458), + [6982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3460), + [6984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3461), + [6986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3462), + [6988] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3464), + [6990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3465), + [6992] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3465), + [6994] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3467), + [6996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3468), + [6998] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3469), + [7000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3470), + [7002] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3471), + [7004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3472), + [7006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3474), + [7008] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3476), + [7010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3476), + [7012] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3478), + [7014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3479), + [7016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3480), + [7018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3481), + [7020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3483), + [7022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3484), + [7024] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3485), + [7026] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3484), + [7028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3487), + [7030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3488), + [7032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3490), + [7034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3491), + [7036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3493), + [7038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3494), + [7040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3495), + [7042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3496), + [7044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3497), + [7046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3498), + [7048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3500), + [7050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3502), + [7052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3504), + [7054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3505), + [7056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3506), + [7058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3507), + [7060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3508), + [7062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3509), + [7064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3511), + [7066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3513), + [7068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3515), + [7070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3516), + [7072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3517), + [7074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3518), + [7076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3519), + [7078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3520), + [7080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3521), + [7082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3522), + [7084] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3524), + [7086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3525), + [7088] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3525), + [7090] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3527), + [7092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3528), + [7094] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3529), + [7096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3530), + [7098] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3531), + [7100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3532), + [7102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3534), + [7104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3536), + [7106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3537), + [7108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3538), + [7110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3539), + [7112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3541), + [7114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3543), + [7116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3545), + [7118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3546), + [7120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3547), + [7122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3548), + [7124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3549), + [7126] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3551), + [7128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3552), + [7130] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3552), + [7132] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3554), + [7134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3555), + [7136] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3556), + [7138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3557), + [7140] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3558), + [7142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3559), + [7144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3561), + [7146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3563), + [7148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3564), + [7150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3565), + [7152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3566), + [7154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3567), + [7156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3568), + [7158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3569), + [7160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3571), + [7162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3573), + [7164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3575), + [7166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3576), + [7168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3577), + [7170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3578), + [7172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3579), + [7174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3580), + [7176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3581), + [7178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3582), + [7180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3583), + [7182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3585), + [7184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3587), + [7186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3589), + [7188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3590), + [7190] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), + [7192] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [7194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [7196] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [7198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3591), + [7200] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 4), + [7202] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4), + [7204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), + [7206] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), + [7208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3592), + [7210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3593), + [7212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3594), + [7214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3595), + [7216] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3597), + [7218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3598), + [7220] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3598), + [7222] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3600), + [7224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3601), + [7226] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3602), + [7228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3603), + [7230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3604), + [7232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3605), + [7234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3607), + [7236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3609), + [7238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3611), + [7240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3612), + [7242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3614), + [7244] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), + [7246] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), + [7248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3615), + [7250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3616), + [7252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3617), + [7254] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3619), + [7256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3620), + [7258] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3620), + [7260] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3622), + [7262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3623), + [7264] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3624), + [7266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3625), + [7268] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3626), + [7270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3627), + [7272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3629), + [7274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3631), + [7276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3632), + [7278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3633), + [7280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3634), + [7282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3636), + [7284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3638), + [7286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3640), + [7288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3641), + [7290] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2719), + [7293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3642), + [7295] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3643), + [7297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3644), + [7299] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3644), + [7301] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3646), + [7303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3647), + [7305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3648), + [7307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3649), + [7309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3650), + [7311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3652), + [7313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3653), + [7315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3655), + [7317] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3657), + [7319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3658), + [7321] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3659), + [7323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3660), + [7325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3661), + [7327] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3662), + [7329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3663), + [7331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3664), + [7333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3665), + [7335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3666), + [7337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3667), + [7339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3668), + [7341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3669), + [7343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3671), + [7345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3673), + [7347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3675), + [7349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3676), + [7351] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), + [7353] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), + [7355] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), + [7357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3677), + [7359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3678), + [7361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3679), + [7363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3680), + [7365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3682), + [7367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3684), + [7369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3686), + [7371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3687), + [7373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3688), + [7375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3689), + [7377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3690), + [7379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3691), + [7381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3692), + [7383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3693), + [7385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3694), + [7387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3696), + [7389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3698), + [7391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3700), + [7393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3701), + [7395] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3702), + [7397] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), + [7399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [7401] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), + [7403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), + [7405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3703), + [7407] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), + [7409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), + [7411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3704), + [7413] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2937), + [7416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3705), + [7418] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3706), + [7420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3707), + [7422] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3707), + [7424] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3709), + [7426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3710), + [7428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3711), + [7430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3712), + [7432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3713), + [7434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3715), + [7436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3716), + [7438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3718), + [7440] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3720), + [7442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3721), + [7444] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3722), + [7446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3723), + [7448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3724), + [7450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3725), + [7452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3726), + [7454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3727), + [7456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3728), + [7458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3729), + [7460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3730), + [7462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3731), + [7464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3732), + [7466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3734), + [7468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3736), + [7470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3738), + [7472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3739), + [7474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3740), + [7476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3741), + [7478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3742), + [7480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3743), + [7482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3745), + [7484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3747), + [7486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3749), + [7488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3750), + [7490] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3037), + [7493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3751), + [7495] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3752), + [7497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3753), + [7499] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3753), + [7501] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3755), + [7503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3756), + [7505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3757), + [7507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3758), + [7509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3759), + [7511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3761), + [7513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3762), + [7515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3764), + [7517] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3766), + [7519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3767), + [7521] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3768), + [7523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3769), + [7525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3770), + [7527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3771), + [7529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3772), + [7531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3773), + [7533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3774), + [7535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3775), + [7537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3776), + [7539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3777), + [7541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3778), + [7543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3780), + [7545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3782), + [7547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3784), + [7549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3785), + [7551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3786), + [7553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3787), + [7555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3788), + [7557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3789), + [7559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3790), + [7561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3791), + [7563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3792), + [7565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3794), + [7567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3796), + [7569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3798), + [7571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3799), + [7573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3800), + [7575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3801), + [7577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3802), + [7579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3803), + [7581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3804), + [7583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3805), + [7585] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), + [7587] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [7589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [7591] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [7593] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 5), + [7595] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5), + [7597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), + [7599] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), + [7601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3806), + [7603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3807), + [7605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3808), + [7607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3809), + [7609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3811), + [7611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3813), + [7613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3815), + [7615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3816), + [7617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3817), + [7619] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3820), + [7621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3822), + [7623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3823), + [7625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3824), + [7627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3825), + [7629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3827), + [7631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3829), + [7633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3831), + [7635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3832), + [7637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3833), + [7639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3834), + [7641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3835), + [7643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3836), + [7645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3837), + [7647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3838), + [7649] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3840), + [7651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3841), + [7653] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3841), + [7655] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3843), + [7657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3844), + [7659] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3845), + [7661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3846), + [7663] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3847), + [7665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3848), + [7667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3850), + [7669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3852), + [7671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3853), + [7673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3854), + [7675] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3855), + [7677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3856), + [7679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3857), + [7681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3858), + [7683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3859), + [7685] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3860), + [7687] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), + [7689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), + [7691] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), + [7693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), + [7695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3861), + [7697] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3862), + [7699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3863), + [7701] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3865), + [7703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3866), + [7705] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3866), + [7707] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3868), + [7709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3869), + [7711] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3870), + [7713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3871), + [7715] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3872), + [7717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3873), + [7719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3875), + [7721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3877), + [7723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3878), + [7725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3879), + [7727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3880), + [7729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3881), + [7731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3882), + [7733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3883), + [7735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3884), + [7737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3885), + [7739] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3887), + [7741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3888), + [7743] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3888), + [7745] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3890), + [7747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3891), + [7749] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3892), + [7751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3893), + [7753] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3894), + [7755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3895), + [7757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3897), + [7759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3899), + [7761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3900), + [7763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3901), + [7765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3902), + [7767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3903), + [7769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3904), + [7771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3905), + [7773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3906), + [7775] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3907), + [7777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3908), + [7779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3909), + [7781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3910), + [7783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3911), + [7785] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3912), + [7787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3913), + [7789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3914), + [7791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3915), + [7793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3916), + [7795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3918), + [7797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3920), + [7799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3922), + [7801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3923), + [7803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3924), + [7805] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3925), + [7807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3926), + [7809] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3927), + [7811] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3929), + [7813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3931), + [7815] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3933), + [7817] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3934), + [7819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3935), + [7821] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3936), + [7823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3937), + [7825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3938), + [7827] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3940), + [7829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3942), + [7831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3944), + [7833] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3945), + [7835] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3946), + [7837] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3947), + [7839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3948), + [7841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3949), + [7843] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3950), + [7845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3951), + [7847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3952), + [7849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3953), + [7851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3954), }; void *tree_sitter_bash_external_scanner_create();